+ );
+};
+
+export default ProductPage;
+
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/App.test.js b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/App.test.js
new file mode 100644
index 00000000..1f03afee
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/App.test.js
@@ -0,0 +1,8 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+
+test('renders learn react link', () => {
+ render();
+ const linkElement = screen.getByText(/learn react/i);
+ expect(linkElement).toBeInTheDocument();
+});
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.css b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.css
new file mode 100644
index 00000000..40274cc3
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.css
@@ -0,0 +1,122 @@
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+ monospace;
+}
+
+.product-page {
+ display: flex;
+ padding: 20px;
+}
+
+.search-and-facets {
+ flex: 1;
+ margin-right: 20px;
+}
+
+.product-section {
+ flex: 3;
+}
+
+.search-bar input {
+ width: 100%;
+ padding: 10px;
+ font-size: 16px;
+ margin-bottom: 20px;
+}
+
+.facets {
+ border: 1px solid #ddd;
+ padding: 10px;
+}
+
+.facet-item {
+ margin-bottom: 10px;
+}
+
+.product-list {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 20px;
+}
+
+.product-card {
+ border: 1px solid #ddd;
+ padding: 10px;
+ display: flex;
+}
+
+.product-image img {
+ max-width: 100px;
+ max-height: 100px;
+ margin-right: 10px;
+}
+
+.product-info {
+ flex: 1;
+}
+
+.product-price {
+ color: green;
+ font-weight: bold;
+ margin-top: 10px;
+}
+.search-bar {
+ display: flex;
+ align-items: center; /* Alinha verticalmente o input e o botão */
+ margin-bottom: 20px;
+}
+
+.search-bar input {
+ width: 80%;
+ padding: 10px;
+ font-size: 16px;
+ margin-right: 10px;
+ box-sizing: border-box; /* Garante que o padding não altere a largura do input */
+}
+
+.search-bar button {
+ padding: 10px 20px;
+ font-size: 16px;
+ background-color: #007bff;
+ color: white;
+ border: none;
+ cursor: pointer;
+ margin-bottom: 20px;
+ height: 100%; /* Garante que o botão tenha a mesma altura do input */
+}
+
+.search-bar button:hover {
+ background-color: #0056b3;
+}
+
+
+.product-tags {
+ margin-top: 10px;
+}
+
+.tag {
+ display: inline-block;
+ padding: 5px 10px;
+ margin-right: 5px;
+ margin-bottom: 5px;
+ border-radius: 15px;
+ color: white;
+ font-size: 12px;
+ font-weight: bold;
+}
+
+/* Definindo cores diferentes para cada tag */
+.tag-0 { background-color: #ff5733; } /* Laranja */
+.tag-1 { background-color: #33ff57; } /* Verde */
+.tag-2 { background-color: #3357ff; } /* Azul */
+.tag-3 { background-color: #ff33a1; } /* Rosa */
+.tag-4 { background-color: #ff9933; } /* Amarelo */
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.js b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.js
new file mode 100644
index 00000000..d563c0fb
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/index.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import './index.css';
+import App from './App';
+import reportWebVitals from './reportWebVitals';
+
+const root = ReactDOM.createRoot(document.getElementById('root'));
+root.render(
+
+
+
+);
+
+// If you want to start measuring performance in your app, pass a function
+// to log results (for example: reportWebVitals(console.log))
+// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
+reportWebVitals();
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/logo.svg b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/logo.svg
new file mode 100644
index 00000000..9dfc1c05
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/reportWebVitals.js b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/reportWebVitals.js
new file mode 100644
index 00000000..5253d3ad
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/reportWebVitals.js
@@ -0,0 +1,13 @@
+const reportWebVitals = onPerfEntry => {
+ if (onPerfEntry && onPerfEntry instanceof Function) {
+ import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
+ getCLS(onPerfEntry);
+ getFID(onPerfEntry);
+ getFCP(onPerfEntry);
+ getLCP(onPerfEntry);
+ getTTFB(onPerfEntry);
+ });
+ }
+};
+
+export default reportWebVitals;
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/setupTests.js b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/setupTests.js
new file mode 100644
index 00000000..8f2609b7
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/app-product-store/src/setupTests.js
@@ -0,0 +1,5 @@
+// jest-dom adds custom jest matchers for asserting on DOM nodes.
+// allows you to do things like:
+// expect(element).toHaveTextContent(/react/i)
+// learn more: https://github.com/testing-library/jest-dom
+import '@testing-library/jest-dom';
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/.gitignore b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/.gitignore
new file mode 100644
index 00000000..88ec2710
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/.gitignore
@@ -0,0 +1,34 @@
+# Arquivos de configuração local
+.env
+.vscode/
+.idea/
+
+# Arquivos gerados
+__pycache__/
+*.pyc
+*.egg-info/
+dist/
+build/
+
+# Arquivos de cache
+.cache/
+npm-cache/
+
+# Arquivos de testes
+tests/
+*.pytest_cache
+
+# Arquivos de documentação gerada
+docs/_build/
+
+# Virtual environments
+venv/
+env/
+.venv/
+
+# Arquivos grandes ou binários
+*.mp4
+*.avi
+*.mov
+*.zip
+*.tar.gz
\ No newline at end of file
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/README.md b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/README.md
new file mode 100644
index 00000000..ac06b6d9
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/README.md
@@ -0,0 +1,95 @@
+# Product Store Search
+
+This project is an API that allows you to perform searches using both lexical and hybrid search,
+integrating Elasticsearch as a search engine. In addition, the API offers the possibility of
+applying filters to refine the results according to specific criteria.
+
+
+## Prerequisites
+
+- **Docker**: Make sure Docker is installed on your machine. You can install the latest version of
+ Docker [here](https://docs.docker.com/get-docker/).
+- **Docker Compose**: Docker Compose is automatically installed with Docker Desktop, but you can check the version and
+ install it separately if needed [here](https://docs.docker.com/compose/install/).
+
+## Features
+
+- **Lexical Search**: Allows traditional keyword-based searches, where the results are matched exactly or partially based on the input terms.
+- **Hybrid Search**: Combines both lexical and semantic search techniques to deliver more relevant and meaningful results.
+- **Facets**: Enables the use of filters to narrow down the search results based on specific categories, such as product type, brand, or price range.
+- **Pinned Results**: Allows promoting specific documents to the top of the search results to highlight important or featured content.
+
+## Steps to Run
+
+1. Clone this repository to your local machine (if you haven't done so already):
+ ```bash
+ git clone https://github.com/your-username/your-repository.git
+ cd your-repository
+ ```
+
+2. Navigate to the `docker` directory:
+ ```bash
+ cd docker
+ ```
+
+3. Run Docker Compose to start the services:
+ ```bash
+ docker-compose up
+ ```
+
+ This will download the required images, create, and start the containers defined in the `docker-compose.yml` file.
+
+4. To run the containers in the background (detached mode), use the `-d` flag:
+ ```bash
+ docker-compose up -d
+ ```
+
+5. After starting the containers, you can view the logs with:
+ ```bash
+ docker-compose logs -f
+ ```
+
+6. To stop the containers, use the following command:
+ ```bash
+ docker-compose down
+ ```
+
+ This will stop and remove the containers created by Docker Compose.
+
+## Create Index
+
+ ```bash
+ python infra/create_index.py
+ ```
+
+## Ingestion Data
+
+ ```bash
+ python ingestion/ingestion.py
+ ```
+
+## Run API
+
+ ```bash
+ python api/api.py
+ ```
+
+### Endpoint Search
+
+ ```bash
+ curl --location 'http://127.0.0.1:5000/api/products/search?query=term'
+ ```
+
+### Endpoint Facets
+
+ ```bash
+ curl --location 'http://127.0.0.1:5000/api/products/facets?query=term'
+ ```
+
+---
+
+## References
+
+- [Docker Documentation](https://docs.docker.com/)
+- [Docker Compose Documentation](https://docs.docker.com/compose/)
+
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/api/api.py b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/api/api.py
new file mode 100644
index 00000000..44c63aaa
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/api/api.py
@@ -0,0 +1,199 @@
+import yaml
+from elasticsearch import Elasticsearch
+from flask import Flask, jsonify, request
+from flask_cors import CORS
+from sentence_transformers import SentenceTransformer
+
+app = Flask(__name__)
+CORS(app)
+
+promote_products_free_gluten = ["1043", "1042", "1039"]
+
+
+def get_client_es():
+ with open('../config.yml', 'r') as file:
+ config = yaml.safe_load(file)
+ return Elasticsearch(
+ cloud_id=config['cloud_id'],
+ api_key=config['api_key']
+ )
+
+
+def get_text_vector(sentences):
+ model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2')
+ embeddings = model.encode(sentences)
+ return embeddings
+
+
+def build_query(term=None, categories=None, product_types=None, brands=None):
+ must_query = [{"match_all": {}}] if not term else [{
+ "multi_match": {
+ "query": term,
+ "fields": ["name", "category", "description"]
+ }
+ }]
+
+ filters = []
+ if categories:
+ filters.append({"terms": {"category": categories}})
+ if product_types:
+ filters.append({"terms": {"product_type": product_types}})
+ if brands:
+ filters.append({"terms": {"brand.keyword": brands}})
+
+ return {
+ "_source": ["id", "brand", "name", "price", "currency", "image_link", "category", "tag_list"],
+ "query": {
+ "bool": {
+ "must": must_query,
+ "filter": filters
+ }
+ }
+ }
+
+
+def build_hybrid_query(term=None, categories=None, product_types=None, brands=None, hybrid=False):
+ # Standard query
+ organic_query = build_query(term, categories, product_types, brands)
+
+ if hybrid is True and term:
+
+ vector = get_text_vector([term])[0]
+
+ # Hybrid query with RRF (Reciprocal Rank Fusion)
+ query = {
+ "retriever": {
+ "rrf": {
+ "retrievers": [
+ {
+ "standard": {
+ "query": organic_query['query']
+ }
+ },
+ {
+ "knn": {
+ "field": "description_embeddings",
+ "query_vector": vector,
+ "k": 5,
+ "num_candidates": 20,
+ "filter": {
+ "bool": {
+ "filter": []
+ }
+ }
+ }
+ }
+ ],
+ "rank_window_size": 20,
+ "rank_constant": 5
+ }
+ },
+ "_source": organic_query['_source']
+ }
+
+ if categories:
+ query['retriever']['rrf']['retrievers'][1]['knn']['filter']['bool']['filter'].append({
+ "terms": {"category": categories}
+ })
+ if product_types:
+ query['retriever']['rrf']['retrievers'][1]['knn']['filter']['bool']['filter'].append({
+ "terms": {"product_type": product_types}
+ })
+ if brands:
+ query['retriever']['rrf']['retrievers'][1]['knn']['filter']['bool']['filter'].append({
+ "terms": {"brand.keyword": brands}
+ })
+ else:
+ query = organic_query
+
+ return query
+
+
+def search_products(term, categories=None, product_types=None, brands=None, promote_products=[], hybrid=False):
+ query = build_hybrid_query(term, categories, product_types, brands, hybrid)
+
+ if promote_products and not hybrid:
+ query = {
+ "query": {
+ "pinned": {
+ "ids": promote_products,
+ "organic": query['query']
+ }
+ },
+ "_source": query['_source']
+ }
+
+ print(query)
+ response = get_client_es().search(index="products-catalog", body=query, size=20)
+
+ results = []
+ for hit in response['hits']['hits']:
+ print(f"Product Name: {hit['_source']['name']}, Score: {hit['_score']}")
+
+ results.append({
+ "id": hit['_source']['id'],
+ "brand": hit['_source']['brand'],
+ "name": hit['_source']['name'],
+ "price": hit['_source']['price'],
+ "currency": hit['_source']['currency'] if hit['_source']['currency'] else "USD",
+ "image_link": hit['_source']['image_link'],
+ "category": hit['_source']['category'],
+ "tags": hit['_source'].get('tag_list', [])
+ })
+
+ return results
+
+
+def get_facets_data(term, categories=None, product_types=None, brands=None):
+ query = build_query(term, categories, product_types, brands)
+ query["aggs"] = {
+ "product_types": {"terms": {"field": "product_type"}},
+ "categories": {"terms": {"field": "category"}},
+ "brands": {"terms": {"field": "brand.keyword"}}
+ }
+ response = get_client_es().search(index="products-catalog", body=query, size=0)
+
+ return {
+ "product_types": [
+ {"product_type": bucket['key'], "count": bucket['doc_count']}
+ for bucket in response['aggregations']['product_types']['buckets']
+ ],
+ "categories": [
+ {"category": bucket['key'], "count": bucket['doc_count']}
+ for bucket in response['aggregations']['categories']['buckets']
+ ],
+ "brands": [
+ {"brand": bucket['key'], "count": bucket['doc_count']}
+ for bucket in response['aggregations']['brands']['buckets']
+ ]
+ }
+
+
+@app.route('/api/products/search', methods=['GET'])
+def search():
+ query = request.args.get('query')
+ categories = request.args.getlist('selectedCategories[]')
+ product_types = request.args.getlist('selectedProductTypes[]')
+ brands = request.args.getlist('selectedBrands[]')
+ hybrid = request.args.get('hybrid', 'False').lower() == 'true'
+ results = search_products(query, categories=categories, product_types=product_types,
+ brands=brands,
+ promote_products=promote_products_free_gluten,
+ hybrid=hybrid)
+ return jsonify(results)
+
+
+@app.route('/api/products/facets', methods=['GET'])
+def facets():
+ query = request.args.get('query')
+ categories = request.args.getlist('selectedCategories[]')
+ product_types = request.args.getlist('selectedProductTypes[]')
+ brands = request.args.getlist('selectedBrands[]')
+ results = get_facets_data(query, categories=categories,
+ product_types=product_types,
+ brands=brands)
+ return jsonify(results)
+
+
+if __name__ == '__main__':
+ app.run(debug=True)
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/docker-compose.yml b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/docker-compose.yml
new file mode 100644
index 00000000..3051e2a7
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/docker-compose.yml
@@ -0,0 +1,37 @@
+version: '3.8'
+
+services:
+
+ elasticsearch:
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0
+ container_name: elasticsearch-8.15.0
+ environment:
+ - node.name=elasticsearch
+ - xpack.security.enabled=false
+ - discovery.type=single-node
+ - "ES_JAVA_OPTS=-Xms4g -Xmx4g"
+ ulimits:
+ memlock:
+ soft: -1
+ hard: -1
+ volumes:
+ - esdata1:/usr/share/elasticsearch/data
+ ports:
+ - 9200:9200
+
+ kibana:
+ image: docker.elastic.co/kibana/kibana:8.15.0
+ container_name: kibana-8.15.0
+ volumes:
+ - ./kibana.yml:/usr/share/kibana/config/kibana.yml
+ restart: always
+ environment:
+ ELASTICSEARCH_URL: "http://elasticsearch:9200"
+ ports:
+ - 5601:5601
+ depends_on:
+ - elasticsearch
+
+volumes:
+ esdata1:
+ driver: local
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/kibana.yml b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/kibana.yml
new file mode 100644
index 00000000..404864d6
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/docker/kibana.yml
@@ -0,0 +1,9 @@
+#
+# ** THIS IS AN AUTO-GENERATED FILE **
+#
+
+# Default Kibana configuration for docker target
+server.host: "0.0.0.0"
+server.shutdownTimeout: "5s"
+elasticsearch.hosts: [ "http://elasticsearch:9200" ]
+migrations.discardCorruptObjects: "8.4.0"
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/dataset_products.csv b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/dataset_products.csv
new file mode 100644
index 00000000..7298c54f
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/dataset_products.csv
@@ -0,0 +1,3474 @@
+id,brand,name,price,price_sign,currency,image_link,product_link,website_link,description,rating,category,product_type,tag_list,created_at,updated_at,product_api_url,api_featured_image,product_colors
+1048,colourpop,Lippie Pencil,5.0,$,CAD,https://cdn.shopify.com/s/files/1/1338/0845/collections/lippie-pencil_grande.jpg?v=1512588769,https://colourpop.com/collections/lippie-pencil,https://colourpop.com,"Lippie Pencil A long-wearing and high-intensity lip pencil that glides on easily and prevents feathering. Many of our Lippie Stix have a coordinating Lippie Pencil designed to compliment it perfectly, but feel free to mix and match!",,pencil,lip_liner,"['cruelty free', 'Vegan']",2018-07-08T23:45:08.056Z,2018-07-09T00:53:23.301Z,http://makeup-api.herokuapp.com/api/v1/products/1048.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/048/original/open-uri20180708-4-13okqci?1531093614,"[{'hex_value': '#B28378', 'colour_name': 'BFF Pencil'}, {'hex_value': '#A36B5E', 'colour_name': '951 Pencil'}, {'hex_value': '#966A60', 'colour_name': 'Beeper Pencil'}, {'hex_value': '#8F5954', 'colour_name': 'Oh Snap Pencil'}, {'hex_value': '#975348', 'colour_name': 'Curvii Pencil'}, {'hex_value': '#865B69', 'colour_name': 'Lumiere Pencil'}, {'hex_value': '#8E474D', 'colour_name': 'Bumble Pencil'}, {'hex_value': '#5F2820', 'colour_name': 'BFF Pencil 3'}, {'hex_value': '#C095BC', 'colour_name': 'Brills Pencil'}, {'hex_value': '#743A6A', 'colour_name': 'Are N Be Pencil'}, {'hex_value': '#965564', 'colour_name': 'Contempo Pencil'}, {'hex_value': '#BF2C7E', 'colour_name': 'Heart On Pencil'}, {'hex_value': '#CE435D', 'colour_name': 'Trixie Pencil'}, {'hex_value': '#DA6952', 'colour_name': 'Chi Chi Pencil'}, {'hex_value': '#A33C37', 'colour_name': 'Clique Pencil'}, {'hex_value': '#C23D3C', 'colour_name': 'Frenchie Pencil'}, {'hex_value': '#AF4051', 'colour_name': 'Bossy Pencil'}, {'hex_value': '#914B4C', 'colour_name': 'Wild Nothing Pencil'}, {'hex_value': '#6D414B', 'colour_name': 'Dopey Pencil'}, {'hex_value': '#4D2D28', 'colour_name': 'Toolips Pencil'}, {'hex_value': '#361927', 'colour_name': 'Mamacita Pencil'}, {'hex_value': '#714B41', 'colour_name': 'Pitch Pencil'}, {'hex_value': '#762F50', 'colour_name': 'LBB Pencil'}, {'hex_value': '#8C4A47', 'colour_name': 'Love Bug Pencil'}, {'hex_value': '#702E2D', 'colour_name': 'Poison Pencil'}, {'hex_value': '#93283C', 'colour_name': 'Bichette Pencil'}, {'hex_value': '#653E44', 'colour_name': 'Dukes Pencil'}, {'hex_value': '#5C3357', 'colour_name': 'Leather Pencil'}, {'hex_value': '#242225', 'colour_name': 'Bull Chic Pencil'}, {'hex_value': '#B5716A', 'colour_name': 'Brink Pencil'}, {'hex_value': '#B0516F', 'colour_name': 'I Heart This Pencil'}, {'hex_value': '#542328', 'colour_name': 'Ellarie Pencil'}, {'hex_value': '#DFAC9B', 'colour_name': 'Toy Pencil'}, {'hex_value': '#AB7164', 'colour_name': 'BFF Pencil 2'}]"
+1047,colourpop,Blotted Lip,5.5,$,CAD,https://cdn.shopify.com/s/files/1/1338/0845/products/brain-freeze_a_800x1200.jpg?v=1502255076,https://colourpop.com/collections/lippie-stix?filter=blotted-lip,https://colourpop.com,"Blotted Lip Sheer matte lipstick that creates the perfect popsicle pout! Formula is lightweight, matte and buildable for light to medium coverage.",,lipstick,lipstick,"['cruelty free', 'Vegan']",2018-07-08T22:01:20.178Z,2018-07-09T00:53:23.287Z,http://makeup-api.herokuapp.com/api/v1/products/1047.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/047/original/open-uri20180708-4-e7idod?1531087336,"[{'hex_value': '#b72227', 'colour_name': ""Bee's Knees""}, {'hex_value': '#BB656B', 'colour_name': 'Brain Freeze'}, {'hex_value': '#8E4140', 'colour_name': 'Drip'}, {'hex_value': '#A12A33', 'colour_name': 'On a Stick'}, {'hex_value': '#904550', 'colour_name': 'Ice Cube'}, {'hex_value': '#452222', 'colour_name': 'Lolly'}, {'hex_value': '#7C3F35', 'colour_name': 'Candyfloss'}]"
+1046,colourpop,Lippie Stix,5.5,$,CAD,https://cdn.shopify.com/s/files/1/1338/0845/collections/blottedlip-lippie-stix_grande.jpg?v=1512588803,https://colourpop.com/collections/lippie-stix,https://colourpop.com,"Lippie Stix Formula contains Vitamin E, Mango, Avocado, and Shea butter for added comfort and moisture. None of our Lippie formulas contain any nasty ingredients like Parabens or Sulfates.",,lipstick,lipstick,"['cruelty free', 'Vegan']",2018-07-08T21:47:49.858Z,2018-07-09T00:53:23.274Z,http://makeup-api.herokuapp.com/api/v1/products/1046.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/046/original/open-uri20180708-4-1f333k1?1531086651,"[{'hex_value': '#F2DEC3', 'colour_name': 'Fair 05'}, {'hex_value': '#793C36', 'colour_name': 'Ziggie'}, {'hex_value': '#723739', 'colour_name': 'Goldie'}, {'hex_value': '#BF3A30', 'colour_name': 'Love Life'}, {'hex_value': '#94372D', 'colour_name': 'Who Run this'}, {'hex_value': '#9E574D', 'colour_name': 'Aquarius'}, {'hex_value': '#C68176', 'colour_name': 'Brink'}, {'hex_value': '#AA6968', 'colour_name': 'Cami'}, {'hex_value': '#E28474', 'colour_name': 'Sike'}, {'hex_value': '#9A2B24', 'colour_name': 'Fly-Fi'}, {'hex_value': '#B97271', 'colour_name': 'Goal Digger'}, {'hex_value': '#BA7378', 'colour_name': 'After Shock'}, {'hex_value': '#D68B99', 'colour_name': 'Little Tings'}, {'hex_value': '#C07D6B', 'colour_name': 'Ink Blot'}, {'hex_value': '#A3595E', 'colour_name': 'Candy Paint'}, {'hex_value': '#5D2318', 'colour_name': 'Ellarie'}, {'hex_value': '#C17773', 'colour_name': 'Daydream'}, {'hex_value': '#C08892', 'colour_name': 'Oh Snap'}, {'hex_value': '#BC6E6B', 'colour_name': 'Faded'}, {'hex_value': '#CF8D98', 'colour_name': 'Bound'}, {'hex_value': '#762554', 'colour_name': 'Party Foul'}, {'hex_value': '#B67367', 'colour_name': 'Parker'}, {'hex_value': '#852528', 'colour_name': 'Bichette'}, {'hex_value': '#B86A82', 'colour_name': 'Sauce'}, {'hex_value': '#B75E59', 'colour_name': 'Topanga'}, {'hex_value': '#EA5151', 'colour_name': 'Lullaby'}, {'hex_value': '#C08586', 'colour_name': 'Contempo'}, {'hex_value': '#B82485', 'colour_name': 'Heart on'}, {'hex_value': '#C5314F', 'colour_name': 'I Heart this Lippie'}, {'hex_value': '#8F6557', 'colour_name': 'Tootsi'}, {'hex_value': '#AF7564', 'colour_name': 'Cookie'}, {'hex_value': '#AA4E79', 'colour_name': 'Persuasion'}, {'hex_value': '#442A26', 'colour_name': 'Pitch'}, {'hex_value': '#5C4761', 'colour_name': 'Leather'}, {'hex_value': '#D12C35', 'colour_name': 'Frenchie'}, {'hex_value': '#AB3E61', 'colour_name': 'Mirror, Mirror'}, {'hex_value': '#621F20', 'colour_name': 'Poison'}, {'hex_value': '#623343', 'colour_name': 'LBB'}, {'hex_value': '#864740', 'colour_name': 'Grunge'}, {'hex_value': '#C5282D', 'colour_name': 'Bossy'}, {'hex_value': '#DC4A3C', 'colour_name': 'Chi Chi'}, {'hex_value': '#CB2931', 'colour_name': 'Trust Me'}, {'hex_value': '#AB223E', 'colour_name': ""Poppin'""}, {'hex_value': '#A05F6A', 'colour_name': 'Lumiere'}, {'hex_value': '#763A31', 'colour_name': 'Taurus'}, {'hex_value': '#975450', 'colour_name': 'Kapish'}]"
+1045,colourpop,No Filter Foundation,12.0,$,CAD,https://cdn.shopify.com/s/files/1/1338/0845/products/foundations-lineup_800x1200.jpg?v=1528927785,https://colourpop.com/products/no-filter-matte-foundation,https://colourpop.com/products/no-filter-matte-foundation,"Developed for the Selfie Age, our buildable full coverage, natural matte foundation delivers flawless looking skin from day-to-night. The oil-free, lightweight formula blends smoothly and is easily customizable to create the coverage you want. Build it up or sheer it out, it was developed with innovative soft-blurring pigments to deliver true color while looking and feeling natural. The lockable pump is easy to use and keeps your routine mess-free! As always, 100% cruelty-free and vegan.",,liquid,foundation,"['cruelty free', 'Vegan']",2018-07-08T18:22:25.273Z,2018-07-09T00:53:23.313Z,http://makeup-api.herokuapp.com/api/v1/products/1045.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/045/original/open-uri20180708-4-4bvqii?1531074237,"[{'hex_value': '#F2DEC3', 'colour_name': 'Fair 05'}, {'hex_value': '#F3DAC4', 'colour_name': 'Fair 10'}, {'hex_value': '#F1D9C0', 'colour_name': 'Fair 15'}, {'hex_value': '#EFD2BA', 'colour_name': 'Fair 20'}, {'hex_value': '#F1D7B3', 'colour_name': 'Fair 25'}, {'hex_value': '#EDD0B4', 'colour_name': 'Fair 30'}, {'hex_value': '#D9B295', 'colour_name': 'Fair 35'}, {'hex_value': '#CAA17B', 'colour_name': 'Light 45'}, {'hex_value': '#E8C2A4', 'colour_name': 'Light 50'}, {'hex_value': '#E8C3A6', 'colour_name': 'Light 55'}, {'hex_value': '#E9C2A4', 'colour_name': 'Light 60'}, {'hex_value': '#E1B68E', 'colour_name': 'Light 65'}, {'hex_value': '#E4C096', 'colour_name': 'Light 70'}, {'hex_value': '#E0B492', 'colour_name': 'Light 75'}, {'hex_value': '#E0C1A1', 'colour_name': 'Medium 80'}, {'hex_value': '#E4C1A9', 'colour_name': 'Medium 85'}, {'hex_value': '#E5C6A8', 'colour_name': 'Medium 90'}, {'hex_value': '#D3A784', 'colour_name': 'Medium 95'}, {'hex_value': '#E2C2A1', 'colour_name': 'Medium 100'}, {'hex_value': '#D7B297', 'colour_name': 'Medium 105'}, {'hex_value': '#D4B194', 'colour_name': 'Medium 110'}, {'hex_value': '#DCBFA5', 'colour_name': 'Medium Dark 115'}, {'hex_value': '#D7B59A', 'colour_name': 'Medium Dark 120'}, {'hex_value': '#C69676', 'colour_name': 'Medium Dark 125'}, {'hex_value': '#D9B498', 'colour_name': 'Medium Dark 130'}, {'hex_value': '#D9B191', 'colour_name': 'Medium Dark 135'}, {'hex_value': '#D1AA90', 'colour_name': 'Medium Dark 140'}, {'hex_value': '#BF8E63', 'colour_name': 'Medium Dark 145'}, {'hex_value': '#C69B83', 'colour_name': 'Dark 150'}, {'hex_value': '#C29879', 'colour_name': 'Dark 155'}, {'hex_value': '#B99179', 'colour_name': 'Dark 160'}, {'hex_value': '#C39981', 'colour_name': 'Dark 165'}, {'hex_value': '#B99078', 'colour_name': 'Dark 170'}, {'hex_value': '#B6927D', 'colour_name': 'Dark 175'}, {'hex_value': '#B38A79', 'colour_name': 'Dark 180'}, {'hex_value': '#AC8875', 'colour_name': 'Deep Dark 115'}, {'hex_value': '#A07967', 'colour_name': 'Deep Dark 115'}, {'hex_value': '#946D5A', 'colour_name': 'Deep Dark 115'}, {'hex_value': '#865F4D', 'colour_name': 'Deep Dark 115'}, {'hex_value': '#896A5A', 'colour_name': 'Deep Dark 80'}, {'hex_value': '#795F52', 'colour_name': 'Deep Dark 80'}, {'hex_value': '#6B5148', 'colour_name': 'Deep Dark 80'}]"
+1044,boosh,Lipstick,26.0,$,CAD,https://cdn.shopify.com/s/files/1/1016/3243/products/LIPBALM_LID_grande.jpg?v=1496848378,https://www.boosh.ca/collections/all,https://www.boosh.ca/,"All of our products are free from lead and heavy metals, parabens, phthalates, artificial colourants, and synthetic fragrances. Boosh lipstick glides on smoothly for clean & protective SPF coverage. They are filled with hydrating oils and butters to preserve and enhance your lips natural surface. Organic sweet orange oil gives a light and cheerful scent.",,lipstick,lipstick,"['Chemical Free', 'Organic']",2018-07-08T17:32:28.088Z,2018-09-02T22:52:06.669Z,http://makeup-api.herokuapp.com/api/v1/products/1044.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/044/original/data?1531071233,"[{'hex_value': '#CB4975', 'colour_name': 'Babs'}, {'hex_value': '#B6636F', 'colour_name': 'Bobbie'}, {'hex_value': '#B37072', 'colour_name': 'Rosie'}, {'hex_value': '#C6727C', 'colour_name': 'Ellie'}, {'hex_value': '#AF2257', 'colour_name': 'Dahlia'}, {'hex_value': '#573F53', 'colour_name': 'Kat'}, {'hex_value': '#875672', 'colour_name': 'Brie'}, {'hex_value': '#BC88A5', 'colour_name': 'Emmy'}, {'hex_value': '#BB8A88', 'colour_name': 'Dusty rose'}, {'hex_value': '#8D5C58', 'colour_name': 'Kylie'}, {'hex_value': '#C86775', 'colour_name': 'Leah'}, {'hex_value': '#F8D7D6', 'colour_name': 'Lip Plumping Balm'}, {'hex_value': '#8F6065', 'colour_name': 'Luna'}, {'hex_value': '#C79289', 'colour_name': 'Nova'}, {'hex_value': '#9D3F47', 'colour_name': 'Ruby'}]"
+1043,deciem,Serum Foundation,6.7,$,CAD,https://3bc01d2807fb1bc0d25c-a86d2521f1af8989841b9619f5314be5.ssl.cf1.rackcdn.com/products/market-img/rdn-serum-foundation-30-r-30ml.png?v=6ab9fcb8ca2abb9828afcf9dcdad9f94,https://deciem.com/product/rdn-serum-foundation-30-r-30ml,https://deciem.com/,Serum Foundations are lightweight medium-coverage formulations available in a comprehensive shade range across 21 shades. These foundations offer moderate coverage that looks natural with a very lightweight serum feel. They are very low in viscosity and are dispensed with the supplied pump or with the optional glass dropper available for purchase separately if preferred. ,,liquid,foundation,"['water free', 'cruelty free', 'alcohol free', 'oil free', 'silicone free', 'Vegan', 'Gluten Free']",2018-07-06T23:16:12.698Z,2018-09-02T22:52:06.882Z,http://makeup-api.herokuapp.com/api/v1/products/1043.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/043/original/open-uri20180706-4-nszgw9?1530919194,"[{'hex_value': '#f4e5d6', 'colour_name': '1.0P'}, {'hex_value': '#f3e8d1', 'colour_name': '1.0N'}, {'hex_value': '#f3e8d1', 'colour_name': '1.0NS'}, {'hex_value': '#f2d7ba', 'colour_name': '1.1P'}, {'hex_value': '#efdbba', 'colour_name': '1.1N'}, {'hex_value': '#f0d5af', 'colour_name': '1.2N'}, {'hex_value': '#e5c5a1', 'colour_name': '1.2P'}, {'hex_value': '#e6c796', 'colour_name': '1.2Y'}, {'hex_value': '#e6c796', 'colour_name': '1.2YG'}, {'hex_value': '#e3be8e', 'colour_name': '2.0P'}, {'hex_value': '#e5cb9f', 'colour_name': '2.0N'}, {'hex_value': '#dcc399', 'colour_name': '2.0YG'}, {'hex_value': '#ddb279', 'colour_name': '2.1P'}, {'hex_value': '#dcad6d', 'colour_name': '2.1Y'}, {'hex_value': '#d59c62', 'colour_name': '3.0R'}, {'hex_value': '#d19e61', 'colour_name': '3.0Y'}, {'hex_value': '#b3754a', 'colour_name': '3.1R'}, {'hex_value': '#c28651', 'colour_name': '3.1Y'}, {'hex_value': '#916C4F', 'colour_name': '3.2N'}, {'hex_value': '#8E6346', 'colour_name': '3.2R'}, {'hex_value': '#664A37', 'colour_name': '3.3N'}]"
+1042,deciem,Coverage Foundation,6.9,$,CAD,https://3bc01d2807fb1bc0d25c-a86d2521f1af8989841b9619f5314be5.ssl.cf1.rackcdn.com/products/market-img/rdn-coverage-foundation-33-n-30ml.png?v=daa322f179d80e450613c75826602292,https://deciem.com/product/rdn-coverage-foundation-33-n-30ml,https://deciem.com/,"Coverage Foundations are full-coverage formulations available in a comprehensive shade range across 21 shades. These foundations contain higher pigment levels than our Serum Foundations but still offer a smooth finish that avoids the heavy makeup look that can make skin appear more aged. The texture is that of a lightweight, non-oily cream.",,liquid,foundation,"['water free', 'cruelty free', 'alcohol free', 'oil free', 'silicone free', 'Vegan', 'Gluten Free']",2018-07-06T22:27:54.541Z,2018-09-02T22:52:06.865Z,http://makeup-api.herokuapp.com/api/v1/products/1042.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/042/original/open-uri20180706-4-1e74943?1530916234,"[{'hex_value': '#f4e5d6', 'colour_name': '1.0P'}, {'hex_value': '#f3e8d1', 'colour_name': '1.0N'}, {'hex_value': '#f3e8d1', 'colour_name': '1.0NS'}, {'hex_value': '#f2d7ba', 'colour_name': '1.1P'}, {'hex_value': '#efdbba', 'colour_name': '1.1N'}, {'hex_value': '#f0d5af', 'colour_name': '1.2N'}, {'hex_value': '#e5c5a1', 'colour_name': '1.2P'}, {'hex_value': '#e6c796', 'colour_name': '1.2Y'}, {'hex_value': '#e6c796', 'colour_name': '1.2YG'}, {'hex_value': '#e3be8e', 'colour_name': '2.0P'}, {'hex_value': '#e5cb9f', 'colour_name': '2.0N'}, {'hex_value': '#dcc399', 'colour_name': '2.0YG'}, {'hex_value': '#ddb279', 'colour_name': '2.1P'}, {'hex_value': '#dcad6d', 'colour_name': '2.1Y'}, {'hex_value': '#d59c62', 'colour_name': '3.0R'}, {'hex_value': '#d19e61', 'colour_name': '3.0Y'}, {'hex_value': '#b3754a', 'colour_name': '3.1R'}, {'hex_value': '#c28651', 'colour_name': '3.1Y'}, {'hex_value': '#916C4F', 'colour_name': '3.2N'}, {'hex_value': '#8E6346', 'colour_name': '3.2R'}, {'hex_value': '#664A37', 'colour_name': '3.3N'}]"
+1041,zorah biocosmetiques,Liquid Liner,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Zorah-Biocosmetiques-Liquid-Liner.png,https://www.purpicks.com/product/zorah-biocosmetiques-liquid-liner/,https://purpicks.com/,"12 hours of long-lasting intense color, transfer-free (leaves no trace on crease above the eyelid) Pure Light Capture®minerals deliver color and radiance. Silky lines and refreshingly light, Pure Argan eyeliner leaves a weightless feel on the eyelids.
Natural cosmetic certified by Ecocert Greenlife according to Ecocert Standard available at: http://cosmetiques.ecocert.com
98% of the total ingredients are from natural origin 5% of total ingredients are from organic farming",,liquid,eyeliner,"['purpicks', 'EcoCert']",2018-06-30T19:19:32.312Z,2018-09-02T22:52:06.723Z,http://makeup-api.herokuapp.com/api/v1/products/1041.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/041/original/open-uri20180630-4-1huiv9y?1530390387,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1040,zorah biocosmetiques,Eyeshadow,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/02/Ombre-Amazonie-CC.png,https://www.purpicks.com/product/zorah-eyeshadow/,https://purpicks.com/,"Product DescriptionAnti-aging formula made with organic Pure Argan oil and Pure Light Capture® pigments. 24 Hour crease-free intensity (no build-up increase of eyelid), no running. Pure Light Capture® pigments deliver color and luminosity. Silky and refreshingly light feel, Pure Argan eyeshadow is weightless on the eyelids. Pure Argan eyeshadow soothes, hides redness and slows the appearance of the signs of aging on the skin.
Natural cosmetic certified by Ecocert Greenlife according to Ecocert Standard available at: http://cosmetiques.ecocert.com
100% of the total ingredients are from natural origin5% of total ingredients are from organic farming",,,eyeshadow,"['purpicks', 'EcoCert']",2018-06-30T19:19:32.252Z,2018-09-02T22:52:06.714Z,http://makeup-api.herokuapp.com/api/v1/products/1040.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/040/original/open-uri20180630-4-1afkyee?1530390386,"[{'hex_value': '#966A54', 'colour_name': 'Sahara'}, {'hex_value': '#6B7475', 'colour_name': 'Evrest'}, {'hex_value': '#444446', 'colour_name': 'Casablanca'}]"
+1039,w3llpeople, Realist Invisible Setting Powder,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/w3llpeople-Realist-Invisible-Setting-Powder.jpg,https://www.purpicks.com/product/w3llpeople-realist-invisible-setting-powder/,https://purpicks.com/,"Keep it real with a polished, soft-focus look using this superfine, loose mineral powder. The healing properties of organic aloe help soothe and calm stressed out skin. Instantly minimize pores, soften imperfections, and creates a matte finish with superfine powder. Use by itself for an air-brushed look, or to set foundation for ultra-long wear.* Set makeup or by itself for matte air-brushed effect* Absorbs excess oil while softening fine lines* Organic aloe creates radiant, rejuvenated skin* Hypoallergenic, Chemical Free, Cruelty Free & Noncomedogenic * EWG Verified for non-toxic health and safety* Free From: Parabens, Gluten, GMO, Phthalates, Sulfates, Fragrance, Pheonoxyethanol, Dimethicone, PEG, Propylene Glycol, Butylene Glycol, Lead, Mineral Oil, Talc",,powder,foundation,"['purpicks', 'EWG Verified', 'Gluten Free']",2018-06-30T19:19:32.191Z,2018-06-30T20:26:26.417Z,http://makeup-api.herokuapp.com/api/v1/products/1039.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/039/original/open-uri20180630-4-rfmkzd?1530390386,"[{'hex_value': '#E8E6E7', 'colour_name': 'Translucent'}]"
+1038,sally b's skin yummies,B Smudged,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Sally-B_s-Skin-Yummies-B-Smudged-1.jpg,https://www.purpicks.com/product/sally-bs-skin-yummies-b-smudged/,https://purpicks.com/,"Let your eyes naturally pop with our B Smudged, a subtle eye color that adds a tint of color to the base of your lashes. An organic, cream eye color, B Smudged eliminates the inevitable uneven line from traditional eyeliners, and does not require expert blending techniques of messy, powder-based shadows. Simply 'smudge' along lash line for color that stays in place for a long lasting look.",,,eyeshadow,"['EWG Verified', 'purpicks']",2018-06-30T19:19:32.132Z,2018-09-02T22:52:06.697Z,http://makeup-api.herokuapp.com/api/v1/products/1038.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/038/original/open-uri20180630-4-xhqdne?1530390385,"[{'hex_value': '#485376', 'colour_name': 'B smudged'}]"
+1037,sally b's skin yummies,B Glossy Lip Gloss,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Sally-B_s-Skin-Yummies-B-Glossy-Lip-Gloss.jpg,https://www.purpicks.com/product/sally-bs-skin-yummies-b-glossy-lip-gloss/,https://purpicks.com/,"Intensify your natural lip color with Sally B's B Glossy Lip Gloss, an organic lip gloss that adds a silky smooth hint of color and shimmer to lips. Formulated with 98% certified organic, moisture-rich ingredients our B Glossy Lip Gloss works to enrich lip health for lips that feel good and look even better.",,lip_gloss,lipstick,"['EWG Verified', 'purpicks']",2018-06-30T19:19:32.053Z,2018-09-02T22:52:06.687Z,http://makeup-api.herokuapp.com/api/v1/products/1037.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/037/original/open-uri20180630-4-1fa1p2f?1530390384,"[{'hex_value': '#BF5D7F', 'colour_name': ""Every Blonde's Pink""}, {'hex_value': '#D84945', 'colour_name': 'Primrose'}, {'hex_value': '#E1A2A0', 'colour_name': 'Soft Kiss'}, {'hex_value': '#B82F42', 'colour_name': ""Ruby's Red""}, {'hex_value': '#BE5F37', 'colour_name': 'Copper Penny'}, {'hex_value': '#8F4636', 'colour_name': 'Sweet Plum'}]"
+1036,rejuva minerals,Multi Purpose Powder - Blush & Eye,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Blush-_-Eye-1.jpg,https://www.purpicks.com/product/rejuva-minerals-multi-purpose-powder-blush-eye/,https://purpicks.com/,"Our Multi Purpose Pressed Powders may be used for blush or eye shadow. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. Made without any gluten containing ingredients. Mica free Pink Parfait and Papaya will offer a natural, ultra sheer semi-matte finish. The petals from beautiful crushed red roses that are found in Pink Parfait, are valued for their natural color and delightful aroma that they provide! Acai Berry will offer a natural, ultra sheer satin finish (mica added). VEGAN. Image one is Pink Parfait. Image two is Papaya, and image three is Acai Berry. Model in image four is wearing Papaya. Model in image five is wearing Acai Berry. To see a demonstration of Papaya, click on the video and fast forward to 3:44. Enjoy! This product is EWG VERIFIED™ and rated 'CLEAN'in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable. *Tiny flecks of fruit and botanical particles may be visible in powder. Pink Parfait and Papaya are Titanium Dioxide and Mica free. Net Weight: 2.8 gm.",,,eyeshadow,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:31.988Z,2018-09-02T22:52:06.678Z,http://makeup-api.herokuapp.com/api/v1/products/1036.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/036/original/open-uri20180630-4-ign3hh?1530390384,"[{'hex_value': '#E1BFC0', 'colour_name': 'Pink Parfait'}, {'hex_value': '#D7A7A3', 'colour_name': 'Papaya'}, {'hex_value': '#E6C3CB', 'colour_name': 'Acai Berry'}]"
+1035,rejuva minerals,Multi Purpose Powder - Blush & Eye,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Blush-_-Eye-1.jpg,https://www.purpicks.com/product/rejuva-minerals-multi-purpose-powder-blush-eye/,https://purpicks.com/,"Our Multi Purpose Pressed Powders may be used for blush or eye shadow. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. Made without any gluten containing ingredients. Mica free Pink Parfait and Papaya will offer a natural, ultra sheer semi-matte finish. The petals from beautiful crushed red roses that are found in Pink Parfait, are valued for their natural color and delightful aroma that they provide! Acai Berry will offer a natural, ultra sheer satin finish (mica added). VEGAN. Image one is Pink Parfait. Image two is Papaya, and image three is Acai Berry. Model in image four is wearing Papaya. Model in image five is wearing Acai Berry. To see a demonstration of Papaya, click on the video and fast forward to 3:44. Enjoy! This product is EWG VERIFIED™ and rated 'CLEAN'in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable. *Tiny flecks of fruit and botanical particles may be visible in powder. Pink Parfait and Papaya are Titanium Dioxide and Mica free. Net Weight: 2.8 gm.",,powder,blush,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:31.909Z,2018-09-02T22:52:06.855Z,http://makeup-api.herokuapp.com/api/v1/products/1035.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/035/original/open-uri20180630-4-n6wb0y?1530390383,"[{'hex_value': '#E1BFC0', 'colour_name': 'Pink Parfait'}, {'hex_value': '#D7A7A3', 'colour_name': 'Papaya'}, {'hex_value': '#E6C3CB', 'colour_name': 'Acai Berry'}]"
+1034,rejuva minerals,Multi Purpose Powder - Eye Shadow & Face,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Eye-Shadow-Face-1.jpg,https://www.purpicks.com/product/rejuva-minerals-multi-purpose-powder-eye-shadow-face/,https://purpicks.com/,"Our Multi Purpose Pressed Powders may be used as eye shadow, brow powder, eye liner, or for highlighting. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. No gluten derived ingredients. VEGAN. All shades will offer a semi-matte finish, with the exception of White Diamond. White Diamond will offer a shimmery finish. Image one shows shade in Iris. This product is EWG VERIFIED™ and rated 'CLEAN' in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable.",,,eyeshadow,"['purpicks', 'EWG Verified', 'Vegan', 'Organic']",2018-06-30T19:19:31.827Z,2018-09-02T22:52:06.661Z,http://makeup-api.herokuapp.com/api/v1/products/1034.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/034/original/open-uri20180630-4-1n63e1y?1530390382,"[{'hex_value': '#F7F8F3', 'colour_name': 'White Diamond'}, {'hex_value': '#E8B49B', 'colour_name': 'Tropical Sunset'}, {'hex_value': '#292627', 'colour_name': 'Moonless Night'}, {'hex_value': '#A17E69', 'colour_name': 'Mocha Latte'}, {'hex_value': '#8C666E', 'colour_name': 'Iris'}, {'hex_value': '#615349', 'colour_name': 'Brazillian Brown'}, {'hex_value': '#F7DEC4', 'colour_name': 'Beach Bum'}]"
+1033,rejuva minerals,Pressed Powder Foundation,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Eye-Shadow-Face-1.jpg,https://www.purpicks.com/product/rejuva-minerals-multi-purpose-powder-eye-shadow-face/,https://purpicks.com/,"Coconut Cream - Warm Undertones (yellow) Light Shade. May also be used as a highlighting shade! About our pressed foundations:
Provides a silky smooth, natural 'semi-matte' finish
All skin types
Will not dry out skin (apply light moisturizer underneath for best results)
Resists caking and settling in lines and pores
Layers to provide a light-medium (buildable) coverage
Eco-friendly, biodegradable compact
Colored with minerals and enhanced with organic fruits and botanicals
Infused with conditioning organic jojoba oil
Formulated without common skin irritants.
",,powder,foundation,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:31.736Z,2018-09-02T22:52:06.652Z,http://makeup-api.herokuapp.com/api/v1/products/1033.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/033/original/open-uri20180630-4-1mibdm?1530390382,"[{'hex_value': '#FBE9CD', 'colour_name': 'Coconut Cream'}, {'hex_value': '#E6B588', 'colour_name': 'Dune'}, {'hex_value': '#EBC8A0', 'colour_name': 'Glow'}, {'hex_value': '#F8E3D5', 'colour_name': 'Nude'}, {'hex_value': '#D8B39B', 'colour_name': 'Radiance'}, {'hex_value': '#E7CDBA', 'colour_name': 'Sand'}, {'hex_value': '#F1C4A8', 'colour_name': 'Sea Shell'}, {'hex_value': '#D1B594', 'colour_name': 'Taffy'}, {'hex_value': '#9C7248', 'colour_name': 'Bahama Mama'}, {'hex_value': '#DDA983', 'colour_name': 'St Tropez'}]"
+1032,rejuva minerals,Bronzer - loose,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/03/rejuva-minerals-bronzer.jpg,https://www.purpicks.com/product/rejuva-minerals-bronzer-caribbean/,https://purpicks.com/,"Caribbean is a multi-purpose shade that is suitable for medium-tan skin tones. This shade may be used as a bronzer, or as a contour shade.
Our bronzer has been enhanced with Fruits, Botanicals and Clays for their natural color, fragrance and antioxidant benefits!
Blended with Certified Organics Fruits and Botanicals
Formulated with common skin irritants.
Our bronzer will offer a natural “ultra sheer” semi-matte finish.
Made without any gluten containing ingredients
VEGAN!
Eco Friendly jars!
",,powder,bronzer,"['purpicks', 'EWG Verified', 'Vegan', 'Gluten Free']",2018-06-30T19:19:31.682Z,2018-09-02T22:52:06.643Z,http://makeup-api.herokuapp.com/api/v1/products/1032.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/032/original/open-uri20180630-4-1bl3btv?1530390381,"[{'hex_value': '#A37948', 'colour_name': 'Caribbean'}]"
+1031,rejuva minerals,Bronzer - pressed,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/03/rejuva-minerals-bronzer.jpg,https://www.purpicks.com/product/rejuva-bronzer-light/,https://purpicks.com/,"Our bronzer has been enhanced with Fruits, Botanicals and Clays for their natural color, fragrance and antioxidant benefits! Blended with Certified Organics Fruits and Botanicals Formulated with common skin irritants. Our bronzer will offer a natural 'ultra sheer' semi-matte finish. Made without any gluten containing ingredients VEGAN! Eco Friendly jars!",,powder,bronzer,"['purpicks', 'EWG Verified', 'Vegan', 'Gluten Free']",2018-06-30T19:19:31.624Z,2018-09-02T22:52:06.629Z,http://makeup-api.herokuapp.com/api/v1/products/1031.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/031/original/open-uri20180630-4-1axfay6?1530390380,"[{'hex_value': '#DDA983', 'colour_name': 'St Tropez'}, {'hex_value': '#9C7248', 'colour_name': 'Bahama Mama'}]"
+1030,penny lane organics,Lip Gloss,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/sunset-bronze-pennylaneorganics1.jpg,https://www.purpicks.com/product/penny-lane-organics-lip-gloss/,https://purpicks.com/,For fuller healthier lips! Long lasting colour! This colour is a good choice for any skin tone. It can be made lighter by wiping some off after application.Please note that our Vitamin E is extracted from non-GMO soy bean oil and therefore is gluten-free.,,lip_gloss,lipstick,"['purpicks', 'CertClean', 'Vegan', 'Chemical Free', 'Gluten Free']",2018-06-30T19:19:31.534Z,2018-09-02T22:52:06.618Z,http://makeup-api.herokuapp.com/api/v1/products/1030.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/030/original/open-uri20180630-4-ucbwbt?1530390380,"[{'hex_value': '#2F1513', 'colour_name': 'Black Cherry'}, {'hex_value': '#4F1314', 'colour_name': 'Fiery Red'}, {'hex_value': '#6F2633', 'colour_name': 'Pearl Pink'}, {'hex_value': '#B05665', 'colour_name': 'Pink Shimmer'}, {'hex_value': '#783F30', 'colour_name': 'Sunset Bronze'}, {'hex_value': '#511617', 'colour_name': 'Sweet Cherry'}, {'hex_value': '#8E2432', 'colour_name': 'Tropical Fuschia'}]"
+1029,nudus,Amalia,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Nudus-Amalia.jpg,https://www.purpicks.com/product/nudus-amalia/,https://purpicks.com/,"named after my beautiful mum, delicately pink that displays sophistication. a perfect sheer wash of gorgeous colour that brings a new texture to the lip euphoria range. lipstick benefits a unique handcrafted lipstick blended with certified organic ingredients. beautifully pigmented with ancient ayurvedic bioactive colour extracts, leaving your lips soft and deliciously hydrated.key benefits
vitamins, A, B, C, D, E and K
antioxidants, including pomegranate, raspberry and kiwi cold pressed oils
27 active natural ingredients, helping against environmental stress
colours made from flowers, fruits, herbs and minerals
free from parabens, petro-chemicals, lanolin, hydrogenated oils,fd&c and lake dyes, nano-particles, gmo, pesticides and fungicides
not tested on animals
gluten free
",,lipstick,lipstick,['purpicks'],2018-06-30T19:19:31.441Z,2018-09-02T22:52:06.839Z,http://makeup-api.herokuapp.com/api/v1/products/1029.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/029/original/open-uri20180630-4-1rfkucb?1530390379,"[{'hex_value': '#7C524F', 'colour_name': '27 Kisses'}, {'hex_value': '#884955', 'colour_name': 'Amalia'}, {'hex_value': '#9F3D2A', 'colour_name': 'Bitter Sweet'}, {'hex_value': '#542A26', 'colour_name': 'Dirty Diana'}, {'hex_value': '#793D48', 'colour_name': 'Dreamtime'}, {'hex_value': '#BB6E60', 'colour_name': 'Fairy Tale'}, {'hex_value': '#BA8285', 'colour_name': 'Halo'}, {'hex_value': '#71474E', 'colour_name': 'Just Like Jade'}, {'hex_value': '#AF8475', 'colour_name': 'Naked'}, {'hex_value': '#D65572', 'colour_name': 'Precious'}, {'hex_value': '#8F1A23', 'colour_name': 'Revenge'}, {'hex_value': '#8B383D', 'colour_name': 'Ruby Rose'}, {'hex_value': '#C83752', 'colour_name': 'Survivor'}, {'hex_value': '#784F5F', 'colour_name': 'Viva'}, {'hex_value': '#672F57', 'colour_name': 'Zo Zo'}]"
+1028,marienatie,Pressed Foundation,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/caramel_1024x1024_e5fbf151-0cfd-42c9-a5ec-f49d6104bcbc1.jpg,https://www.purpicks.com/product/marie-natie-pressed-foundation/,https://purpicks.com/,A pressed foundation by MarieNatie providing a silky and flawless finish – it provides great coverage and protects skin with SPF 10. Titanium dioxide acts as an absorbent of oil and jojoba oil helps to cleanse and moisturize the skin.,,powder,foundation,"['purpicks', 'CertClean']",2018-06-30T19:19:31.368Z,2018-09-02T22:52:06.609Z,http://makeup-api.herokuapp.com/api/v1/products/1028.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/028/original/open-uri20180630-4-1u219s0?1530390378,"[{'hex_value': '#F8DBC3', 'colour_name': 'Ivory'}, {'hex_value': '#ECBFA3', 'colour_name': 'Natural Beige'}, {'hex_value': '#FAE3C9', 'colour_name': 'Sunny Beige'}, {'hex_value': '#F3D2B7', 'colour_name': 'Warm Tan'}, {'hex_value': '#E7C09D', 'colour_name': 'Tan'}, {'hex_value': '#F4D3B8', 'colour_name': 'Honey'}, {'hex_value': '#D4AD8C', 'colour_name': 'Caramel'}, {'hex_value': '#D8AD91', 'colour_name': 'Chocolate'}, {'hex_value': '#C29F90', 'colour_name': 'Deep Golden'}]"
+1027,marienatie,Pressed Eye Shadow,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/pressed_eyeshadow_LORES_1024x1024_55deb6c3-b7cd-4cb5-9ede-f2931c07312a1.jpg,https://www.purpicks.com/product/marie-natie-pressed-eye-shadow/,https://purpicks.com/,Hypoallergenic shadows that are rich in colour with a lightweight texture. These MarieNatie shadows are fragrance-free and will stay on all day. Compact comes with a mini brush that can be stored away. Titanium dioxide acts as an absorbent of oil and jojoba cleanses and moisturizes the skin.,,,eyeshadow,"['purpicks', 'CertClean']",2018-06-30T19:19:31.278Z,2018-09-02T22:52:06.599Z,http://makeup-api.herokuapp.com/api/v1/products/1027.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/027/original/open-uri20180630-4-2ii6k2?1530390377,"[{'hex_value': '#FDFAF9', 'colour_name': 'Blanc'}, {'hex_value': '#F9F5F2', 'colour_name': 'A la mode'}, {'hex_value': '#C5BEBA', 'colour_name': 'Soiree'}, {'hex_value': '#DFC99C', 'colour_name': 'Oro'}, {'hex_value': '#635152', 'colour_name': 'Cafe'}, {'hex_value': '#DADFBF', 'colour_name': 'Emerald'}, {'hex_value': '#A2AA93', 'colour_name': 'Foret'}, {'hex_value': '#8E6771', 'colour_name': 'Tres Beau'}, {'hex_value': '#9886A3', 'colour_name': ""C'est Bon""}, {'hex_value': '#5B739C', 'colour_name': 'Lune'}, {'hex_value': '#464342', 'colour_name': 'Minuit'}, {'hex_value': '#CBDDE3', 'colour_name': 'Mon Amour'}, {'hex_value': '#E2CED1', 'colour_name': 'Fleur'}]"
+1026,marienatie,Mineral Blush,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Blush_copy_1024x1024_edd99d6d-301e-4ba1-aa74-a33d21147b7c1.jpg,https://www.purpicks.com/product/marie-natie-mineral-blush/,https://purpicks.com/,Formulated to reduce the appearance of pores while creating a long-lasting natural finish. This MarieNatie brush protects skin with SPF15. Sericite mica is great for absorbing oil and won’t clog up pores. Mica is a natural mineral that helps to enhance the skin tone.,,powder,blush,"['purpicks', 'CertClean']",2018-06-30T19:19:31.234Z,2018-09-02T22:52:06.590Z,http://makeup-api.herokuapp.com/api/v1/products/1026.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/026/original/open-uri20180630-4-18e9ua7?1530390377,"[{'hex_value': '#C97D66', 'colour_name': 'Blushing Apple'}, {'hex_value': '#DF9A84', 'colour_name': 'Desert Rose'}]"
+1025,marienatie,Perfect Lash Mascara,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2017/06/marie-natie-perfect-lash-mascara.png,https://www.purpicks.com/product/marie-natie-perfect-lash-mascara/,https://purpicks.com/,"Marie Natie Perfect Lash Mascara is made with all natural ingredients that will not only condition your lashes but lengthen and thicken your every lash with every stroke. Oregano, rosemary and thyme extract are great antioxidants and helps to maintain skin health. Cinnamon bark extracts helps to fight infection. Lemon peel extract contains natural healing and soothing properties.",,,mascara,"['purpicks', 'CertClean']",2018-06-30T19:19:31.192Z,2018-09-02T22:52:06.828Z,http://makeup-api.herokuapp.com/api/v1/products/1025.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/025/original/open-uri20180630-4-yxmmga?1530390376,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1024,marienatie,Loose Mineral Eyeshadow,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Loose_MineralEyeshadow_1024x1024_a958d62b-c518-4548-a2cd-9c8981f5edee1.jpg,https://www.purpicks.com/product/marie-natie-loose-mineral-eyeshadow/,https://purpicks.com/,"Long-lasting eye colours delivering an instant glam and shimmer. Silky and soft texture of MarieNatie glides on easily when applied wet or dry. Magnesium stearate repels water and will help keep your eye shadow on all day and absorb any extra oil. Kaolin clay will help to purify, soothe different skin types.",,,eyeshadow,"['purpicks', 'CertClean']",2018-06-30T19:19:31.101Z,2018-09-02T22:52:06.518Z,http://makeup-api.herokuapp.com/api/v1/products/1024.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/024/original/open-uri20180630-4-13b5ehh?1530390375,"[{'hex_value': '#D1A390', 'colour_name': 'Bisque'}, {'hex_value': '#E4C2C4', 'colour_name': 'Rose'}, {'hex_value': '#CBD0D0', 'colour_name': 'Jade'}, {'hex_value': '#9F9686', 'colour_name': 'K aki'}, {'hex_value': '#92A281', 'colour_name': 'Emerald'}, {'hex_value': '#C57F70', 'colour_name': 'Oam'}, {'hex_value': '#8D6255', 'colour_name': 'Chocolate'}, {'hex_value': '#AB9A9E', 'colour_name': 'Riz Violet'}, {'hex_value': '#808193', 'colour_name': 'Aubergine'}, {'hex_value': '#F8DDAE', 'colour_name': 'Oro'}, {'hex_value': '#B0A9AC', 'colour_name': 'Argent'}, {'hex_value': '#8B5966', 'colour_name': 'Mauve'}, {'hex_value': '#47404A', 'colour_name': 'Noir'}]"
+1023,marienatie,Lipstick,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Evelyn_Pic1.jpg,https://www.purpicks.com/product/marie-natie-lipstick/,https://purpicks.com/,"A pure and creamy lipstick by MarieNatie formulated with organic jojoba, avocado, and coconut oil which are rich in anti-oxidants and have moisturizing benefits. Enriched with naturally derived organic mango and cocoa butters that will soothe, hydrate and regenerate dry lips.",,lipstick,lipstick,"['purpicks', 'CertClean', 'Vegan', 'Gluten Free']",2018-06-30T19:19:31.034Z,2018-09-02T22:52:06.510Z,http://makeup-api.herokuapp.com/api/v1/products/1023.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/023/original/open-uri20180630-4-149dwc3?1530390375,"[{'hex_value': '#9D5E4F', 'colour_name': 'Evelyn'}, {'hex_value': '#B03B3E', 'colour_name': 'Rosie'}, {'hex_value': '#9A1C24', 'colour_name': 'Giselle'}, {'hex_value': '#B4556E', 'colour_name': 'Ava'}]"
+1022,marienatie,Lip Gloss,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Envy1.jpg,https://www.purpicks.com/product/lip-gloss/,https://purpicks.com/,MarieNatie offers a gluten free and vegan lip gloss providing rich colours and shine without the stickiness. The natural oils will offer moisturizing properties and lasting hydration for your lips. Contains grape seed oil to reduce aging and wrinkles and sunflower oil has the ability to heal skin. Vitamin E is a great antioxidant that will protect and repair skin.,,lip_gloss,lipstick,"['purpicks', 'CertClean']",2018-06-30T19:19:30.964Z,2018-09-02T22:52:06.502Z,http://makeup-api.herokuapp.com/api/v1/products/1022.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/022/original/data?1530390374,"[{'hex_value': '#D5A291', 'colour_name': 'Posh'}, {'hex_value': '#D5A3A1', 'colour_name': 'Flair'}, {'hex_value': '#E89EA2', 'colour_name': 'Tickled'}, {'hex_value': '#8B5B5F', 'colour_name': 'Envy'}, {'hex_value': '#99696C', 'colour_name': 'Lush'}, {'hex_value': '#F1B8BE', 'colour_name': 'Pure'}, {'hex_value': '#D37B92', 'colour_name': 'Babe'}, {'hex_value': '#CA5774', 'colour_name': 'Wild'}]"
+1021,marienatie,Gel Liner,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Photo10_12001.jpg,https://www.purpicks.com/product/marie-natie-gel-liner/,https://purpicks.com/,This smooth and creamy formula from MarieNatie will provide a silky soft and non-oily finish. It glides on evenly to deliver immediate results.,,gel,eyeliner,"['purpicks', 'CertClean', 'Vegan', 'Gluten Free']",2018-06-30T19:19:30.898Z,2018-09-02T22:52:06.494Z,http://makeup-api.herokuapp.com/api/v1/products/1021.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/021/original/open-uri20180630-4-10sgmvz?1530390373,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1020,marienatie,Eyeliner,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/csm/Eyeliner-Group_300dpi_1024x1024_a2ac069c-f517-46bf-a215-8d31f5e948c91.jpg,https://www.purpicks.com/product/marie-natie-eyeliner/,https://purpicks.com/,An eyeliner that offers long lasting colour and a natural smooth finish. Both jojoba oil and meadowfoam oil have amazing moisturizing properties to help repair skin. Beeswax is known for its healing properties and will help to improve skin conditions.,,pencil,eyeliner,"['purpicks', 'CertClean']",2018-06-30T19:19:30.847Z,2018-09-02T22:52:06.484Z,http://makeup-api.herokuapp.com/api/v1/products/1020.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/020/original/open-uri20180630-4-y548d5?1530390373,"[{'hex_value': '#000000', 'colour_name': 'Black'}, {'hex_value': '#393230', 'colour_name': 'Brown'}, {'hex_value': '#353234', 'colour_name': 'Smoke'}]"
+1019,maia's mineral galaxy,Mineral Eye Brow Liner Charcoal Brown,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Maia%E2%80%99s-Mineral-Galaxy-Mineral-Eye-Brow-Liner-Charcoal-Brown.jpg,https://www.purpicks.com/product/maias-mineral-galaxy-mineral-eye-brow-liner-charcoal-brown/,https://purpicks.com/,,,pencil,eyebrow,"['EWG Verified', 'purpicks']",2018-06-30T19:19:30.782Z,2018-09-02T22:52:06.474Z,http://makeup-api.herokuapp.com/api/v1/products/1019.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/019/original/open-uri20180630-4-1h8zp2k?1530390372,"[{'hex_value': '#5B4439', 'colour_name': 'Charcoal Brown'}, {'hex_value': '#000000', 'colour_name': 'Black'}, {'hex_value': '#5E3C30', 'colour_name': 'Cocoa'}, {'hex_value': '#4D4D4B', 'colour_name': 'Dark Gray'}, {'hex_value': '#6E4E2A', 'colour_name': 'Hazel Brown'}]"
+1018,lotus cosmetics usa,Mascara,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-mascara-black.png,https://www.purpicks.com/product/lotus-cosmetics-usa-mascara/,https://purpicks.com/,"All natural mascara lengthens, thickens, and defines lashes. Created with coffee extract, rice proteins and sunflower oil to condition lashes. Smudge proof and water resistant for lashes that will all day. Made with natural and organic ingredients. In Black, and Brown.",,,mascara,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.735Z,2018-09-02T22:52:06.816Z,http://makeup-api.herokuapp.com/api/v1/products/1018.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/018/original/open-uri20180630-4-g58t74?1530390371,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1017,lotus cosmetics usa,Creme to Powder Blush,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-creme-to-powder-blush.png,https://www.purpicks.com/product/lotus-cosmetics-usa-creme-powder-blush/,https://purpicks.com/,"A cream to powder blush made with all natural ingredients that applies like a soft cream but finishes like a silky powder. Antioxidant-rich botanicals help moisturize the skin, while natural pigments provide long-lasting buildable color for a healthy, radiant glow. Made with natural and organic ingredients.",,cream,blush,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.678Z,2018-09-02T22:52:06.437Z,http://makeup-api.herokuapp.com/api/v1/products/1017.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/017/original/open-uri20180630-4-1r5paz3?1530390370,"[{'hex_value': '#C7766F', 'colour_name': 'Plum'}, {'hex_value': '#DF925C', 'colour_name': 'Apricot'}, {'hex_value': '#E89B7C', 'colour_name': 'Rose'}]"
+1016,lotus cosmetics usa,Eye Shadow Palette Mesmerize,0.0,$,USD,http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-mesmerize.png,https://www.purpicks.com/product/lotus-cosmetics-usa/,https://purpicks.com/,A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.,,palette,eyeshadow,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.618Z,2018-09-02T22:52:06.804Z,http://makeup-api.herokuapp.com/api/v1/products/1016.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/016/original/open-uri20180630-4-1mmjptw?1530390369,"[{'hex_value': '#FDF5EB', 'colour_name': 'Color 1'}, {'hex_value': '#F5CFBC', 'colour_name': 'Color 2'}, {'hex_value': '#B57F57', 'colour_name': 'Color 3'}, {'hex_value': '#A39796', 'colour_name': 'Color 4'}]"
+1015,lotus cosmetics usa,Eye Shadow Palette Deluxe,0.0,$,USD,http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-deluxe.png,https://www.purpicks.com/product/lotus-cosmetics-usa/,https://purpicks.com/,A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.,,palette,eyeshadow,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.555Z,2018-09-02T22:52:06.788Z,http://makeup-api.herokuapp.com/api/v1/products/1015.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/015/original/open-uri20180630-4-egfs2g?1530390369,"[{'hex_value': '#F4DACA', 'colour_name': 'Color 1'}, {'hex_value': '#C89281', 'colour_name': 'Color 2'}, {'hex_value': '#4F7386', 'colour_name': 'Color 3'}, {'hex_value': '#9D9484', 'colour_name': 'Color 4'}]"
+1014,lotus cosmetics usa,Eye Shadow Palette Smokey,0.0,$,USD,http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-smokey.png,https://www.purpicks.com/product/lotus-cosmetics-usa/,https://purpicks.com/,A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.,,palette,eyeshadow,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.490Z,2018-09-02T22:52:06.773Z,http://makeup-api.herokuapp.com/api/v1/products/1014.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/014/original/open-uri20180630-4-1y604g6?1530390368,"[{'hex_value': '#7F946E', 'colour_name': 'Color 1'}, {'hex_value': '#C8B38A', 'colour_name': 'Color 2'}, {'hex_value': '#668D9F', 'colour_name': 'Color 3'}, {'hex_value': '#36312C', 'colour_name': 'Color 4'}]"
+1013,lotus cosmetics usa,Eye Shadow Palette Seduction,0.0,$,USD,http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-seduction.png,https://www.purpicks.com/product/lotus-cosmetics-usa/,https://purpicks.com/,A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.,,palette,eyeshadow,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.422Z,2018-09-02T22:52:06.762Z,http://makeup-api.herokuapp.com/api/v1/products/1013.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/013/original/open-uri20180630-4-1x4t7kg?1530390367,"[{'hex_value': '#EBBC9D', 'colour_name': 'Color 1'}, {'hex_value': '#EFB1B0', 'colour_name': 'Color 2'}, {'hex_value': '#5E3A31', 'colour_name': 'Color 3'}, {'hex_value': '#72504A', 'colour_name': 'Color 4'}]"
+1012,lotus cosmetics usa,Eye Shadow Palette Cocoa,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-cocoa.png,https://www.purpicks.com/product/lotus-cosmetics-usa/,https://purpicks.com/,A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.,,palette,eyeshadow,"['purpicks', 'USDA Organic', 'Organic']",2018-06-30T19:19:30.347Z,2018-09-02T22:52:06.753Z,http://makeup-api.herokuapp.com/api/v1/products/1012.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/012/original/open-uri20180630-4-1rlpw5a?1530390367,"[{'hex_value': '#E7CBB7', 'colour_name': 'Color 1'}, {'hex_value': '#BE9794', 'colour_name': 'Color 2'}, {'hex_value': '#B5816B', 'colour_name': 'Color 3'}, {'hex_value': '#9E6D64', 'colour_name': 'Color 4'}]"
+1011,green people,Volumising Mascara,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/Green-People-Volumising-Mascara-Black.jpg,https://www.purpicks.com/product/green-people-volumising-mascara-black/,https://purpicks.com/,"Natural mineral pigments for intense natural black colour. Nourish roots and condition lashes with 98percent natural ingredients. Unique precision brush offers excellent lash definition Natural cellulose micro spheres give outstanding volume Vitamin E, Sunflower oil & Organic Beeswax",,,mascara,"['purpicks', 'EcoCert']",2018-06-30T19:19:30.303Z,2018-09-02T22:52:06.581Z,http://makeup-api.herokuapp.com/api/v1/products/1011.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/011/original/open-uri20180630-4-ojcehy?1530390366,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1010,coastal classic creation,Conch Lipstick,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/06/coastal-classic-creations-conch-lipstick.png,https://www.purpicks.com/product/coastal-classic-creations-conch-lipstick/,https://purpicks.com/,"Coastal Classic Creations Conch Lipstick is a flattering, stylish, rich winterberry color. This lipstick is paraben-free and vegan and contains sunflower oil which is rich in Vitamin E and which may protect against damage from the sun. To boost the product's effectiveness, we add sesame seed oil which contains Vitamins E, D, and B complex to provide moisture and neutralize free radicals. Companions well with Boysenberry Lip Crayon.",,lipstick,lipstick,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:30.184Z,2018-09-02T22:52:06.571Z,http://makeup-api.herokuapp.com/api/v1/products/1010.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/010/original/open-uri20180630-4-dywvay?1530390364,"[{'hex_value': '#822A42', 'colour_name': 'Raspberry'}, {'hex_value': '#8D394F', 'colour_name': 'Conch'}, {'hex_value': '#9F4353', 'colour_name': 'Crushed Rose'}, {'hex_value': '#A15F55', 'colour_name': 'Tender Toffee'}, {'hex_value': '#F09178', 'colour_name': 'Deja Vu'}, {'hex_value': '#B83037', 'colour_name': 'Sun Dial'}, {'hex_value': '#AD4C46', 'colour_name': 'Terra Gold'}, {'hex_value': '#A96B67', 'colour_name': 'Cowry'}, {'hex_value': '#B73849', 'colour_name': 'Tender'}, {'hex_value': '#D06C89', 'colour_name': 'Nautilus'}, {'hex_value': '#C49082', 'colour_name': 'Extremely Nude'}, {'hex_value': '#B78592', 'colour_name': 'Ginger Snap'}, {'hex_value': '#DD786A', 'colour_name': 'Coral Shell'}, {'hex_value': '#E5A4BF', 'colour_name': 'Twilight'}, {'hex_value': '#954D44', 'colour_name': 'Sand Dollar'}]"
+1009,c'est moi,Reflect Lip Gloss,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-reflect-lip-gloss-1.png,https://www.purpicks.com/product/reflect-lip-gloss/,https://purpicks.com/,"These essential lip gloss shades are enriched with a blend of natural and organic oils to deliver the perfect amount of sheer color and shine to lips. Enriched with a blend of natural and organic oils, this essential gloss delivers a wash of sheer color and promises shine—not stickiness. Made for Young Delicate Skin Types NO – Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested on Sensitive Skin, Hypoallergenic, Made with Natural & Organic Ingredients",,lip_gloss,lipstick,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:30.116Z,2018-09-02T22:52:06.562Z,http://makeup-api.herokuapp.com/api/v1/products/1009.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/009/original/open-uri20180630-4-xznfso?1530390363,"[{'hex_value': '#DF585A', 'colour_name': 'Rise'}, {'hex_value': '#E4CFCE', 'colour_name': 'Opulence'}, {'hex_value': '#D6474B', 'colour_name': 'Bliss'}]"
+1008,c'est moi,Muse Mascara,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-muse-mascara.png,https://www.purpicks.com/product/muse-mascara/,https://purpicks.com/,"Define, lengthen and nourish lashes with organic shea butter, grapeseed and jojoba oils. Lashes are coated gently and evenly without clumping, transferring or flaking. Long, lush lashes begin with this luxe mascara that is formulated with organic shea butter and oils of grape and jojoba seed to help nourish and condition as it lengthens and defines. Velvety and smooth, it coats lashes gently and evenly without clumping, transferring, or flaking. Made for Young Delicate Skin Types. NO – Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol",,,mascara,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:30.056Z,2018-09-02T22:52:06.553Z,http://makeup-api.herokuapp.com/api/v1/products/1008.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/008/original/open-uri20180630-4-bk6ign?1530390362,"[{'hex_value': '#000000', 'colour_name': 'Black'}]"
+1007,c'est moi,Luminary Lip Crayon,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-luminary-lip-crayon.png,https://www.purpicks.com/product/luminary-lip-crayon/,https://purpicks.com/,"These nourishing and creamy lip crayons come in 6 perfectly pigmented shades that go from subtle to statement. This easy-to-use lip crayon delivers velvety application and perfectly pigmented color, plus a nourishing formula with a creamy, consistent texture designed to make your lips appear soft and smooth. Apply sparingly for a subtle look, or generously to make a statement—either way, your lips will feel as beautiful as they look! Made for Young Delicate Skin Types NO – Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested On Sensitive Skin Hypoallergenic",,pencil,lip_liner,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:29.975Z,2018-09-02T22:52:06.545Z,http://makeup-api.herokuapp.com/api/v1/products/1007.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/007/original/open-uri20180630-4-1m2hvd7?1530390361,"[{'hex_value': '#B89093', 'colour_name': 'Fresh'}, {'hex_value': '#CB7579', 'colour_name': 'True'}, {'hex_value': '#EB5D92', 'colour_name': 'Fierce'}, {'hex_value': '#E74857', 'colour_name': 'Vivid'}, {'hex_value': '#CC5257', 'colour_name': 'Brave'}, {'hex_value': '#65373E', 'colour_name': 'Courage'}]"
+1006,c'est moi,Fearless Eyeliner,0.0,$,USD,https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-fearless-eyeliner-pencil.png,https://www.purpicks.com/product/fearless-eyeliner/,https://purpicks.com/,"Make eyes pop with this velvety smooth eyeliner that glides on effortlessly and precisely. Make your eyes pop with this sleek, easy-to-use eyeliner. Formulated with both jojoba seed oil and shea butter, its velvety smooth formula glides on effortlessly and precisely. To sharpen, place inside sharpener and turn the pencil gently to create a working tip. Made for Young Delicate Skin Types NO – Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested on Sensitive Skin Hypoallergenic Made with Natural Ingredients",,pencil,eyeliner,"['purpicks', 'EWG Verified', 'Hypoallergenic', 'No Talc']",2018-06-30T19:19:29.910Z,2018-09-02T22:52:06.537Z,http://makeup-api.herokuapp.com/api/v1/products/1006.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/006/original/open-uri20180630-4-u4c1jh?1530390360,"[{'hex_value': '#B8A89A', 'colour_name': 'Fearless'}]"
+1005,alva,Liquid Eye Shadow,9.95,$,USD,http://www.purpicks.com/wp-content/uploads/2018/06/Alva-Liquid-Eye-Shadow-1-Pale-Almond.png,http://www.purpicks.com/product/alva-liquid-eye-shadow-1-pale-almond/,https://purpicks.com/,"Our Liquid Edition Eye Shadows have been a real winner since their launch and are a real first of their kind in natural and organic make-up. Whether you're looking for a striking or glamorous look for night time, or something more subtle and natural for wearing during the day, there is a shade for everyone. They dry quickly, and depending on the depth of colour desired, can be blended in on application or left to dry before blending for a more vivid look. Layering is also possible, but however you choose to use these liquid eye shadows they won't gather in crow's feet or fine lines around the eyes. The inclusion of patented beta glucan also means they're perfect for sensitive eyes. Pale Almond is subtle, natural, and perfect for daytime wear, and compliments our Bronzed Hazel liquid eye shadow if a duo tone is desired.",,cream,eyeshadow,"['purpicks', 'Vegan', 'Organic']",2018-06-30T19:19:29.708Z,2018-09-02T22:52:06.744Z,http://makeup-api.herokuapp.com/api/v1/products/1005.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/005/original/open-uri20180630-4-1eau5wj?1530390360,"[{'hex_value': '#B8A89A', 'colour_name': 'Pale Almond'}]"
+1004,glossier,Stretch Concealer,22.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/001/631/portrait_normal/SC_Carousel_1_copy_2.jpg?1506948615,https://www.glossier.com/products/stretch-concealer,https://www.glossier.com,"A traditional concealer sets to a stiff, flat, dry finish—a dead giveaway that you’re wearing it. Ours is a new type of concealer with elastic micro waxes that move with your face instead of caking on top of it, and nourishing oils that give a dewy, glowing finish. The buildable formula covers everything from dark circles to redness and blemishes. In five shades painstakingly developed to enhance, brighten, and—most importantly—completely disappear into the widest range of skin tones.",,concealer,foundation,[],2017-12-27T03:11:01.369Z,2017-12-27T03:12:42.235Z,http://makeup-api.herokuapp.com/api/v1/products/1004.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/004/original/open-uri20171227-4-1wp63cr?1514344255,"[{'hex_value': '#96644A', 'colour_name': 'Deep'}, {'hex_value': '#4F3425', 'colour_name': 'Rich'}, {'hex_value': '#BC8E5A', 'colour_name': 'Dark'}, {'hex_value': '#E5BE93', 'colour_name': 'Medium'}, {'hex_value': '#F1DBC3', 'colour_name': 'Light'}]"
+1003,glossier,Cloud Paint,22.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/001/241/portrait_normal/CP_PDP_02.jpg?1488382023,https://www.glossier.com/products/cloud-paint,https://www.glossier.com,"With Cloud Paint, we set out to make blush the high point of your routine. The pillowy, gel-cream formula is designed to be the most user-friendly cheek color in existence. If you can finger paint, you can Cloud Paint—simply dab it onto cheeks wherever you please. It’s seamless, sheer, and buildable (i.e. it’s hard to accidentally apply too much). Inspired by gradient pink NYC sunsets, the shades are optimized to work across a wide range of skin tones for a healthy, flushed-from-within glow.",,cream,blush,[],2017-12-27T03:04:32.907Z,2017-12-27T03:05:09.354Z,http://makeup-api.herokuapp.com/api/v1/products/1003.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/003/original/open-uri20171227-4-13ivnwv?1514343870,"[{'hex_value': '#C78B7C', 'colour_name': 'Dusk'}, {'hex_value': '#F3D1E0', 'colour_name': 'Puff'}, {'hex_value': '#F1BB9E', 'colour_name': 'Beam'}, {'hex_value': '#B65F79', 'colour_name': 'Haze'}]"
+1002,glossier,Wowder,27.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/001/476/portrait_normal/carousel-1.jpg?1501534121,https://www.glossier.com/products/wowder,https://www.glossier.com,"It’s not powder, it’s Wowder—for non-dewy days. Wowder will: cut shine, blur the appearance of pores, set makeup, look like skin. Wowder won’t: leave a chalky film, cake into fine lines, flatten skin’s texture, or announce its presence in photographs (no camera flashback). In three sheer, glowy, adaptable shades...because no skin tone is HD-white. Pair with the angelically soft Wowder Brush for all-over and targeted application—perfect size, perfect shape, perfect density for the optimal matte-not-flat finish.",,powder,foundation,[],2017-12-27T02:50:48.250Z,2017-12-27T02:53:24.450Z,http://makeup-api.herokuapp.com/api/v1/products/1002.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/002/original/open-uri20171227-4-1ne7r73?1514343097,"[{'hex_value': '#EABC98', 'colour_name': 'Light/Medium'}, {'hex_value': '#9B674E', 'colour_name': 'Dark/Deep'}, {'hex_value': '#714831', 'colour_name': 'Rich'}]"
+1001,glossier,Haloscope,27.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/001/109/portrait_normal/Haloscope_01-compressor.jpg?1498613775,https://www.glossier.com/products/haloscope,https://www.glossier.com,"Skincare + makeup = Haloscope, the galaxy’s first dew effect highlighter. It’s a dual-delivery formula: the outer halo is infused with genuine crystal extracts for all-day enlightenment, with a solid oil core of vitamin-rich moisturizers for a hydrated, dewy finish. Expect an otherworldly sheen that’s never dry, never glittery. Comes in…",,highlighter,foundation,[],2017-12-27T02:44:12.059Z,2017-12-27T02:58:27.019Z,http://makeup-api.herokuapp.com/api/v1/products/1001.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/001/original/open-uri20171227-4-1das33x?1514342770,"[{'hex_value': '#D19668', 'colour_name': 'Topaz'}, {'hex_value': '#FBE9E1', 'colour_name': 'Quartz'}, {'hex_value': '#F0EDEB', 'colour_name': 'Moonstone'}]"
+1000,glossier,Perfecting Skin Tint,32.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/000/726/portrait_normal/PST_Carousel_02-compressor.jpg?1470088244,https://www.glossier.com/products/perfecting-skin-tint,https://www.glossier.com,"In the land between bare skin and makeup makeup exists the imperceptible wash of color that is our Perfecting Skin Tint. What does it do? Evens out discoloration and leaves your face looking toned, smooth, and dewy. The breathable, ultra thin formula auto-fits to skin, making application as simple as throwing on moisturizer. What won’t it do? Hide your freckles, spackle your pores, or erase any other evidence that you are, in fact, a real human being.",,,foundation,[],2017-12-27T02:34:21.781Z,2017-12-27T02:57:42.311Z,http://makeup-api.herokuapp.com/api/v1/products/1000.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/001/000/original/open-uri20171227-4-14arcgf?1514342096,"[{'hex_value': '#F1DBC3', 'colour_name': 'Light'}, {'hex_value': '#E5BE93', 'colour_name': 'Medium'}, {'hex_value': '#4F3425', 'colour_name': 'Rich'}, {'hex_value': '#BC8E5A', 'colour_name': 'Dark'}, {'hex_value': '#96644A', 'colour_name': 'Deep'}]"
+999,glossier,Generation G,20.0,$,USD,https://static-assets.glossier.com/production/spree/images/attachments/000/001/239/portrait_normal/GenG2.jpg?1487709747,https://www.glossier.com/products/generation-g,https://www.glossier.com,"Generation G is a new kind of lip color that gives the look and finish of just-blotted lipstick, without the blot. We’ve created a short list of the six most important shades, with dialed-down pigment loads for a casual look: Zip, Leo, Crush, and Jam, along with the super subtle Cake and Like, which give some oomph to lighter lip tones. They’re lipsticks that adapt to you, not the other way around, so they'll appear a bit different on everyone as your natural lip color shows through. The effect? Diffused, matte goodness—just swipe it on.",,,lipstick,[],2017-12-27T02:21:55.363Z,2017-12-27T02:55:18.719Z,http://makeup-api.herokuapp.com/api/v1/products/999.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/999/original/open-uri20171227-4-2ul0s6?1514341420,"[{'hex_value': '#F4E1D7', 'colour_name': 'Cake'}, {'hex_value': '#E5C2CF', 'colour_name': 'Like'}, {'hex_value': '#CB6382', 'colour_name': 'Crush'}, {'hex_value': '#974A72', 'colour_name': 'Jam'}, {'hex_value': '#A46C58', 'colour_name': 'Leo'}, {'hex_value': '#DE6262', 'colour_name': 'Zip'}]"
+998,nyx,Fly With Me Mascara,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd5e25f68/ProductImages/Eyes/Fly_With_Me_Mascara/800897141431_flywithmemascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/fly-with-me-mascara/NYX_018.html?cgid=mascara,https://www.nyxcosmetics.com,Your lashes will reach new heights with our Fly With Me Mascara. Lashes appear more dramatic making average lashes look super-long and ultra dark. Pros adore the intense yet lightweight coverage and how the unique volumizing wand boosts even the wimpiest of the eyelashes.,,,mascara,[],2017-12-24T02:33:07.960Z,2017-12-24T02:33:08.735Z,http://makeup-api.herokuapp.com/api/v1/products/998.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/998/original/data?1514082787,[]
+997,nyx,Propel My Eyes Mascara,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8068dbc4/ProductImages/Eyes/Propel_My_Eyes_Mascara/propelmyeyesmascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/propel-my-eyes-mascara/NYX_020.html?cgid=mascara,https://www.nyxcosmetics.com,Get ready for aerodynamic lashes! The brush boasts a four-way pinwheel design that lifts lashes up and coats them in a conditioning formula enriched with Pro Vitamin B5 D-Panthenol and Green Tea Extract. Take it for a spin and enjoy!,,,mascara,[],2017-12-24T02:33:07.488Z,2017-12-24T02:33:07.828Z,http://makeup-api.herokuapp.com/api/v1/products/997.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/997/original/data?1514082787,[]
+996,nyx,Proof It! Waterproof Mascara Top Coat,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw31cb2063/ProductImages/Eyes/Proof_It_Waterproof_Mascara_Top_Coat/proofitwaterproofmascaratopcoat_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/proof-it-waterproof-mascara-top-coat/NYX_179.html?cgid=mascara,https://www.nyxcosmetics.com,With just two swipes our lash top coat transforms your favorite mascara from being conventional to waterproof! Our formula helps prevent clumping and leaves lashes looking gorgeous.,,,mascara,[],2017-12-24T02:33:06.827Z,2017-12-24T02:33:07.353Z,http://makeup-api.herokuapp.com/api/v1/products/996.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/996/original/data?1514082786,[]
+995,nyx,Big & Loud Lash Primer,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa4949d3a/ProductImages/Eyes/Big_And_Loud_Lash_Primer/bigandloudlashprimer_alt1.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/big-and-loud-lash-primer/NYX_166.html?cgid=mascara,https://www.nyxcosmetics.com,Give your lashes a boost with our Big & Loud Lash Primer. It works hand in hand with your favorite NYX Professional Makeup mascara to enhance the length and volume of lashes.,,,mascara,[],2017-12-24T02:33:06.023Z,2017-12-24T02:33:06.430Z,http://makeup-api.herokuapp.com/api/v1/products/995.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/995/original/data?1514082785,[]
+994,nyx,Double Stacked Mascara,15.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw255fbdae/ProductImages/2016/Eyes/Double_Stacked_Mascara/doublestackedmascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/double-stacked-mascara/NYX_341.html?cgid=mascara,https://www.nyxcosmetics.com,,,,mascara,[],2017-12-24T02:33:05.545Z,2017-12-24T02:33:05.848Z,http://makeup-api.herokuapp.com/api/v1/products/994.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/994/original/open-uri20171224-4-1shcfum?1514082785,[]
+993,nyx,Doll Eye Mascara,9.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2e036256/ProductImages/Eyes/Doll_Eye_Mascara/800897123543_dolleyemascara_longlash_black_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/doll-eye-mascara/NYX_017.html?cgid=mascara,https://www.nyxcosmetics.com,"Hello, dollface! For irresistibly fluttery eyelashes, try this mascara on for size. Doll Eye Mascara uses a unique blend of natural oil and nylon fibers to extend lashes to almost faux proportions. Choose from our Doll Eye Mascara in Long Lash, Volume or Waterproof.",,,mascara,[],2017-12-24T02:33:04.665Z,2017-12-24T02:33:05.096Z,http://makeup-api.herokuapp.com/api/v1/products/993.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/993/original/data?1514082784,"[{'hex_value': '#141414', 'colour_name': 'Waterproof - Black'}]"
+992,nyx,The Skinny Mascara,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcb91e11f/ProductImages/Eyes/The_Skinny_Mascara/theskinnymascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/the-skinny-mascara/NYX_183.html?cgid=mascara,https://www.nyxcosmetics.com,"Our ultra-skinny mascara brush is perfect for coating hard to reach lashes from root to tip—even along the bottom lash line! Finally the smallest, thinnest lashes can get extra special attention too. The water resistant formula and micro brush work together to create the appearance of long beautifully defined lashes.",,,mascara,[],2017-12-24T02:33:02.793Z,2017-12-24T02:33:04.446Z,http://makeup-api.herokuapp.com/api/v1/products/992.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/992/original/data?1514082782,[]
+991,nyx,Worth the Hype Volumizing & Lengthening Mascara,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb654afff/ProductImages/2018/Eyes/Worth_The_Hype_Volumizing_Mascara/800897140250_worththehypevolumizingmascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/worth-the-hype-volumizing-lengthening-mascara/NYX_590.html?cgid=mascara,https://www.nyxcosmetics.com,"Take our word for it: if you want your lashes to look darker, fuller and lethally gorgeous all day long, then our new Worth the Hype Volumizing & Lengthening Mascara is your jam. A breeze to apply and comfortable to wear, this buildable formula actually does what it promises, making it “worth the hype” in every which way. It also features a brush that tapers at the tip, so you can brush, build, and lengthen even the littlest baby lashes at the inner corners of your eyes.",,,mascara,[],2017-12-24T02:33:02.251Z,2017-12-24T02:33:02.648Z,http://makeup-api.herokuapp.com/api/v1/products/991.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/991/original/data?1514082782,[]
+990,nyx,Boudoir Mascara Collection,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda9f6cec/ProductImages/Eyes/Boudoir_Mascara_Collection/boudoirmascaracollection_main.jpg.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/boudoir-mascara-collection/NYX_060.html?cgid=mascara,https://www.nyxcosmetics.com,"Every powder room should have our luxurious Boudoir Mascara Collection available in 7 elite formulas. Whether you want to darken, amp up the volume, or lengthen your lashes - we have a mascara that meets all your needs.",,,mascara,[],2017-12-24T02:33:00.623Z,2017-12-24T02:33:01.097Z,http://makeup-api.herokuapp.com/api/v1/products/990.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/990/original/open-uri20171224-4-1xdrjhl?1514082780,"[{'hex_value': '#131315', 'colour_name': 'Le Frou Frou'}, {'hex_value': '#232323', 'colour_name': 'Pin-Up Tease'}, {'hex_value': '#0D0D0D', 'colour_name': 'Provocateur'}, {'hex_value': '#141414', 'colour_name': 'Faux Lashes'}, {'hex_value': '#151515', 'colour_name': 'Le Chick Flick'}, {'hex_value': '#2B2B2B', 'colour_name': 'La Amoureux'}, {'hex_value': '#121212', 'colour_name': 'Za Za Zu'}]"
+989,nyx,Color Mascara,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8044f7e7/ProductImages/Eyes/Color_Mascara/colormascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/color-mascara/NYX_124.html?cgid=mascara,https://www.nyxcosmetics.com,"Think beyond the ordinary with these fun and vibrant new mascara options from NYX Professional Makeup. Packed full of pigments and delivering on the promise of intense color payoff, everyone will notice your fabulous eye lash color. Go for it - we dare you to try all eight shades!",,,mascara,[],2017-12-24T02:32:59.193Z,2017-12-24T02:32:59.610Z,http://makeup-api.herokuapp.com/api/v1/products/989.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/989/original/open-uri20171224-4-1gh72x0?1514082779,"[{'hex_value': '#FFFAFF', 'colour_name': 'Purple'}, {'hex_value': '#FBFCFF', 'colour_name': 'Blue'}, {'hex_value': '#FFF9F3', 'colour_name': 'Brown'}, {'hex_value': '#FEFBF6', 'colour_name': 'Perfect Pear'}, {'hex_value': '#FBFAF6', 'colour_name': 'Coral Reef'}, {'hex_value': '#F4FAF6', 'colour_name': 'Mint Julep'}, {'hex_value': '#F7F5F8', 'colour_name': 'Forget Me Not'}, {'hex_value': '#F5F3F4', 'colour_name': 'Pink Petals'}]"
+988,nyx,Super Luscious Mascara,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw97d7c9f2/ProductImages/Eyes/Super_Luscious_Mascara/superlusciousmascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/super-luscious-mascara/NYX_122.html?cgid=mascara,https://www.nyxcosmetics.com,"Everyone will notice your gorgeous lashes with our Super Luscious Mascara Collection. Featuring seven different brushes, each fragrance-free mascara has something unique to offer. (Plus, they’re formulated with keratins, vitamins and naturally-derived waxes to nourish lashes!) There’s a Super Luscious Mascara for your essential lash looks.",,,mascara,[],2017-12-24T02:32:57.547Z,2017-12-24T02:32:57.912Z,http://makeup-api.herokuapp.com/api/v1/products/988.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/988/original/open-uri20171224-4-1lbpgue?1514082777,"[{'hex_value': '#252525', 'colour_name': 'XXL'}, {'hex_value': '#0E0E0E', 'colour_name': 'Badunkadunk'}, {'hex_value': 'gray7', 'colour_name': 'Voluptuous'}, {'hex_value': '#373737', 'colour_name': 'Full Figured'}, {'hex_value': '#191919', 'colour_name': 'Curvaceous'}, {'hex_value': '#101010', 'colour_name': 'More To Love'}]"
+987,nyx,Eyebrow Marker,9.75,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwe10bfffa/ProductImages/Eyes/Eyebrow_Marker/eyebrowmarker_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-marker/NYX_034.html?cgid=brows,https://www.nyxcosmetics.com,Sculpt fill in and enhance your natural eyebrows with our felt-tip Eyebrow Marker. The color resists smearing and smudging and wears all day long.,,,eyebrow,[],2017-12-24T02:32:56.532Z,2017-12-24T02:32:56.924Z,http://makeup-api.herokuapp.com/api/v1/products/987.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/987/original/data?1514082776,"[{'hex_value': '#8B6534', 'colour_name': 'Medium'}, {'hex_value': '#4D2712', 'colour_name': 'Deep'}]"
+986,nyx,Eyebrow Kit With Stencil,15.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2636bb00/ProductImages/Eyes/Eyebrow_Kit_with_Stencils/800897142957_eyebrowkitstencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-kit-with-stencil/NYX_033.html?cgid=brows,https://www.nyxcosmetics.com,Our all-in-one eyebrow kit has everything you need to keep your brows looking on point. The kit includes 4 universally flattering shades for all brow tones a slanted eyebrow brush an eyebrow comb and 3 different stencils to help you get the perfect shape for your face. Now you can fill define and shape your brows like never before!,,,eyebrow,[],2017-12-24T02:32:56.029Z,2017-12-24T02:32:56.324Z,http://makeup-api.herokuapp.com/api/v1/products/986.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/986/original/open-uri20171224-4-14z5x4y?1514082775,[]
+985,nyx,Eyebrow Push-Up Bra,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwadba3ae6/ProductImages/Eyes/Eyebrow_Push_Up_Bra/eyebrowpushupbra_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-push-up-bra/NYX_030.html?cgid=brows,https://www.nyxcosmetics.com,Play up your natural assets with this dual-sided pencil that delivers sensual eyebrows in just a few minutes. Use the universally flattering brow pencil to draw and fill in your arches and the highlighting end to lift and brighten. Like the LBD of pencils the effect is captivating and undeniably sexy.,,,eyebrow,[],2017-12-24T02:32:55.489Z,2017-12-24T02:32:55.884Z,http://makeup-api.herokuapp.com/api/v1/products/985.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/985/original/data?1514082775,[]
+984,nyx,3-Dimensional Brow Marker,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1e63b16f/ProductImages/2017/Eyes/3Dimensional_Brow_Marker/3dimensionalbrowmarker_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/3-dimensional-brow-marker/NYX_499.html?cgid=brows,https://www.nyxcosmetics.com,,,,eyebrow,[],2017-12-24T02:32:54.098Z,2017-12-24T02:32:54.491Z,http://makeup-api.herokuapp.com/api/v1/products/984.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/984/original/open-uri20171224-4-1uh3nw7?1514082773,"[{'hex_value': '#B78F69', 'colour_name': 'Blonde'}, {'hex_value': '#99663A', 'colour_name': 'Auburn'}, {'hex_value': '#56382D', 'colour_name': 'Chocolate Brown'}, {'hex_value': '#403028', 'colour_name': 'Charcoal'}, {'hex_value': '#765948', 'colour_name': 'Brunette'}, {'hex_value': '#8A6554', 'colour_name': 'Soft Brown'}]"
+983,nyx,Eyebrow Shaper,8.75,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7bb4049d/ProductImages/Eyes/Eyebrow_Shaper/eyebrowshaper_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-shaper/NYX_031.html?cgid=brows,https://www.nyxcosmetics.com,Tame unruly eyebrows with this ingenious wax pencil. The blend of waxes is enriched with Vitamin E and leaves arches in tip-top condition and impeccable shape with just a few strokes.,,,eyebrow,[],2017-12-24T02:32:53.558Z,2017-12-24T02:32:53.894Z,http://makeup-api.herokuapp.com/api/v1/products/983.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/983/original/data?1514082773,[]
+982,nyx,Build 'Em Up Brow Powder,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw837424ec/ProductImages/2017/Eyes/Build_Em_Up_Brow_Powder/buildemupbrowpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/build-em-up-brow-powder/NYX_446.html?cgid=brows,https://www.nyxcosmetics.com,,,,eyebrow,[],2017-12-24T02:32:52.257Z,2017-12-24T02:32:52.646Z,http://makeup-api.herokuapp.com/api/v1/products/982.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/982/original/open-uri20171224-4-15afdg3?1514082772,"[{'hex_value': '#7B5C3F', 'colour_name': 'Blonde'}, {'hex_value': '#5E4C3E', 'colour_name': 'Taupe'}, {'hex_value': '#4C392B', 'colour_name': 'Soft Brown'}, {'hex_value': '#4F2F22', 'colour_name': 'Auburn'}, {'hex_value': '#151419', 'colour_name': 'Brunette'}, {'hex_value': '#0C160E', 'colour_name': 'Espresso'}, {'hex_value': '#0B0D0A', 'colour_name': 'Ash Brown'}, {'hex_value': 'gray3', 'colour_name': 'Black'}]"
+981,nyx,3-in-1 Brow Pencil,13.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw840d556c/ProductImages/2017/Eyes/3_in_1_Brow_Pencil/3in1browpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/3-in-1-brow-pencil/NYX_407.html?cgid=brows,https://www.nyxcosmetics.com,"One unbeatable brow beautifier, three go-to goodies. Our versatile 3-in-1 Brow includes everything you need to build exquisite arches. A retractable pencil, Powder, and brow mascara, available in 10 pigmented shades. Achieve eyebrows that are as natural-looking or bold as you desire by applying these essentials alone or together. To combine ’em all, simply outline with the pencil and fill in with the Powder. Complete the look by setting your brows with a swipe of mascara.",,,eyebrow,[],2017-12-24T02:32:50.424Z,2017-12-24T02:32:50.840Z,http://makeup-api.herokuapp.com/api/v1/products/981.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/981/original/open-uri20171224-4-1i8mko9?1514082770,"[{'hex_value': '#FAFBF6', 'colour_name': 'Blonde'}, {'hex_value': '#FFFEFD', 'colour_name': 'Taupe'}, {'hex_value': '#FCFFFF', 'colour_name': 'Auburn'}, {'hex_value': '#FFFEFB', 'colour_name': 'Brunette'}, {'hex_value': '#FFFEFF', 'colour_name': 'Espresso'}, {'hex_value': '#FFFFFD', 'colour_name': 'Ash Brown'}, {'hex_value': 'white', 'colour_name': 'Black'}]"
+980,nyx,Proof It! Waterproof Eyebrow Primer,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa61027e6/ProductImages/Eyes/Proof_It_Waterproof_Eyebrow_Primer/proofitwaterproofeyebrowprimer_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/proof-it-waterproof-eyebrow-primer/NYX_153.html?cgid=brows,https://www.nyxcosmetics.com,"Smooth and conditioning our clear eyebrow gel sets your brows in place all day, rain or shine. Apply over brows before shaping with powder to keep them in control. Our formulation was made specially formulated for thin sparse brows.",,,eyebrow,[],2017-12-24T02:32:49.631Z,2017-12-24T02:32:50.126Z,http://makeup-api.herokuapp.com/api/v1/products/980.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/980/original/data?1514082769,[]
+979,nyx,Eyebrow Powder Pencil,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw85601149/ProductImages/2017/Eyes/Eyebrow_Powder_Pencil/eyebrowpowderpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-powder-pencil/NYX_408.html?cgid=brows,https://www.nyxcosmetics.com,"Close your eyes and picture the perfect brows. Are they defined, yet delicate? Create the brows of this daydream with the brand new Eyebrow Powder Pencil. Our unique pencil’s superfine texture provides a powdery-soft, matte finish. Put the finishing touches on your arches by using the included spoolie brush to smooth out the rich color.",,,eyebrow,[],2017-12-24T02:32:46.856Z,2017-12-24T02:32:47.732Z,http://makeup-api.herokuapp.com/api/v1/products/979.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/979/original/open-uri20171224-4-1wo69r1?1514082766,"[{'hex_value': '#FFF0E2', 'colour_name': 'Blonde'}, {'hex_value': '#F7EFE4', 'colour_name': 'Taupe'}, {'hex_value': '#F5EBE2', 'colour_name': 'Soft Brown'}, {'hex_value': '#FBEFE3', 'colour_name': 'Caramel'}, {'hex_value': '#FBEBDB', 'colour_name': 'Auburn'}, {'hex_value': '#F6EDE4', 'colour_name': 'Brunette'}, {'hex_value': '#F6EBE5', 'colour_name': 'Espresso'}, {'hex_value': '#F7EDE4', 'colour_name': 'Ash Brown'}, {'hex_value': '#E1E1E1', 'colour_name': 'Black'}]"
+978,nyx,Precision Brow Pencil,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9929b8e6/ProductImages/2017/Eyes/Precision_Brow_Pencil/precisionbrowpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/precision-brow-pencil/NYX_450.html?cgid=brows,https://www.nyxcosmetics.com,,,,eyebrow,[],2017-12-24T02:32:44.747Z,2017-12-24T02:32:45.190Z,http://makeup-api.herokuapp.com/api/v1/products/978.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/978/original/open-uri20171224-4-odtm98?1514082764,"[{'hex_value': '#C6B7B0', 'colour_name': 'Blonde'}, {'hex_value': '#C2B4A9', 'colour_name': 'Taupe'}, {'hex_value': '#BDB5AA', 'colour_name': 'Soft Brown'}, {'hex_value': '#BBAEA5', 'colour_name': 'Ash Brown'}, {'hex_value': '#A09488', 'colour_name': 'Espresso'}, {'hex_value': '#8D8988', 'colour_name': 'Black'}, {'hex_value': '#A79B9D', 'colour_name': 'Charcoal'}, {'hex_value': '#D5A8AB', 'colour_name': 'Auburn'}]"
+977,nyx,Sculpt & Highlight Brow Contour,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2d356326/ProductImages/2016/Eyes/Sculpt_And_Highlight_Brow_Contour/sculptandhighlightbrowcontour_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/sculpt-and-highlight-brow-contour/NYX_322.html?cgid=brows,https://www.nyxcosmetics.com,"Nothing pulls together a look quite like beautifully defined brows. Enter the sleek new Sculpt & Highlight Brow Contour, our 2-in-1 pencil that defines, fills and uses shadow and light to lift the brows to eyebrow perfection.",,,eyebrow,[],2017-12-24T02:32:42.715Z,2017-12-24T02:32:43.114Z,http://makeup-api.herokuapp.com/api/v1/products/977.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/977/original/open-uri20171224-4-ylht42?1514082762,"[{'hex_value': '#FFF6E3', 'colour_name': 'Blonde/Ivory'}, {'hex_value': '#FFF8E6', 'colour_name': 'Taupe/Vanilla'}, {'hex_value': '#FFF3E9', 'colour_name': 'Soft Brown/Rose'}, {'hex_value': '#FFF5E8', 'colour_name': 'Auburn/Soft Pink'}, {'hex_value': '#FFF2DF', 'colour_name': 'Brunette/Cream'}, {'hex_value': '#FFF5E2', 'colour_name': 'Espresso/Light Beige'}, {'hex_value': '#FEF1DE', 'colour_name': 'Ash Brown/Medium Beige'}, {'hex_value': '#FFF1E7', 'colour_name': 'Black/Golden Peach'}]"
+976,nyx,Control Freak Eyebrow Gel,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwdf8d06a2/ProductImages/Eyes/Control_Freak_Eyebrow_Gel/controlfreakeyebrowgel_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/control-freak-eyebrow-gel/NYX_123.html?cgid=brows,https://www.nyxcosmetics.com,"Out of control brows have you flustered? NYX Professional Makeup's Control Freak Brow Gel offers a new way to tame them fast. The clear formula works well over powder or pencil to seal the deal and make a statement with your brows that you will be proud of. The unique non-sticky formula is comfortable to wear all day and can also be used as a clear mascara that defines, separates and enhances the natural curl of lashes.",,,eyebrow,[],2017-12-24T02:32:42.032Z,2017-12-24T02:32:42.514Z,http://makeup-api.herokuapp.com/api/v1/products/976.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/976/original/data?1514082761,[]
+975,nyx,Eyebrow Cake Powder,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0e17c958/ProductImages/Eyes/Eyebrow_Cake_Powder/800897123864_eyebrowcakepowder_blackgrey_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-cake-powder/NYX_032.html?cgid=brows,https://www.nyxcosmetics.com,Our recipe for cooking up exquisite eyebrows includes wax tools and a pair of complementary powders which can be customized to create the ideal shade. Each Eyebrow Cake Powder kit includes a slanted brush and a spoolie to shape style and tame eyebrows.,,,eyebrow,[],2017-12-24T02:32:40.217Z,2017-12-24T02:32:40.712Z,http://makeup-api.herokuapp.com/api/v1/products/975.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/975/original/open-uri20171224-4-1c3376k?1514082760,"[{'hex_value': '#1C150F', 'colour_name': 'Black/ Grey'}, {'hex_value': '#29170B', 'colour_name': 'Dark Brown/ Brown'}, {'hex_value': '#412D15', 'colour_name': 'Taupe / Ash'}, {'hex_value': '#471C09', 'colour_name': 'Auburn / Red'}, {'hex_value': '#442914', 'colour_name': 'Brunette'}, {'hex_value': '#3C260F', 'colour_name': 'Blonde'}]"
+974,nyx,Tinted Brow Mascara,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw4093ace1/ProductImages/Eyes/Tinted_Brow_Mascara/tintedbrowmascara_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/tinted-brow-mascara/NYX_169.html?cgid=brows,https://www.nyxcosmetics.com,"No shame in wishing for a strong beautiful brow! Our foolproof tinted brow mascara helps your dream come true. It sets, tames and tints brows for natural-looking wear. Our dependable formula leaves brows feeling soft while maintaining complete control.",,,eyebrow,[],2017-12-24T02:32:38.324Z,2017-12-24T02:32:39.337Z,http://makeup-api.herokuapp.com/api/v1/products/974.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/974/original/open-uri20171224-4-10ft6nl?1514082758,"[{'hex_value': '#D4B8A0', 'colour_name': 'Blonde'}, {'hex_value': '#A88774', 'colour_name': 'Chocolate'}, {'hex_value': '#AF937E', 'colour_name': 'Brunette'}, {'hex_value': '#7C665B', 'colour_name': 'Espresso'}, {'hex_value': '#64574F', 'colour_name': 'Black'}]"
+973,nyx,Auto Eyebrow Pencil,4.75,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2a31f0af/ProductImages/Eyes/Auto_Eyebrow_Pencil/autoeyebrowpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/auto-eyebrow-pencil/NYX_029.html?cgid=brows,https://www.nyxcosmetics.com,"Create flawless arches with this eyebrow pencil, a blend of vegetable coconut and soy bean oil that guarantees a fluid application and sensational color. Use the built-in brush to blend color and style your eyebrows to perfection.",,,eyebrow,[],2017-12-24T02:32:34.961Z,2017-12-24T02:32:35.432Z,http://makeup-api.herokuapp.com/api/v1/products/973.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/973/original/open-uri20171224-4-13idccu?1514082754,"[{'hex_value': '#B8957F', 'colour_name': 'Light Brown'}, {'hex_value': '#B3907C', 'colour_name': 'Auburn'}, {'hex_value': '#9E8370', 'colour_name': 'Medium Brown'}, {'hex_value': '#8D725F', 'colour_name': 'Brown'}, {'hex_value': '#826A5E', 'colour_name': 'Dark Brown'}, {'hex_value': '#AD9382', 'colour_name': 'Taupe'}, {'hex_value': '#909090', 'colour_name': 'Charcoal'}, {'hex_value': '#3A3A3A', 'colour_name': 'Black'}]"
+972,nyx,Eyebrow Gel,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9ad6ed1a/ProductImages/Eyes/Eyebrow_Gel/800897831585_eyebrowgel_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/eyebrow-gel/NYX_159.html?cgid=brows,https://www.nyxcosmetics.com,"Keep your misbehaving brows in place with our discreet and easy-to-use brow gel! The lightweight waterproof formula creates thicker, fuller, natural-looking brows and comes in five versatile shades.",,,eyebrow,[],2017-12-24T02:32:33.622Z,2017-12-24T02:32:34.056Z,http://makeup-api.herokuapp.com/api/v1/products/972.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/972/original/open-uri20171224-4-10rp9z1?1514082753,"[{'hex_value': '#BD9E81', 'colour_name': 'Blonde'}, {'hex_value': '#805741', 'colour_name': 'Chocolate'}, {'hex_value': '#755B44', 'colour_name': 'Brunette'}, {'hex_value': '#5E3F2B', 'colour_name': 'Espresso'}, {'hex_value': '#2E251C', 'colour_name': 'Black'}]"
+971,nyx,Tame & Frame Brow Pomade,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw3f349e2f/ProductImages/Eyes/Tame_And_Frame_Brow_Pomade/tameandframebrowpomade_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/tame-and-frame-brow-pomade/NYX_173.html?cgid=brows,https://www.nyxcosmetics.com,"Give extra life to your brows with our easy-to-use brow pomade that glides onto skin and hair. Our smudge-proof, waterproof formula comes in five shades to coax brows into prime shape. Stand up to humidity in style!",,,eyebrow,[],2017-12-24T02:32:32.312Z,2017-12-24T02:32:32.796Z,http://makeup-api.herokuapp.com/api/v1/products/971.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/971/original/open-uri20171224-4-18gctvx?1514082752,"[{'hex_value': '#9E8469', 'colour_name': 'Blonde'}, {'hex_value': '#855F4C', 'colour_name': 'Chocolate'}, {'hex_value': '#7F634E', 'colour_name': 'Brunette'}, {'hex_value': '#5B4337', 'colour_name': 'Espresso'}, {'hex_value': '#403730', 'colour_name': 'Black'}]"
+970,nyx,Micro Brow Pencil,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw14cbffac/ProductImages/Eyes/Micro_Brow_Pencil/microbrowpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/micro-brow-pencil/NYX_181.html?cgid=brows,https://www.nyxcosmetics.com,Build full beautiful brows with our ultra-thin Micro Brow Pencil. So precise it coats even the finest hairs with color for a natural-looking finish.,,,eyebrow,[],2017-12-24T02:32:30.884Z,2017-12-24T02:32:31.284Z,http://makeup-api.herokuapp.com/api/v1/products/970.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/970/original/open-uri20171224-4-1jdhvhr?1514082750,"[{'hex_value': '#AD927F', 'colour_name': 'Taupe'}, {'hex_value': '#BCA28B', 'colour_name': 'Blonde'}, {'hex_value': '#A1856D', 'colour_name': 'Auburn'}, {'hex_value': '#8C7160', 'colour_name': 'Chocolate'}, {'hex_value': '#827262', 'colour_name': 'Ash Brown'}, {'hex_value': '#756158', 'colour_name': 'Brunette'}, {'hex_value': '#584B42', 'colour_name': 'Espresso'}, {'hex_value': '#2C2C2C', 'colour_name': 'Black'}]"
+969,nyx,Holographic Halo Cream Eyeliner,11.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwc135311a/ProductImages/2018/Eyes/Holographic_Halo_Cream_Liner/holographichalocreamliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/holographic-halo-cream-eyeliner/NYX_582.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Line your lids in holographic color with our Holographic Halo Cream Eyeliners! Inspired by all-things-unicorn, this unique formula uses ultra-fine, pigmented pearls to create a sleek, shimmering line, or it can be blended out to an intense, holographic eyeshadow. Available in five of the prettiest pastels you’ve ever seen.",,cream,eyeliner,[],2017-12-24T02:32:29.656Z,2017-12-24T02:32:30.086Z,http://makeup-api.herokuapp.com/api/v1/products/969.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/969/original/open-uri20171224-4-59b48d?1514082749,"[{'hex_value': '#E29F8C', 'colour_name': 'Palisade Paradise'}, {'hex_value': '#6CB5AA', 'colour_name': 'Killing It'}, {'hex_value': '#D4AAC0', 'colour_name': 'Cotton Candy'}, {'hex_value': '#DDD5D3', 'colour_name': 'Frost'}, {'hex_value': '#A3ABB6', 'colour_name': 'Crystal Vault'}]"
+968,nyx,Cake That! Powder Eyeliner,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb7f857fa/ProductImages/2017/Eyes/Cake_That_Powder_Eyeliner/cakethatpowdereyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/cake-that-powder-eyeliner/NYX_448.html?cgid=eyeliner,https://www.nyxcosmetics.com,,,cream,eyeliner,[],2017-12-24T02:32:29.030Z,2017-12-24T02:32:29.408Z,http://makeup-api.herokuapp.com/api/v1/products/968.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/968/original/open-uri20171224-4-159mdg6?1514082748,[]
+967,nyx,Epic Black Mousse Liner,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1f473566/ProductImages/Eyes/Epic_Black_Mousse_Liner/800897832162_epicblackmousseliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/epic-black-mousse-liner/NYX_158.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Amazingly fluffy and lightweight, our innovative Epic Black Mousse Liner glides on oh-so-soft and smooth! This waterproof eyeliner dries to a pigmented matte finish that looks totally EPIC.",,cream,eyeliner,[],2017-12-24T02:32:28.161Z,2017-12-24T02:32:28.770Z,http://makeup-api.herokuapp.com/api/v1/products/967.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/967/original/data?1514082747,[]
+966,nyx,Cosmic Gel Liner,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw62a7d3b0/ProductImages/2016/Eyes/Cosmic_Gel_Liner/800897016364_cosmicgelliner_interstellar_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/cosmic-gel-liner/NYX_335.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Swap your standard wing for eyes that twinkle like stars! A beam of Cosmic Gel Eye Liner makes an out of this world statement through an intense burst of sparkle and bold color. Available in three shades packed with interstellar shimmer, this formula glides on silky-smooth and is super easy to blend. Like our fan fave Gel Liner and Smudger, these rich colors stay put for strong galactic glam.",,gel,eyeliner,[],2017-12-24T02:32:26.896Z,2017-12-24T02:32:27.267Z,http://makeup-api.herokuapp.com/api/v1/products/966.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/966/original/open-uri20171224-4-kpqxp4?1514082746,"[{'hex_value': '#D64262', 'colour_name': 'Interstellar'}, {'hex_value': '#06ADE4', 'colour_name': 'Supernatural'}, {'hex_value': '#262B51', 'colour_name': 'Infinite Star'}]"
+965,nyx,Gel Liner And Smudger,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7fa3d736/ProductImages/Eyes/Gel_Liner_And_Smudger/gellinerandsmudger_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/gel-liner-and-smudger/NYX_080.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Our Gel Liner & Smudger delivers bold color that won’t quit. Whether you’re after a perfectly defined line or a smokey eye, these silky shades blend easily and don’t crease or fade. This pigmented formula is now available in two brand new shades.",,gel,eyeliner,[],2017-12-24T02:32:25.619Z,2017-12-24T02:32:25.974Z,http://makeup-api.herokuapp.com/api/v1/products/965.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/965/original/open-uri20171224-4-8mqi9p?1514082745,"[{'hex_value': '#E8E7E3', 'colour_name': 'Emma'}, {'hex_value': '#444444', 'colour_name': 'Betty'}, {'hex_value': '#725C47', 'colour_name': 'Charlotte'}, {'hex_value': '#03C7B9', 'colour_name': 'Danielle'}, {'hex_value': '#496CBE', 'colour_name': 'Samantha'}, {'hex_value': '#512F16', 'colour_name': 'Scarlette'}, {'hex_value': '#583668', 'colour_name': 'Annie'}]"
+964,nyx,Metallic Eyeliner,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1a50507a/ProductImages/2018/Eyes/Metallic_Eyeliner/metalliceyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/metallic-eyeliner/NYX_602.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Spend some quality glam time with our Metallic Eyeliners. From copper to rose gold and silver, this creamy-soft pencil is available in six dazzling shades. Each pigment rich eyeliner slides on effortlessly and loads your lids with a metallic-matte finish. Down to the last swipe? Sharpen your go-to hue to uncover more intense color.",,pencil,eyeliner,[],2017-12-24T02:32:24.051Z,2017-12-24T02:32:24.479Z,http://makeup-api.herokuapp.com/api/v1/products/964.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/964/original/open-uri20171224-4-11fb0s4?1514082743,"[{'hex_value': '#B15A47', 'colour_name': 'Copper'}, {'hex_value': '#99949A', 'colour_name': 'Silver'}, {'hex_value': '#B69A8F', 'colour_name': 'Rose Gold'}, {'hex_value': '#B88B47', 'colour_name': 'Gold'}, {'hex_value': '#2F2F2F', 'colour_name': 'Gunmetal'}, {'hex_value': '#2D2D2D', 'colour_name': 'Black Metal'}]"
+963,nyx,Tres Jolie Gel Pencil Liner,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw85212794/ProductImages/Eyes/Tres_Jolie_Gel_Pencil_Liner/tresjoliegelpencilliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/tres-jolie-gel-pencil-liner/NYX_182.html?cgid=eyeliner,https://www.nyxcosmetics.com,Our high-powered twist-up gel liner has the same payoff and precision as a pot without having to use a brush. It comes with a sharpener to ensure precise application every time.,,pencil,eyeliner,[],2017-12-24T02:32:22.094Z,2017-12-24T02:32:22.578Z,http://makeup-api.herokuapp.com/api/v1/products/963.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/963/original/data?1514082741,"[{'hex_value': '#191919', 'colour_name': 'Pitch Black'}, {'hex_value': '#43281D', 'colour_name': 'Brown'}]"
+962,nyx,Faux Whites Eye Brightener,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd6f5e770/ProductImages/2017/Eyes/Faux_Whites_Eye_Brightener/fauxwhiteseyebrightener_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/faux-whites-eye-brightener/NYX_404.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Brighten up those beautiful eyes! Our all-new collection of Faux Whites features a variety of white liners with an exquisite hint of color—from blush, to lavender, and mint. This bouquet of tones may be delicate, yet each one is anything but subtle. Every color glides on velvety-soft and provides a striking matte finish. Pencil the corners of the eyes using these vibrant brighteners for a fresh highlight.",,pencil,eyeliner,[],2017-12-24T02:32:20.444Z,2017-12-24T02:32:20.789Z,http://makeup-api.herokuapp.com/api/v1/products/962.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/962/original/open-uri20171224-4-gpuczn?1514082740,"[{'hex_value': '#FFE0E3', 'colour_name': 'Seashell'}, {'hex_value': '#FFE3D8', 'colour_name': 'Linen'}, {'hex_value': '#FCF4CF', 'colour_name': 'Vanilla'}, {'hex_value': '#F0F4D9', 'colour_name': 'Honeydew'}, {'hex_value': '#E3F1E4', 'colour_name': 'Mint Cream'}, {'hex_value': '#D8EBFC', 'colour_name': 'Baby Powder'}, {'hex_value': '#F9E1EE', 'colour_name': 'Lavender Blush'}, {'hex_value': '#E7E3FE', 'colour_name': 'White Smoke'}]"
+961,nyx,Faux Blacks Eyeliner,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw52b6a577/ProductImages/2017/Eyes/Faux_Blacks_Eyeliner/fauxblackseyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/faux-blacks-eyeliner/NYX_405.html?cgid=eyeliner,https://www.nyxcosmetics.com,"The go-to goodie in every beauty’s makeup bag? A little black liner, of course! Inspired by this enduring essential, the new Faux Blacks collection puts a bold twist on a classic that will forever be a chic choice. Available in eight deep matte shades with a hint of rich color—from midnight blue to dark olive—these striking eyeliners are creamy and go on smooth, which makes drawing a precise line or smudging it out totally simple.",,pencil,eyeliner,[],2017-12-24T02:32:19.213Z,2017-12-24T02:32:19.632Z,http://makeup-api.herokuapp.com/api/v1/products/961.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/961/original/open-uri20171224-4-3q32qt?1514082739,"[{'hex_value': '#A06362', 'colour_name': 'Oxblood'}, {'hex_value': '#975873', 'colour_name': 'Burnt Sienna'}, {'hex_value': '#7D7C60', 'colour_name': 'Black Olive'}, {'hex_value': '#3C665C', 'colour_name': 'Onyx'}, {'hex_value': '#3C7296', 'colour_name': 'Midnight'}, {'hex_value': '#3B608C', 'colour_name': 'Obsidian'}, {'hex_value': '#956E83', 'colour_name': 'Blackberry'}, {'hex_value': '#766B8B', 'colour_name': 'Black Hole'}]"
+960,nyx,Collection Noir,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5a58329e/ProductImages/Eyes/Collection_Noir/collectionnoir_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/collection-noir/NYX_065.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Finally a collection of 8 Noir liners to create any dramatic look. This assortment of liners includes 7 of the blackest black liner formulations ranging from matte to glossy. There is even a powder soft brown for more subtle looks. Create dramatic sultry looks, precise cat-eyes, and subtle yet smokey eyes. This sexy dark collection has a liner for everyone’s needs.",,pencil,eyeliner,[],2017-12-24T02:32:17.469Z,2017-12-24T02:32:17.814Z,http://makeup-api.herokuapp.com/api/v1/products/960.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/960/original/open-uri20171224-4-xkjlku?1514082737,"[{'hex_value': '#363636', 'colour_name': 'Glossy Black Liner'}, {'hex_value': '#161616', 'colour_name': 'Matte Black Liner'}, {'hex_value': '#2F2F2F', 'colour_name': 'Satin Finish Black Liner'}, {'hex_value': '#F2F2F2', 'colour_name': 'Kohl Kajal Black Liner'}, {'hex_value': '#4D4D4D', 'colour_name': 'Powdery Black Liner'}, {'hex_value': '#FFFFFD', 'colour_name': 'Powdery Brown Liner'}]"
+959,nyx,Slim Eye Pencil,4.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd6b2499f/ProductImages/Eyes/Slim_Eye_Pencil/slimeyepencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/slim-eye-pencil/NYX_023.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Slim, trim, but never prim. Our Slim Eye Pencils come in a variety of entrancing shades—from seafoam green to black shimmer. The creamy long-wearing eye liner formula goes on easily and resists bleeding. Available in 31 stunning shades!",,pencil,eyeliner,[],2017-12-24T02:32:09.470Z,2017-12-24T02:32:10.343Z,http://makeup-api.herokuapp.com/api/v1/products/959.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/959/original/open-uri20171224-4-o680lz?1514082729,"[{'hex_value': '#9BC98B', 'colour_name': 'Green Shimmer'}, {'hex_value': '#BBC89D', 'colour_name': 'Moss'}, {'hex_value': '#477E6B', 'colour_name': 'Emerald City'}, {'hex_value': '#ADCEC7', 'colour_name': 'Seafoam Green'}, {'hex_value': '#7ED8B2', 'colour_name': 'Teal'}, {'hex_value': '#7BDBDA', 'colour_name': 'Aqua Shimmer'}, {'hex_value': '#B1E0EA', 'colour_name': 'Baby Blue'}, {'hex_value': '#9ED6E7', 'colour_name': 'Sky Shimmer'}, {'hex_value': '#48B3E1', 'colour_name': 'Electric Blue'}, {'hex_value': '#8DBDE5', 'colour_name': 'Satin Blue'}, {'hex_value': '#5C88AF', 'colour_name': 'Sapphire'}, {'hex_value': '#C094D3', 'colour_name': 'Purple'}, {'hex_value': '#BFB2E7', 'colour_name': 'Lavender Shimmer'}, {'hex_value': '#C69D7F', 'colour_name': 'Bronze Shimmer'}, {'hex_value': '#AB7B64', 'colour_name': 'Cafe'}, {'hex_value': '#AB8369', 'colour_name': 'Auburn'}, {'hex_value': '#A78C71', 'colour_name': 'Light Brown'}, {'hex_value': '#8B7462', 'colour_name': 'Medium Brown'}, {'hex_value': '#8E7356', 'colour_name': 'Brown'}, {'hex_value': '#866D59', 'colour_name': 'Dark Brown'}, {'hex_value': '#BB9B86', 'colour_name': 'Taupe'}, {'hex_value': '#E8BE82', 'colour_name': 'Gold Shimmer'}, {'hex_value': '#DCC3AF', 'colour_name': 'Velvet'}, {'hex_value': '#F9FAF5', 'colour_name': 'White'}, {'hex_value': '#F7F6F2', 'colour_name': 'White Pearl'}, {'hex_value': '#CDCDCD', 'colour_name': 'Silver'}, {'hex_value': '#909090', 'colour_name': 'Gray'}, {'hex_value': '#7F7F7F', 'colour_name': 'Charcoal'}, {'hex_value': '#76685D', 'colour_name': 'Black Brown'}, {'hex_value': '#545454', 'colour_name': 'Black Shimmer'}, {'hex_value': '#575757', 'colour_name': 'Black'}]"
+958,nyx,Retractable Eye Liner,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw83169760/ProductImages/Eyes/Retractable_Eye_Liner/retractableeyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/retractable-eye-liner/NYX_021.html?cgid=eyeliner,https://www.nyxcosmetics.com,Twist and shout! Renowned for its extreme lasting power this creamy liner delivers intense pigmentation and precise application in an easy twist-up tube that never needs sharpening.,,pencil,eyeliner,[],2017-12-24T02:32:05.574Z,2017-12-24T02:32:06.056Z,http://makeup-api.herokuapp.com/api/v1/products/958.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/958/original/open-uri20171224-4-18m7lgt?1514082725,"[{'hex_value': '#776F26', 'colour_name': 'Golden Olive'}, {'hex_value': '#159C9F', 'colour_name': 'Aqua Green'}, {'hex_value': '#045F71', 'colour_name': 'Gypsy Blue'}, {'hex_value': '#0A466A', 'colour_name': 'Deep Blue'}, {'hex_value': '#4A4480', 'colour_name': 'Purple'}, {'hex_value': '#442F5A', 'colour_name': 'Deep Purple'}, {'hex_value': '#3D2316', 'colour_name': 'Brown'}, {'hex_value': '#5C3C23', 'colour_name': 'Bronze'}, {'hex_value': '#CA8F33', 'colour_name': 'Gold'}, {'hex_value': '#F4F5F0', 'colour_name': 'White'}, {'hex_value': '#C1C1C1', 'colour_name': 'Silver'}, {'hex_value': '#525252', 'colour_name': 'Gray'}, {'hex_value': '#1C1C1C', 'colour_name': 'Black'}]"
+957,nyx,Slide On Pencil,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbdf94a20/ProductImages/Eyes/Slide_On_Pencil/slideonpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/slide-on-pencil/NYX_022.html?cgid=eyeliner,https://www.nyxcosmetics.com,Don’t let the softness of this pencil fool you. This formula doesn't smear or smudge and delivers powerful robust colors. It’s like a liquid eye liner without the mess. Available in 18 sleek shades. Our Slide on Pencils can be sharpened with a sharpener that has an opening for a small pencil. Get your NYX Professional Makeup Sharpener,,pencil,eyeliner,[],2017-12-24T02:32:01.071Z,2017-12-24T02:32:01.692Z,http://makeup-api.herokuapp.com/api/v1/products/957.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/957/original/open-uri20171224-4-1md5yaa?1514082720,"[{'hex_value': '#A88089', 'colour_name': 'Jewel'}, {'hex_value': '#51A66D', 'colour_name': 'Esmeralda'}, {'hex_value': '#519181', 'colour_name': 'Tropical Green'}, {'hex_value': '#43CCD6', 'colour_name': 'Azure'}, {'hex_value': '#4E99C3', 'colour_name': 'Sunrise Blue'}, {'hex_value': '#A886C2', 'colour_name': 'Pretty Violet'}, {'hex_value': '#9A7EB8', 'colour_name': 'Purple Blaze'}, {'hex_value': '#D6B185', 'colour_name': 'Glitzy Gold'}, {'hex_value': '#A78A62', 'colour_name': 'Golden Olive'}, {'hex_value': '#B07D62', 'colour_name': 'Golden Bronze'}, {'hex_value': '#907761', 'colour_name': 'Brown Perfection'}, {'hex_value': '#F9FAF5', 'colour_name': 'Pure White'}, {'hex_value': '#D5D9D8', 'colour_name': 'Platinum'}, {'hex_value': '#83847F', 'colour_name': 'Gun Metal'}, {'hex_value': '#707271', 'colour_name': 'Black Sparkle'}, {'hex_value': '#626262', 'colour_name': 'Jet Black'}]"
+956,nyx,Jumbo Eye Pencil,4.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda543a41/ProductImages/Eyes/Jumbo_Eye_Pencil/jumboeyepencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/jumbo-eye-pencil/NYX_001.html?cgid=eyeliner,https://www.nyxcosmetics.com,,,pencil,eyeliner,[],2017-12-24T02:31:53.675Z,2017-12-24T02:31:54.390Z,http://makeup-api.herokuapp.com/api/v1/products/956.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/956/original/open-uri20171224-4-1sgu8lk?1514082713,"[{'hex_value': '#FFACC1', 'colour_name': 'Strawberry Milk'}, {'hex_value': '#C95254', 'colour_name': 'Rust'}, {'hex_value': '#9CBF00', 'colour_name': 'Cucumber'}, {'hex_value': '#C3D17A', 'colour_name': 'Lime'}, {'hex_value': '#8DDF95', 'colour_name': 'Horseradish'}, {'hex_value': '#04A057', 'colour_name': 'Rocky Mountain Green'}, {'hex_value': '#1B9775', 'colour_name': 'Sparkle Green'}, {'hex_value': '#3ACFED', 'colour_name': 'Baby Blue'}, {'hex_value': '#05A9CE', 'colour_name': 'Electric Blue'}, {'hex_value': '#0096B7', 'colour_name': 'Peacock'}, {'hex_value': '#2C86B8', 'colour_name': 'Cobalt'}, {'hex_value': '#EBB4EE', 'colour_name': 'Oyster'}, {'hex_value': '#EFC2ED', 'colour_name': 'Lavender'}, {'hex_value': '#8F9AD0', 'colour_name': 'Pacific'}, {'hex_value': '#834C8D', 'colour_name': 'Purple Velvet'}, {'hex_value': '#634988', 'colour_name': 'Purple'}, {'hex_value': '#FCCAA7', 'colour_name': 'Cashmere'}, {'hex_value': '#F2A49A', 'colour_name': 'Yogurt'}, {'hex_value': '#F5B695', 'colour_name': 'Sparkle Nude'}, {'hex_value': '#F7AF65', 'colour_name': 'Pure Gold'}, {'hex_value': '#F59E57', 'colour_name': 'Gold'}, {'hex_value': '#CA8B62', 'colour_name': 'Sparkle Leopard'}, {'hex_value': '#D67552', 'colour_name': 'Bronze'}, {'hex_value': '#A96E50', 'colour_name': 'French Fries'}, {'hex_value': '#E1A686', 'colour_name': 'Iced Mocha'}, {'hex_value': '#E2E1DD', 'colour_name': 'Cottage Cheese'}, {'hex_value': '#F5F6F1', 'colour_name': 'Milk'}, {'hex_value': '#BBC4C3', 'colour_name': 'Pots & Pans'}, {'hex_value': '#5C6063', 'colour_name': 'Slate'}, {'hex_value': '#645C59', 'colour_name': 'Knight'}, {'hex_value': '#613E28', 'colour_name': 'Dark Brown'}, {'hex_value': '#2D2D2D', 'colour_name': 'Black Bean'}]"
+955,nyx,Two Timer Dual Ended Eyeliner,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcd8987df/ProductImages/Eyes/Two_Timer_Dual_Ended_Eyeliner/twotimerdualendedeyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/two-timer-dual-ended-eyeliner/NYX_135.html?cgid=eyeliner,https://www.nyxcosmetics.com,Having it all is possible with this incredibly edgy new makeup weapon. The combination of the precision of liquid liner with the ease of application of a kohl pencil is the perfect match to create a variety of dramatic looks. When the cat eye meets the smoldering intensity of a smoky eye look - who knows where the night will take you?,,liquid,eyeliner,[],2017-12-24T02:31:51.431Z,2017-12-24T02:31:52.376Z,http://makeup-api.herokuapp.com/api/v1/products/955.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/955/original/data?1514082711,[]
+954,nyx,Strictly Vinyl Eyeliner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1498d09f/ProductImages/2018/Eyes/Strictly_Vinyl_Eyeliner/strictlyvinyleyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/strictly-vinyl-eyeliner/NYX_600.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Ready to give Strictly Vinyl Eyeliner a spin? Take your pick from the eight epic colors included in our vibrant catalog. Featuring a flexible and slim brush, this high-shine liquid eyeliner glides on effortlessly and delivers an intensely lacquered look you’ll want to rock again…and again!",,liquid,eyeliner,[],2017-12-24T02:31:48.739Z,2017-12-24T02:31:49.218Z,http://makeup-api.herokuapp.com/api/v1/products/954.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/954/original/open-uri20171224-4-stg3ec?1514082708,"[{'hex_value': '#2B3043', 'colour_name': 'Anchor'}, {'hex_value': '#424146', 'colour_name': 'Dauntless'}, {'hex_value': '#443844', 'colour_name': 'Crone'}, {'hex_value': '#32486D', 'colour_name': 'Visceral'}, {'hex_value': '#593E35', 'colour_name': 'Alliance'}, {'hex_value': '#792B29', 'colour_name': 'Hazy'}, {'hex_value': '#493966', 'colour_name': 'Extra'}, {'hex_value': '#31443E', 'colour_name': 'Savvy'}]"
+953,nyx,Collection Chocolate,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbccef58f/ProductImages/Eyes/Collection_Chocolate/collectionchocolate_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/collection-chocolate/NYX_090.html?cgid=eyeliner,https://www.nyxcosmetics.com,What’s better than a guilt-free treat! Feast your eyes on our Collection Chocolate in 6 of our most delectable liners. The mouthwatering formula is smudge proof and comes in satin matte glossy or liquid.,,pencil,eyeliner,[],2017-12-24T02:31:47.604Z,2017-12-24T02:32:22.990Z,http://makeup-api.herokuapp.com/api/v1/products/953.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/953/original/open-uri20171224-4-1xyp0ge?1514082742,"[{'hex_value': '#3B2C25', 'colour_name': 'Glossy Brown Liner'}, {'hex_value': '#27160F', 'colour_name': 'Matte Brown Liner'}, {'hex_value': '#36251B', 'colour_name': 'Satin Finish Brown Liner'}, {'hex_value': '#E7E7DF', 'colour_name': 'Kohl Kajal Brown Liner'}, {'hex_value': '#281409', 'colour_name': 'Skinny Brown Liner'}, {'hex_value': '#442B24', 'colour_name': 'Liquid Brown Liner'}]"
+952,nyx,Super Fat Eye Marker,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8c640821/ProductImages/Eyes/Super_Fat_Eye_Marker/superfateyemarker_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/super-fat-eye-marker/NYX_026.html?cgid=eyeliner,https://www.nyxcosmetics.com,Here’s a real magic marker: The extra wide felt tip eye liner is perfect for creating a dramatic cat-eye look. The eye marker application is smooth and the striking results are long-lasting.,,liquid,eyeliner,[],2017-12-24T02:31:46.839Z,2017-12-24T02:31:47.269Z,http://makeup-api.herokuapp.com/api/v1/products/952.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/952/original/data?1514082706,[]
+951,nyx,Super Skinny Eye Marker,9.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwea7c51df/ProductImages/Eyes/Super_Skinny_Eye_Marker/superskinnyeyemarker_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/super-skinny-eye-marker/NYX_027.html?cgid=eyeliner,https://www.nyxcosmetics.com,The micro-fine felt tip on this eyeliner means you can use it for everything from filling in your eyelash line to a subtle cat-eye look.The eye marker application is flawless and the results are fabulous.,,liquid,eyeliner,[],2017-12-24T02:31:46.060Z,2017-12-24T02:31:46.619Z,http://makeup-api.herokuapp.com/api/v1/products/951.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/951/original/data?1514082705,[]
+950,nyx,Felt Tip Liner,9.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw16b77618/ProductImages/Eyes/Felt_Tip_Liner/feltipliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/felt-tip-liner/NYX_024.html?cgid=eyeliner,https://www.nyxcosmetics.com,Our Felt Tip Eyeliner gives you the ultimate control in creating bold and precise lines in 3 opulent shades—extreme black dark brown and jet black. The eyeliner marker releases the ideal amount of ink for decidedly dramatic eyes.,,liquid,eyeliner,[],2017-12-24T02:31:44.985Z,2017-12-24T02:31:45.557Z,http://makeup-api.herokuapp.com/api/v1/products/950.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/950/original/open-uri20171224-4-1tptkdg?1514082704,"[{'hex_value': '#131313', 'colour_name': 'Extreme Black'}, {'hex_value': '#49201A', 'colour_name': 'Dark Brown'}, {'hex_value': '#202020', 'colour_name': 'Jet Black'}]"
+949,nyx,The Curve,15.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6a4af1d6/ProductImages/Eyes/The_Curve/thecurve_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/the-curve/NYX_084.html?cgid=eyeliner,https://www.nyxcosmetics.com,The original – The Curve! An innovative ergonomic shape that makes applying liquid liner mistake-proof. The grip zone provides just the right hold to make application precise secure and best of all...beautifully effortless results.,,liquid,eyeliner,[],2017-12-24T02:31:44.277Z,2017-12-24T02:31:44.655Z,http://makeup-api.herokuapp.com/api/v1/products/949.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/949/original/data?1514082704,[]
+948,nyx,Colored Felt Tip Liner,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa801b855/ProductImages/2016/Eyes/Colored_Felt_Tip_Liner/coloredfelttipliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/colored-felt-tip-liner/NYX_307.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Line your lids with style and rock a range of captivating looks with our new Colored Felt Tip Liners. Available in six brilliant shades, each liquid liner features a precision felt-tip brush and an easy-to-use “grip zone” for precise, clean, pro-level application every time.",,liquid,eyeliner,[],2017-12-24T02:31:43.106Z,2017-12-24T02:31:43.448Z,http://makeup-api.herokuapp.com/api/v1/products/948.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/948/original/open-uri20171224-4-1cdu2rb?1514082702,"[{'hex_value': '#003D37', 'colour_name': 'Teal'}, {'hex_value': '#052363', 'colour_name': 'Royal Blue'}, {'hex_value': '#0B5489', 'colour_name': 'Cobalt Blue'}, {'hex_value': '#F9F9F9', 'colour_name': 'White'}, {'hex_value': '#363636', 'colour_name': 'Grey'}, {'hex_value': '#4E2D1C', 'colour_name': 'Chocolate Brown'}]"
+947,nyx,Vinyl Liquid Liner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9723d9ae/ProductImages/Eyes/Vinyl_Liquid_Liner/vinylliquidliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/vinyl-liquid-liner/NYX_187.html?cgid=eyeliner,https://www.nyxcosmetics.com,Rock and roll with our pure shine liquid liner! The extra fine flexible brush helps ensure a flawless even line with a high gloss finish.,,liquid,eyeliner,[],2017-12-24T02:31:42.089Z,2017-12-24T02:31:42.474Z,http://makeup-api.herokuapp.com/api/v1/products/947.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/947/original/data?1514082701,[]
+946,nyx,That's The Point Eyeliner,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwed5f712e/ProductImages/2017/Eyes/Thats_The_Point_Eyeliner/thatsthepointeyeliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/thats-the-point-eyeliner/NYX_452.html?cgid=eyeliner,https://www.nyxcosmetics.com,,,liquid,eyeliner,[],2017-12-24T02:31:40.465Z,2017-12-24T02:31:40.930Z,http://makeup-api.herokuapp.com/api/v1/products/946.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/946/original/open-uri20171224-4-18to599?1514082700,"[{'hex_value': '#303030', 'colour_name': 'Put A Wing On It'}, {'hex_value': '#2D2D2D', 'colour_name': 'Super Edgy'}, {'hex_value': '#171717', 'colour_name': 'A Bit Edgy'}, {'hex_value': '#575757', 'colour_name': 'Quite The Bender'}, {'hex_value': '#232323', 'colour_name': 'On The Dot'}, {'hex_value': '#0E0E0E', 'colour_name': 'Super Sketchy'}, {'hex_value': '#FFFFFF', 'colour_name': 'Hella Fine'}]"
+945,nyx,White Liquid Liner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0fd19ef1/ProductImages/Eyes/White_Liquid_Liner/whiteliquidliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/white-liquid-liner/NYX_188.html?cgid=eyeliner,https://www.nyxcosmetics.com,Get bright-eyed in a blink with our opaque water resistant liquid white liner. Perfect for the lash or waterline the precision brush helps create a defined white line leaving you with standout eyes and a lasting matte finish.,,liquid,eyeliner,[],2017-12-24T02:31:39.840Z,2017-12-24T02:31:40.217Z,http://makeup-api.herokuapp.com/api/v1/products/945.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/945/original/data?1514082699,[]
+944,nyx,Studio Liquid Liner,4.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1a631541/ProductImages/Eyes/Studio_Liquid_Liner/studioliquidliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/studio-liquid-liner/NYX_028.html?cgid=eyeliner,https://www.nyxcosmetics.com,Transform your look in seconds with this super-pigmented eyeliner that highlights eyes with an electrifying stroke of color. The fine brush tip allows for precision application and can be used to create lines of varying thickness. Go subtle or go glam.,,liquid,eyeliner,[],2017-12-24T02:31:37.926Z,2017-12-24T02:31:38.426Z,http://makeup-api.herokuapp.com/api/v1/products/944.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/944/original/open-uri20171224-4-1ld4vd9?1514082697,"[{'hex_value': '#EDB3B2', 'colour_name': 'Extreme Pink'}, {'hex_value': '#52A749', 'colour_name': 'Extreme Green'}, {'hex_value': '#61A9CF', 'colour_name': 'Extreme Sky Blue'}, {'hex_value': '#1078AF', 'colour_name': 'Extreme Sapphire'}, {'hex_value': '#1F5BBD', 'colour_name': 'Extreme Blue'}, {'hex_value': '#6953A8', 'colour_name': 'Extreme Purple'}, {'hex_value': '#693C8F', 'colour_name': 'Extreme Plum Purple'}, {'hex_value': '#75401E', 'colour_name': 'Extreme Coffee'}, {'hex_value': '#D2982C', 'colour_name': 'Extreme Gold'}, {'hex_value': '#AAAAAA', 'colour_name': 'Extreme Silver'}, {'hex_value': '#4A4A4A', 'colour_name': 'Extreme Smokey Gray'}, {'hex_value': '#2A2A2A', 'colour_name': 'Extreme Black'}]"
+943,nyx,Epic Ink Liner,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1c0eb02f/ProductImages/2017/Eyes/Epic_Ink_Liner/800897085605_epicinkliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/epic-ink-liner/NYX_409.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Live for super-sharp wing inspo? Don’t just “like” all your faves, draw ’em yourself using Epic Ink Liner. Featuring a slender and supple brush tip, this intensely pigmented, waterproof pen lets you achieve black liquid lines effortlessly. Every stroke is unbelievably fluid for a defined finish. Control the thickness of your lines by pressing down just a touch. Fine and natural, broad and bold—the look is always up to you!",,liquid,eyeliner,[],2017-12-24T02:31:37.256Z,2017-12-24T02:31:37.606Z,http://makeup-api.herokuapp.com/api/v1/products/943.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/943/original/data?1514082697,[]
+942,nyx,Glam Liner Aqua Luxe Collection,5.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw37148f7b/ProductImages/Eyes/Glam_Liner_Aqua_Luxe_Collection/glamlineraqualuxecollection_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/glam-liner-aqua-luxe-collection/NYX_073.html?cgid=eyeliner,https://www.nyxcosmetics.com,Stand out from the crowd with these new eye-catching liquid liners. Available in 9 vivacious shades these shimmering long-wearing liners have a flexible brush tip for perfectly precise surprisingly smooth application.,,liquid,eyeliner,[],2017-12-24T02:31:34.919Z,2017-12-24T02:31:36.334Z,http://makeup-api.herokuapp.com/api/v1/products/942.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/942/original/open-uri20171224-4-e2ezc8?1514082694,"[{'hex_value': '#03A6C7', 'colour_name': 'Glam Azure'}, {'hex_value': '#088C90', 'colour_name': 'Glam Lagoon'}, {'hex_value': '#8F73B0', 'colour_name': 'Glam Purple'}, {'hex_value': '#DEB21B', 'colour_name': 'Glam 24 Karat'}, {'hex_value': '#1F1F1F', 'colour_name': 'Glam Black'}, {'hex_value': '#EFBDC6', 'colour_name': 'Glam Pink'}, {'hex_value': '#D2BEA6', 'colour_name': 'Glam Nude'}, {'hex_value': '#886514', 'colour_name': 'Glam Golden'}, {'hex_value': '#BBBBBB', 'colour_name': 'Glam Platinum'}]"
+941,nyx,Matte Liquid Liner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwac1a91b0/ProductImages/Eyes/Matte_Liquid_Liner/800897836573_matteliquidliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/matte-liquid-liner/NYX_189.html?cgid=eyeliner,https://www.nyxcosmetics.com,Line and define with expert precision using our Matte Liquid Liner. A makeup artist must-have for bold and classic looks the precision brush tip allows you to effortlessly achieve an ultra-fine and exquisite matte finish.,,liquid,eyeliner,[],2017-12-24T02:31:34.335Z,2017-12-24T02:31:34.687Z,http://makeup-api.herokuapp.com/api/v1/products/941.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/941/original/data?1514082694,[]
+940,nyx,Vivid Brights Liner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5b4da1c3/ProductImages/2016/Eyes/Vivid_Brights_Liner/vividbrightsliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/vivid-brights-liner/NYX_326.html?cgid=eyeliner,https://www.nyxcosmetics.com,"Line your lids with vibrant color with our new Vivid Brights Liners. Available in nine incredible shades, these pro-level liners deliver instant and intense color payoff.",,liquid,eyeliner,[],2017-12-24T02:31:32.843Z,2017-12-24T02:31:33.274Z,http://makeup-api.herokuapp.com/api/v1/products/940.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/940/original/open-uri20171224-4-1i4qv4y?1514082692,"[{'hex_value': '#F9FDFE', 'colour_name': 'Vivid Petal'}, {'hex_value': '#FEFEFF', 'colour_name': 'Vivid Fire'}, {'hex_value': '#FEFFFF', 'colour_name': 'Vivid Delight'}, {'hex_value': '#FBFFFB', 'colour_name': 'Vivid Halo'}, {'hex_value': '#FFF8FF', 'colour_name': 'Vivid Envy'}, {'hex_value': '#FFF9FB', 'colour_name': 'Vivid Sapphire'}, {'hex_value': '#FFFEFF', 'colour_name': 'Vivid Violet'}, {'hex_value': '#F6FFF5', 'colour_name': 'Vivid Blossom'}]"
+939,nyx,SFX Setting Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd3ce6c29/ProductImages/2016/More/SFX_Setting_Powder/sfxsettingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/sfx-setting-powder/NYX_391.html?cgid=powder,https://www.nyxcosmetics.com,,,powder,foundation,[],2017-12-24T02:31:31.850Z,2017-12-24T02:31:32.238Z,http://makeup-api.herokuapp.com/api/v1/products/939.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/939/original/open-uri20171224-4-1mv4cht?1514082691,[]
+938,nyx,Holographic Halo Finishing Powder,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2945b62d/ProductImages/2018/Face/Holographic_Halo_Finishing_Powder/holographichalofinishingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/holographic-halo-finishing-powder/NYX_607.html?cgid=powder,https://www.nyxcosmetics.com,"Glow your own way using Holographic Halo Finishing Powder! This ultra-fine loose powder comes in two pearly shades and delivers an ethereal look that’s crazy gorgeous. Lightly dust it all over your complexion to set and softly illuminate, or along the highest points of the face—like the bridge of the nose, cheekbones or Cupid’s bow—to add a touch of radiance here and there.",,powder,foundation,[],2017-12-24T02:31:30.972Z,2017-12-24T02:31:31.434Z,http://makeup-api.herokuapp.com/api/v1/products/938.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/938/original/open-uri20171224-4-52epl7?1514082690,"[{'hex_value': '#DDE9F5', 'colour_name': 'Mermazing'}, {'hex_value': '#E3AA8F', 'colour_name': 'Magical'}]"
+937,nyx,Blotting Powder,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1f4a57e0/ProductImages/Face/Blotting_Powder/800897822620_blottingpowder_light_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/blotting-powder/NYX_125.html?cgid=powder,https://www.nyxcosmetics.com,Kissed with the barest hint of pigment Blotting Powder takes down the shine without settling into fine lines polishing skin to satin matte perfection.,,powder,foundation,[],2017-12-24T02:31:29.788Z,2017-12-24T02:31:30.246Z,http://makeup-api.herokuapp.com/api/v1/products/937.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/937/original/open-uri20171224-4-9ujiam?1514082689,"[{'hex_value': '#B27959', 'colour_name': 'Deep'}, {'hex_value': '#F9DDC9', 'colour_name': 'Light'}, {'hex_value': '#E4B881', 'colour_name': 'Medium/Dark'}, {'hex_value': '#F3C6B1', 'colour_name': 'Light/Medium'}]"
+936,nyx,#NOFILTER Finishing Powder,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd7e25eb8/ProductImages/2016/Face/No_Filter_Finishing_Powder/nofilterfinishingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/no-filter-finishing-powder/NYX_358.html?cgid=powder,https://www.nyxcosmetics.com,"Introduce us to someone who doesn’t love a good photo filter, and we’ll introduce you to our secret herd of pet unicorns. Our point? When it comes to getting our picture taken, we all love a good filter. That’s why we created #NoFilter Finishing Powder--our amazing new product that delivers a finish as flawless and soft as the most flattering filters on Instagram and beyond.",,powder,foundation,[],2017-12-24T02:31:26.988Z,2017-12-24T02:31:27.575Z,http://makeup-api.herokuapp.com/api/v1/products/936.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/936/original/open-uri20171224-4-h5gd5x?1514082686,"[{'hex_value': '#F1D3B9', 'colour_name': 'Alabaster'}, {'hex_value': '#ECC8A8', 'colour_name': 'Porcelain'}, {'hex_value': '#EFC8AB', 'colour_name': 'Ivory'}, {'hex_value': '#F0C4A7', 'colour_name': 'Light'}, {'hex_value': '#EBC09E', 'colour_name': 'Light Beige'}, {'hex_value': '#E6B897', 'colour_name': 'Beige'}, {'hex_value': '#E1B693', 'colour_name': 'Medium Olive'}, {'hex_value': '#E1B18B', 'colour_name': 'Honey Beige'}, {'hex_value': '#E5B090', 'colour_name': 'Caramel Beige'}, {'hex_value': '#E3A984', 'colour_name': 'Classic Tan'}, {'hex_value': '#DEA57A', 'colour_name': 'Golden'}, {'hex_value': '#D99D7B', 'colour_name': 'Sand'}, {'hex_value': '#CF8B68', 'colour_name': 'Deep Golden'}, {'hex_value': '#B4816C', 'colour_name': 'Mahogany'}, {'hex_value': '#AA7D68', 'colour_name': 'Cocoa'}]"
+935,nyx,Color Correcting Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw78639528/ProductImages/Face/Color_Correcting_Powder/colorcorrectingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/color-correcting-powder/NYX_167.html?cgid=powder,https://www.nyxcosmetics.com,Even out your complexion using our ultra-fine translucent loose Color Correcting Powder. This lightweight easy to use powder can be applied before or after your foundation. The paraben and talc-free formula helps you achieve a natural matte finish.,,powder,foundation,[],2017-12-24T02:31:25.255Z,2017-12-24T02:31:26.019Z,http://makeup-api.herokuapp.com/api/v1/products/935.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/935/original/open-uri20171224-4-15dpuwm?1514082684,"[{'hex_value': '#FFE8BD', 'colour_name': 'Banana'}, {'hex_value': '#EEDDEF', 'colour_name': 'Lavender'}, {'hex_value': '#EAE9D5', 'colour_name': 'Green'}]"
+934,nyx,High Definition Finishing Powder Mini,3.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw63a5fdce/ProductImages/2017/Face/High_Definition_Finishing_Powder_Mini/800897846015_highdefinitionfinishingpowdermini_translucent_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/high-definition-finishing-powder-mini/NYX_507.html?cgid=powder,https://www.nyxcosmetics.com,"Your favorite beauty essential is now available in a convenient travel sized mini. A lightweight, translucent finishing powder that helps soften the appearance of fine lines and pores. This silky pressed powder has a fresh matte finish.",,powder,foundation,[],2017-12-24T02:31:23.561Z,2017-12-24T02:31:23.991Z,http://makeup-api.herokuapp.com/api/v1/products/934.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/934/original/open-uri20171224-4-1b8y84r?1514082683,"[{'hex_value': '#F6F6F6', 'colour_name': 'Translucent'}, {'hex_value': '#F8E7C9', 'colour_name': 'Banana'}, {'hex_value': '#E1EDDF', 'colour_name': 'Mint Green'}]"
+933,nyx,Primal Colors,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2872d6ca/ProductImages/Eyes/Primal_Colors/primalcolors_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/primal-colors/NYX_108.html?cgid=powder,https://www.nyxcosmetics.com,Unleash your inner theatrical makeup artist with these incredible pressed pigments. Creates a variety of special effects with the ultimate staying power.,,powder,foundation,[],2017-12-24T02:31:21.681Z,2017-12-24T02:31:22.481Z,http://makeup-api.herokuapp.com/api/v1/products/933.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/933/original/open-uri20171224-4-18zslbp?1514082681,"[{'hex_value': '#D73469', 'colour_name': 'Hot Pink'}, {'hex_value': '#B40D17', 'colour_name': 'Hot Red'}, {'hex_value': '#DA4F32', 'colour_name': 'Hot Orange'}, {'hex_value': '#F4D65C', 'colour_name': 'Hot Yellow'}, {'hex_value': '#369D41', 'colour_name': 'Hot Green'}, {'hex_value': '#3D5DB0', 'colour_name': 'Hot Blue'}, {'hex_value': '#BA4A9C', 'colour_name': 'Hot Fuchsia'}, {'hex_value': '#1B1B1B', 'colour_name': 'Hot Black'}]"
+932,nyx,Radiant Finishing Powder,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf8ec0855/ProductImages/Face/Radiant_Finishing_Powder/radiantfinishingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/radiant-finishing-powder/NYX_138.html?cgid=powder,https://www.nyxcosmetics.com,Two ways to get your glow on. A luminous multicolored finishing powder to brighten and perfect and a warm shimmering shade for sunkissed radiance.,,powder,foundation,[],2017-12-24T02:31:20.618Z,2017-12-24T02:31:21.184Z,http://makeup-api.herokuapp.com/api/v1/products/932.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/932/original/open-uri20171224-4-tpsvw?1514082680,"[{'hex_value': '#D0C3BB', 'colour_name': 'Brighten'}, {'hex_value': '#F9B2AC', 'colour_name': 'Sunkissed'}]"
+931,nyx,Mineral Finishing Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw66d2b512/ProductImages/Face/Mineral_Finishing_Powder/800897815455_mineralfinishingpowder_lightmedium_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/mineral-finishing-powder/NYX_081.html?cgid=powder,https://www.nyxcosmetics.com,A mineral finishing powder that sets your favorite look with a flawless finish; skin appears fresh and radiant throughout the day. Just a hint of color provides enough coverage to be worn over makeup or on bare moisturized skin.,,powder,foundation,[],2017-12-24T02:31:13.900Z,2017-12-24T02:31:14.353Z,http://makeup-api.herokuapp.com/api/v1/products/931.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/931/original/open-uri20171224-4-1crem3m?1514082673,"[{'hex_value': '#FFE5C7', 'colour_name': 'Light/Medium'}, {'hex_value': '#E6B896', 'colour_name': 'Medium/Dark'}]"
+930,nyx,High Definition Finishing Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw090ffa50/ProductImages/Face/High_Definition_Finishing_Power/800897834661_highdefinitionfinishingpowder_translucent_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/high-definition-finishing-powder/NYX_186.html?cgid=powder,https://www.nyxcosmetics.com,"A lightweight, translucent finishing powder that helps soften the appearance of fine lines and pores. This silky pressed powder has a fresh matte finish.",,powder,foundation,[],2017-12-24T02:31:12.680Z,2017-12-24T02:31:13.176Z,http://makeup-api.herokuapp.com/api/v1/products/930.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/930/original/open-uri20171224-4-1se55cy?1514082672,"[{'hex_value': '#F6F6F6', 'colour_name': 'Translucent'}, {'hex_value': '#F8E7C9', 'colour_name': 'Banana'}, {'hex_value': '#E1EDDF', 'colour_name': 'Mint Green'}]"
+929,nyx,Studio Finishing Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw3aaafbb3/ProductImages/Face/Studio_Finishing_Powder/studiofinishingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/studio-finishing-powder/NYX_079.html?cgid=powder,https://www.nyxcosmetics.com,A miracle in a jar! This 100% pure mineral silica finishing powder is perfect for setting your foundation or wearing alone. The luminous white powder goes on neutral and works on all skin tones. It leaves your skin looking radiant and luminous. Use lightly...a little goes a long way.,,powder,foundation,[],2017-12-24T02:31:11.703Z,2017-12-24T02:31:12.282Z,http://makeup-api.herokuapp.com/api/v1/products/929.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/929/original/open-uri20171224-4-vwf6hc?1514082671,[]
+928,nyx,Tango With Bronzing Powder,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw99f3e999/ProductImages/Face/Tango_With_Bronzing_Powder/tangowithbronzingpowder_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/tango-with-bronzing-powder/NYX_014.html?cgid=bronzer,https://www.nyxcosmetics.com,It takes two to tango with our brilliant bronzing powder to kickstart your look. Our mosaic bronzer shades create a golden glow on the face and body—like you’ve just returned from a Caribbean getaway. Sun-kissed never looked this beautiful.,,,bronzer,[],2017-12-24T02:31:03.619Z,2017-12-24T02:31:04.587Z,http://makeup-api.herokuapp.com/api/v1/products/928.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/928/original/open-uri20171224-4-1jps0th?1514082663,"[{'hex_value': '#D1AE8E', 'colour_name': 'Confessions Of Tanaholic'}, {'hex_value': '#AB7C62', 'colour_name': 'Bronze Ensemble'}, {'hex_value': '#D59DA8', 'colour_name': 'When Leopard Gets A Tan'}, {'hex_value': '#D6988D', 'colour_name': 'Tan Enthusiasm'}, {'hex_value': '#A97D64', 'colour_name': 'Tribal Odyssey'}]"
+927,nyx,Illuminator,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5248da3f/ProductImages/Face/Illuminator/800897809003_illuminator_narcissistic_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/illuminator/NYX_062.html?cgid=bronzer,https://www.nyxcosmetics.com,Brighten up your complexion! The radiant shimmer of this illuminator diffuses light so your skin looks vibrant and refreshed while adding a subtle glow. Available in 5 radiant colors.,,,bronzer,[],2017-12-24T02:30:59.587Z,2017-12-24T02:31:00.034Z,http://makeup-api.herokuapp.com/api/v1/products/927.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/927/original/open-uri20171224-4-firpx4?1514082659,"[{'hex_value': '#DDA284', 'colour_name': 'Narcissistic'}, {'hex_value': '#E99D8F', 'colour_name': 'Chaotic'}, {'hex_value': '#E5A083', 'colour_name': 'Magnetic'}, {'hex_value': '#E7CAB8', 'colour_name': 'Ritualistic'}, {'hex_value': '#DD9E95', 'colour_name': 'Enigmatic'}]"
+926,nyx,Matte Bronzer,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwed153ea9/ProductImages/Face/Matte_Bronzer/800897809058_mattebronzer_light_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/matte-bronzer/NYX_063.html?cgid=bronzer,https://www.nyxcosmetics.com,Perfect for Spring Summer and beyond – the Matte Bronzers have arrived! Achieve a natural and healthy looking complexion using any of the powder bronzers available in five russet shades. Perfect for that desired honey glow all year long!,,,bronzer,[],2017-12-24T02:28:51.848Z,2017-12-24T02:30:56.462Z,http://makeup-api.herokuapp.com/api/v1/products/926.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/926/original/open-uri20171224-4-6mx0la?1514082656,"[{'hex_value': '#C58965', 'colour_name': 'Light'}, {'hex_value': '#AC7D63', 'colour_name': 'Deep'}, {'hex_value': '#BB805E', 'colour_name': 'Medium'}, {'hex_value': '#B27759', 'colour_name': 'Dark Tan'}, {'hex_value': '#B17752', 'colour_name': 'Deep Tan'}]"
+924,nyx,Sweet Cheeks Blush Palette,20.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa0a9cf48/ProductImages/2016/Face/Sweet_Cheeks_Blush_Palette/sweetcheeksblushpalette_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/sweet-cheeks-blush-palette/NYX_359.html?cgid=blush,https://www.nyxcosmetics.com,"Get swept away by our drop-dead gorgeous Sweet Cheeks Blush Palette. This collection features eight highly pigmented and buttery-smooth colors that flawlessly suit any skin tone. Perfect for everyone from the pro on the go to the budding beauty guru, our irreplaceable set brings together a variety of exclusive shades in both matte and shimmery finishes. It’s true--we’ve got a serious blush crush!",,,blush,[],2017-12-24T02:28:47.814Z,2017-12-24T02:30:48.645Z,http://makeup-api.herokuapp.com/api/v1/products/924.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/924/original/open-uri20171224-4-7p4zdp?1514082648,[]
+923,nyx,Cheek Contour Duo Palette,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb9e0511a/ProductImages/2016/Face/Cheek_Contour_Duo_Palette/800897012007_cheekcontourduopalette_doubledate_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/cheek-contour-duo-palette/NYX_309.html?cgid=blush,https://www.nyxcosmetics.com,"Create natural-looking contours, sun-kissed cheeks and a gorgeous, lit-from-within glow with our new Cheek Contour Duos. Available in six silky shade combinations, each luxurious compact makes it easy to perfect your complexion on the go.",,,blush,[],2017-12-24T02:28:46.474Z,2017-12-24T02:30:46.419Z,http://makeup-api.herokuapp.com/api/v1/products/923.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/923/original/open-uri20171224-4-13zuxu4?1514082646,"[{'hex_value': '#8F4D3D', 'colour_name': 'Perfect Match'}, {'hex_value': '#A45340', 'colour_name': 'Two To Tango'}, {'hex_value': '#6D3D3B', 'colour_name': 'Ginger & Pepper'}, {'hex_value': '#6B4530', 'colour_name': 'Wine & Dine'}, {'hex_value': '#7A4C32', 'colour_name': 'Cheek On Cheek'}]"
+922,nyx,High Definition Blush Pro Refills,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw587b93a7/ProductImages/Face/High_Definition_Pro_Blush_Refills/highdefinitionproblushrefills_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/high-definition-blush-pro-refills/NYX_254.html?cgid=blush,https://www.nyxcosmetics.com,,,,blush,[],2017-12-24T02:28:44.070Z,2017-12-24T02:30:42.574Z,http://makeup-api.herokuapp.com/api/v1/products/922.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/922/original/open-uri20171224-4-1fun686?1514082642,"[{'hex_value': '#FACFD0', 'colour_name': 'Pastel Chic'}, {'hex_value': '#F4A38D', 'colour_name': 'Soft Spoken'}, {'hex_value': '#F38D9B', 'colour_name': 'Baby Doll'}, {'hex_value': '#F5948E', 'colour_name': 'Hamptons'}, {'hex_value': '#E58581', 'colour_name': 'Intuition'}, {'hex_value': '#F34395', 'colour_name': 'Electro'}, {'hex_value': '#F58F83', 'colour_name': 'Amber'}, {'hex_value': '#D6826B', 'colour_name': 'Bronzed'}, {'hex_value': '#E68B84', 'colour_name': ""Mauve N' Out""}, {'hex_value': '#CB7A79', 'colour_name': 'Deep Plum'}, {'hex_value': '#DC7675', 'colour_name': 'Bitten'}, {'hex_value': '#EA3034', 'colour_name': 'Crimson'}, {'hex_value': '#E34A57', 'colour_name': 'Tuscan'}, {'hex_value': '#EB6C63', 'colour_name': 'Summer'}, {'hex_value': '#FA694B', 'colour_name': 'Double Dare'}, {'hex_value': '#F49178', 'colour_name': 'Coraline'}, {'hex_value': '#F99282', 'colour_name': 'Pink The Town'}, {'hex_value': '#E28F81', 'colour_name': 'Rose Gold'}, {'hex_value': '#F49877', 'colour_name': 'Down To Earth'}, {'hex_value': '#F08F75', 'colour_name': 'Bright Lights'}, {'hex_value': '#D5967B', 'colour_name': ""Nude'Tude""}, {'hex_value': '#CC8774', 'colour_name': 'Glow'}, {'hex_value': '#CB896E', 'colour_name': 'Beach Babe'}, {'hex_value': '#BC9178', 'colour_name': 'Taupe'}]"
+921,nyx,Bright Idea Illuminating Stick,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwc8112b7d/ProductImages/2016/Face/Bright_Idea_Illuminating_Stick/brightideailluminatingstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/bright-idea-illuminating-stick/NYX_347.html?cgid=bronzer,https://www.nyxcosmetics.com,"Brighten things up with one of our new Bright Idea Illuminating Sticks! Available in a range of radiating hues--including four highlighters, four blushes and four bronzers--each creamy-soft shade goes on smoothly and sets right away for an instant, lit-from-within glow. Petite, portable and perfect for strobing, it’s the makeup must-have of the season.",,,bronzer,[],2017-12-24T02:28:42.079Z,2017-12-24T02:31:01.364Z,http://makeup-api.herokuapp.com/api/v1/products/921.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/921/original/open-uri20171224-4-wm9lld?1514082660,"[{'hex_value': '#E6C2C6', 'colour_name': 'Lavender Lust'}, {'hex_value': '#F4D0B8', 'colour_name': 'Chardonnay Shimmer'}, {'hex_value': '#FBC4AF', 'colour_name': 'Pearl Pink Lace'}, {'hex_value': '#F8BAA3', 'colour_name': 'Pinkie Dust'}, {'hex_value': '#FD876D', 'colour_name': 'Coralicious'}, {'hex_value': '#FD7373', 'colour_name': 'Rose Petal Pop'}, {'hex_value': '#C03731', 'colour_name': 'Brick Red Blaze'}, {'hex_value': '#EFB381', 'colour_name': 'Sun Kissed Crush'}, {'hex_value': '#E9A47A', 'colour_name': 'Bermuda Bronze'}, {'hex_value': '#DD9861', 'colour_name': 'Maui Suntan'}, {'hex_value': '#CE8A5B', 'colour_name': 'Sandy Glow'}, {'hex_value': '#C38451', 'colour_name': 'Topaz Tan'}]"
+920,nyx,Rouge Cream Blush,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw91979480/ProductImages/Face/Rouge_Cream_Blush/rougecreamblush_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/rouge-cream-blush/NYX_010.html?cgid=blush,https://www.nyxcosmetics.com,More delicious than peaches and cream? We like to think so. Our velvety smooth mineral Rouge Cream Blush offers a sheer wash of radiant color. The glorious payoff is dewy sultry and long-lasting.,,,blush,[],2017-12-24T02:28:39.285Z,2017-12-24T02:30:35.745Z,http://makeup-api.herokuapp.com/api/v1/products/920.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/920/original/open-uri20171224-4-11ndp61?1514082635,"[{'hex_value': '#E4878F', 'colour_name': 'Boho Chic'}, {'hex_value': '#F08E8B', 'colour_name': 'Natural'}, {'hex_value': '#D27772', 'colour_name': 'Rose Petal'}, {'hex_value': '#D36A6F', 'colour_name': 'Glow'}, {'hex_value': '#FF3986', 'colour_name': 'Hot Pink'}, {'hex_value': '#FF1850', 'colour_name': 'Red Cheeks'}, {'hex_value': '#EB6B50', 'colour_name': 'Orange'}, {'hex_value': '#EC6E71', 'colour_name': 'Tickled'}, {'hex_value': '#CA7769', 'colour_name': 'Tea Rose'}]"
+919,nyx,Mosaic Powder Blush,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5b50439f/ProductImages/Face/Mosaic_Powder_Blush/800897124533_mosaicpowderblush_highlighter_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/mosaic-powder-blush/NYX_008.html?cgid=bronzer,https://www.nyxcosmetics.com,This medley of 9 matte and shimmery colors creates a flush of color and dazzling glow for every skin tone. Use to highlight enhance brighten and bronze. Each mosaic of color blends beautifully with magical results.,,,bronzer,[],2017-12-24T02:28:37.401Z,2017-12-24T02:30:57.868Z,http://makeup-api.herokuapp.com/api/v1/products/919.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/919/original/open-uri20171224-4-1lhzgye?1514082657,"[{'hex_value': '#B7AB9F', 'colour_name': 'Highlighter'}, {'hex_value': '#B07C6E', 'colour_name': 'Peachy'}, {'hex_value': '#EDB698', 'colour_name': 'Silk'}, {'hex_value': '#FFC4C0', 'colour_name': 'Rosey'}, {'hex_value': '#C2928E', 'colour_name': 'Spice'}, {'hex_value': '#FECEC0', 'colour_name': 'Paradise'}, {'hex_value': '#FF7D5F', 'colour_name': 'Love'}, {'hex_value': '#CBA984', 'colour_name': 'Truth'}, {'hex_value': '#E6908F', 'colour_name': 'Dare'}]"
+918,nyx,Baked Blush,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwfdfb0cd6/ProductImages/Face/Baked_Blush/800897824181_bakedblush_fullonfemme_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/baked-blush/NYX_128.html?cgid=blush,https://www.nyxcosmetics.com,Baked to sheer perfection this luxurious formula is packed full of pigments to provide a natural glow and highlight to the face. Uniquely designed to be used wet or dry depending upon the makeup statement you want to make. When used dry with a brush the look is light and fresh. Want more color? No Problem! Apply wet with a makeup sponge for more intensity.,,,blush,[],2017-12-24T02:28:34.896Z,2017-12-24T02:30:31.495Z,http://makeup-api.herokuapp.com/api/v1/products/918.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/918/original/open-uri20171224-4-1g2payx?1514082631,"[{'hex_value': '#F9D1D1', 'colour_name': 'Full-On Femme'}, {'hex_value': '#FAD1CD', 'colour_name': 'Ladylike'}, {'hex_value': '#F4D5D2', 'colour_name': 'Journey'}, {'hex_value': '#FAD1CF', 'colour_name': 'Spanish Rose'}, {'hex_value': '#F4C6B9', 'colour_name': 'Foreplay'}, {'hex_value': '#F2BDC7', 'colour_name': 'Pink Fetish'}, {'hex_value': '#F8B7BD', 'colour_name': 'Statement Red'}, {'hex_value': '#E2C2B7', 'colour_name': 'Chiffon'}, {'hex_value': '#F0CBC3', 'colour_name': 'Wanderlust'}, {'hex_value': '#F9D9C4', 'colour_name': 'Sugar Mama'}, {'hex_value': '#E8C7B6', 'colour_name': 'Solstice'}, {'hex_value': '#E5C0A6', 'colour_name': 'Ignite'}]"
+917,nyx,Bronzer & Blusher Combo,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa51d41b7/ProductImages/Face/Bronzer_And_Blusher_Combo/bronzerandblushercombo_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/bronzer-and-blusher-combo/NYX_066.html?cgid=bronzer,https://www.nyxcosmetics.com,Get the perfect sun-kissed glow with complementing color combinations from our Bronzer/Blusher Combo. Each blush and bronzer pairing features flattering and natural-looking hues. With 5 shades to choose from it is easier than ever to achieve an impeccable Springtime and Summertime glow.,,,bronzer,[],2017-12-24T02:28:33.939Z,2017-12-24T02:30:55.011Z,http://makeup-api.herokuapp.com/api/v1/products/917.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/917/original/open-uri20171224-4-1e7o792?1514082654,"[{'hex_value': '#CC846C', 'colour_name': 'Bora Bora'}, {'hex_value': '#F5A493', 'colour_name': 'Marbella'}, {'hex_value': '#F19E96', 'colour_name': 'Phi Phi Island'}]"
+916,nyx,High Definition Blush,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw565af449/ProductImages/Face/High_Definition_Blush/highdefinitionblush_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/high-definition-blush/NYX_178.html?cgid=blush,https://www.nyxcosmetics.com,A high definition lightweight blush that blends evenly. This vibrant and silky blush delivers a beautiful flush of color and is paraben free.,,,blush,[],2017-12-24T02:28:30.659Z,2017-12-24T02:30:23.527Z,http://makeup-api.herokuapp.com/api/v1/products/916.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/916/original/open-uri20171224-4-12rfxs8?1514082623,"[{'hex_value': '#FACFD0', 'colour_name': 'Pastel Chic'}, {'hex_value': '#F4A38D', 'colour_name': 'Soft Spoken'}, {'hex_value': '#F38D9B', 'colour_name': 'Baby Doll'}, {'hex_value': '#F5948E', 'colour_name': 'Hamptons'}, {'hex_value': '#E58581', 'colour_name': 'Intuition'}, {'hex_value': '#F34395', 'colour_name': 'Electro'}, {'hex_value': '#F58F83', 'colour_name': 'Amber'}, {'hex_value': '#D6826B', 'colour_name': 'Bronzed'}, {'hex_value': '#E68B84', 'colour_name': ""Mauve N' Out""}, {'hex_value': '#CB7A79', 'colour_name': 'Deep Plum'}, {'hex_value': '#DC7675', 'colour_name': 'Bitten'}, {'hex_value': '#EA3034', 'colour_name': 'Crimson'}, {'hex_value': '#E34A57', 'colour_name': 'Tuscan'}, {'hex_value': '#EB6C63', 'colour_name': 'Summer'}, {'hex_value': '#FA694B', 'colour_name': 'Double Dare'}, {'hex_value': '#F49178', 'colour_name': 'Coraline'}, {'hex_value': '#F99282', 'colour_name': 'Pink The Town'}, {'hex_value': '#E28F81', 'colour_name': 'Rose Gold'}, {'hex_value': '#F49877', 'colour_name': 'Down To Earth'}, {'hex_value': '#F08F75', 'colour_name': 'Bright Lights'}, {'hex_value': '#D5967B', 'colour_name': ""Nude'Tude""}, {'hex_value': '#CC8774', 'colour_name': 'Glow'}, {'hex_value': '#CB896E', 'colour_name': 'Beach Babe'}, {'hex_value': '#BC9178', 'colour_name': 'Taupe'}]"
+915,nyx,Ombre Blush,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw87fb4a6b/ProductImages/2016/Face/Ombre_Blush/ombreblush_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/ombre-blush/NYX_318.html?cgid=blush,https://www.nyxcosmetics.com,"Treat your cheeks to a radiant flush of color with our Ombré Blush, a new gradient blush inspired by the ombré trend. This must-have formula features two silky colors blended into one perfectly coordinated shade combo. (It’s like they were meant for each other.)",,,blush,[],2017-12-24T02:28:28.955Z,2017-12-24T02:30:22.315Z,http://makeup-api.herokuapp.com/api/v1/products/915.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/915/original/open-uri20171224-4-uv4oww?1514082622,"[{'hex_value': '#FA7586', 'colour_name': 'Sweet Spring'}, {'hex_value': '#F15B67', 'colour_name': 'Insta Flame'}, {'hex_value': '#EC6BBD', 'colour_name': 'Code breaker'}, {'hex_value': '#C5867F', 'colour_name': 'Mauve Me'}, {'hex_value': '#F26746', 'colour_name': 'Feel The Heat'}, {'hex_value': '#F56958', 'colour_name': 'Soft Flush'}, {'hex_value': '#E18866', 'colour_name': 'Strictly Chic'}, {'hex_value': '#C0764F', 'colour_name': 'Nude To Me'}]"
+914,nyx,Stick Blush,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb08ab0fe/ProductImages/Face/Stick_Blush/stickblush_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/stick-blush/NYX_064.html?cgid=blush,https://www.nyxcosmetics.com,Add a touch of color with our creamy and extremely pigmented Stick Blush! Available in eight rich shades! Apply and receive the perfect glow every day!,,,blush,[],2017-12-24T02:28:27.562Z,2017-12-24T02:30:20.870Z,http://makeup-api.herokuapp.com/api/v1/products/914.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/914/original/open-uri20171224-4-15kclri?1514082620,"[{'hex_value': '#CF0E61', 'colour_name': 'Magnolia'}, {'hex_value': '#DE056E', 'colour_name': 'Pink Lotus'}, {'hex_value': '#DA1D71', 'colour_name': 'Tulip'}, {'hex_value': '#D81758', 'colour_name': 'Pink Poppy'}, {'hex_value': '#8B161E', 'colour_name': 'Tea Rose'}, {'hex_value': '#B70543', 'colour_name': 'Orchid'}, {'hex_value': '#7A1E13', 'colour_name': 'Hibiscus'}, {'hex_value': '#7C2617', 'colour_name': 'Water Lily'}]"
+913,nyx,Powder Blush,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw12ca4942/ProductImages/Face/Powder_Blush/powderblush_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/powder-blush/NYX_009.html?cgid=bronzer,https://www.nyxcosmetics.com,Our pressed powder blush delivers sheer silky color that glides on easily blends beautifully and creates a natural glow. The formula is richly-pigmented and lasts for hours.,,,bronzer,[],2017-12-24T02:28:25.043Z,2017-12-24T02:30:52.742Z,http://makeup-api.herokuapp.com/api/v1/products/913.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/913/original/open-uri20171224-4-lupzlr?1514082652,"[{'hex_value': '#DD7F97', 'colour_name': 'Rose Garden'}, {'hex_value': '#BA356C', 'colour_name': 'Pinky'}, {'hex_value': '#E07F88', 'colour_name': 'Pinched'}, {'hex_value': '#AB0A33', 'colour_name': 'Red'}, {'hex_value': '#D19E9D', 'colour_name': 'Angel'}, {'hex_value': '#C27B67', 'colour_name': 'Terra Cotta'}]"
+912,nyx,Gotcha Covered Concealer Pencil,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8ad0514f/ProductImages/2016/Face/Gotcha_Covered_Concealer_Pencil/gotchacoveredconcealerpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/gotcha-covered-concealer-pencil/NYX_346.html?cgid=concealer,https://www.nyxcosmetics.com,"Skin imperfections, beware! When it comes to covering up discoloration, our new Gotcha Covered Concealer Pencil does NOT mess around. Available in 20 blendable shades, this luxurious concealer is a master at spot concealing.",,concealer,foundation,[],2017-12-24T02:28:21.007Z,2017-12-24T02:30:17.143Z,http://makeup-api.herokuapp.com/api/v1/products/912.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/912/original/open-uri20171224-4-abiui6?1514082616,"[{'hex_value': '#F8DFC0', 'colour_name': 'Alabaster'}, {'hex_value': '#F3D0B2', 'colour_name': 'Light Ivory'}, {'hex_value': '#EFCBB1', 'colour_name': 'Ivory'}, {'hex_value': '#EDC7A2', 'colour_name': 'Light'}, {'hex_value': '#DDB997', 'colour_name': 'Nude Beige'}, {'hex_value': '#DCBA97', 'colour_name': 'Medium Olive'}, {'hex_value': '#DBB795', 'colour_name': 'Honey Beige'}, {'hex_value': '#DDB174', 'colour_name': 'Caramel Beige'}, {'hex_value': '#D7A568', 'colour_name': 'Classic Tan'}, {'hex_value': '#D1A278', 'colour_name': 'Golden'}, {'hex_value': '#CB9A6F', 'colour_name': 'Sand'}, {'hex_value': '#B9884D', 'colour_name': 'Deep Golden'}, {'hex_value': '#AA5E2A', 'colour_name': 'Mahogany'}, {'hex_value': '#804F31', 'colour_name': 'Cappuccino'}, {'hex_value': '#7B5236', 'colour_name': 'Cocoa'}, {'hex_value': '#69442A', 'colour_name': 'Deep Rich'}, {'hex_value': '#673C2B', 'colour_name': 'Espresso'}, {'hex_value': '#653A29', 'colour_name': 'Deep Espresso'}, {'hex_value': '#F4D1B3', 'colour_name': 'Beige'}]"
+911,nyx,"Conceal, Correct, Contour Palette",12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbef45c94/ProductImages/Face/Conceal_Correct_Contour_Palette/800897831479_concealcorrectcontourpalette_light_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/conceal-correct-contour-palette/NYX_170.html?cgid=concealer,https://www.nyxcosmetics.com,"Color-match your skin using our perfecting and correcting palettes to conceal, correct, or contour. With six shades to choose from in each set you can cover up problem spots even out imperfections and accentuate your best features in a flash. Use these buildable colors on their own or combine them to create the ideal tone.",,concealer,foundation,[],2017-12-24T02:28:19.928Z,2017-12-24T02:30:15.919Z,http://makeup-api.herokuapp.com/api/v1/products/911.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/911/original/open-uri20171224-4-lx4vmq?1514082615,"[{'hex_value': '#FFFEFC', 'colour_name': 'Light'}, {'hex_value': '#FDF9F6', 'colour_name': 'Medium'}, {'hex_value': '#F1F2F4', 'colour_name': 'Deep'}]"
+910,nyx,Wonder Pencil,4.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5e345fad/ProductImages/Face/Wonder_Pencil/wonderpencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/wonder-pencil/NYX_091.html?cgid=eyeliner,https://www.nyxcosmetics.com,Wonder Pencil…the essential pencil that fulfills all of your beauty desires. Conquer 3 critical make-up tasks with one product: CONCEAL flaws and blemishes with creamy precision; LINE your lips against lipstick bleeding and fading; and BRIGHTEN your eyes along the water line. Will wonders never cease? Not with the Wonder Pencil in your bag!,,pencil,eyeliner,[],2017-12-24T02:28:18.879Z,2017-12-24T02:32:16.275Z,http://makeup-api.herokuapp.com/api/v1/products/910.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/910/original/open-uri20171224-4-1f18cvd?1514082735,"[{'hex_value': '#E5C19F', 'colour_name': 'Light'}, {'hex_value': '#C49D7E', 'colour_name': 'Medium'}, {'hex_value': '#AF8F76', 'colour_name': 'Deep'}]"
+909,nyx,Dark Circle Concealer,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw477d3d9a/ProductImages/Face/Dark_Circle_Concealer/800897822958_darkcircleconcealer_light_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/dark-circle-concealer/NYX_133.html?cgid=concealer,https://www.nyxcosmetics.com,A serious solution for one of beauty’s most challenging problems! No fancy names just a product that can be counted on to do the job. The product glides on without looking thick or obvious. The subtle hint of orange counteracts the appearance of dark circles while natural skin-toned pigments work in unison to provide the ultimate coverage.,,concealer,foundation,[],2017-12-24T02:28:17.702Z,2017-12-24T02:30:13.878Z,http://makeup-api.herokuapp.com/api/v1/products/909.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/909/original/open-uri20171224-4-vt9rh6?1514082613,"[{'hex_value': '#ECAA87', 'colour_name': 'Fair'}, {'hex_value': '#EA9B70', 'colour_name': 'Light'}, {'hex_value': '#E5895A', 'colour_name': 'Medium'}, {'hex_value': '#A96540', 'colour_name': 'Deep'}]"
+908,nyx,Gotcha Covered Concealer,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw947da0d5/ProductImages/Face/Gotcha_Covered_Concealer/gotchacoveredconcealer_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/gotcha-covered-concealer/NYX_203.html?cgid=concealer,https://www.nyxcosmetics.com,"Gotcha Covered Concealer always has your back! Now available in 10 more gorgeous shades, our waterproof, full coverage concealer effectively covers up discolorations and imperfections without creasing or caking. Infused with coconut oil, this highly blendable concealer also leaves your face with a healthy-looking glow.",,concealer,foundation,[],2017-12-24T02:28:15.481Z,2017-12-24T02:30:12.047Z,http://makeup-api.herokuapp.com/api/v1/products/908.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/908/original/open-uri20171224-4-1980tbf?1514082611,"[{'hex_value': '#E9CFB6', 'colour_name': 'Alabaster'}, {'hex_value': '#E7C7AE', 'colour_name': 'Ivory'}, {'hex_value': '#E0C2AA', 'colour_name': 'Soft Ivory'}, {'hex_value': '#D6B79B', 'colour_name': 'Light'}, {'hex_value': '#E0C1A5', 'colour_name': 'Natural'}, {'hex_value': '#DCB18F', 'colour_name': 'Beige'}, {'hex_value': '#D1A77D', 'colour_name': 'Medium'}, {'hex_value': '#CFA984', 'colour_name': 'Medium Olive'}, {'hex_value': '#D5AB81', 'colour_name': 'Fresh Beige'}, {'hex_value': '#C9A37E', 'colour_name': 'Golden'}, {'hex_value': '#B99774', 'colour_name': 'Tan'}, {'hex_value': '#BB906D', 'colour_name': 'Sand'}, {'hex_value': '#B08767', 'colour_name': 'Deep Honey'}, {'hex_value': '#957151', 'colour_name': 'Deep'}, {'hex_value': '#A47C59', 'colour_name': 'Cappuccino'}, {'hex_value': '#997551', 'colour_name': 'Deep Caramel'}, {'hex_value': '#937052', 'colour_name': 'Mocha'}, {'hex_value': '#715138', 'colour_name': 'Ebony'}, {'hex_value': '#72573C', 'colour_name': 'Cocoa'}, {'hex_value': '#5E4433', 'colour_name': 'Espresso'}]"
+907,nyx,Color Correcting Palette,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb6d96368/ProductImages/Face/Color_Correcting_Palette/800897834722_colorcorrectingpalette_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/color-correcting-palette/NYX_171.html?cgid=concealer,https://www.nyxcosmetics.com,Treat your face to the ultimate concealer palette in six color correcting shades. Customizable to create your ideal shade to cover imperfections the lightweight formula glides on for an ultra-smooth finish and leaves skin feeling soft and supple.,,concealer,foundation,[],2017-12-24T02:28:14.774Z,2017-12-24T02:30:11.232Z,http://makeup-api.herokuapp.com/api/v1/products/907.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/907/original/open-uri20171224-4-1b7ug0q?1514082611,[]
+906,nyx,Concealer Jar,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw04c31800/ProductImages/Face/Concealer_Jar/concealerjar_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/concealer-jar/NYX_011.html?cgid=concealer,https://www.nyxcosmetics.com,"Obscure imperfections and blur away problem areas with one of our Concealer Jars. Now available in 10 more shades to accommodate an even wider range of skin tones, this creamy formula stands up to the villains of unwelcome imperfections with a vengeance.",,concealer,foundation,[],2017-12-24T02:28:11.932Z,2017-12-24T02:30:08.254Z,http://makeup-api.herokuapp.com/api/v1/products/906.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/906/original/open-uri20171224-4-gko26q?1514082608,"[{'hex_value': '#FCDAB5', 'colour_name': 'Alabaster'}, {'hex_value': '#FCCAA5', 'colour_name': 'Porcelain'}, {'hex_value': '#FCCEAD', 'colour_name': 'Fair'}, {'hex_value': '#EFB590', 'colour_name': 'Light'}, {'hex_value': '#DAA677', 'colour_name': 'Nude Beige'}, {'hex_value': '#D9A073', 'colour_name': 'Beige'}, {'hex_value': '#CDA170', 'colour_name': 'Sand Beige'}, {'hex_value': '#CB885E', 'colour_name': 'Medium'}, {'hex_value': '#DB9A74', 'colour_name': 'Glow'}, {'hex_value': '#CC9D69', 'colour_name': 'Fresh Beige'}, {'hex_value': '#D0925F', 'colour_name': 'Golden'}, {'hex_value': '#BC8B50', 'colour_name': 'Caramel'}, {'hex_value': '#BB7B4B', 'colour_name': 'Tan'}, {'hex_value': '#B9743D', 'colour_name': 'Deep Golden'}, {'hex_value': '#A76938', 'colour_name': 'Nutmeg'}, {'hex_value': '#B1703A', 'colour_name': 'Cappuccino'}, {'hex_value': '#A76C40', 'colour_name': 'Cocoa'}, {'hex_value': '#885333', 'colour_name': 'Deep Rich'}, {'hex_value': '#805332', 'colour_name': 'Espresso'}, {'hex_value': '#71482C', 'colour_name': 'Deep Espresso'}, {'hex_value': '#F8D383', 'colour_name': 'Yellow'}, {'hex_value': '#D5BCE6', 'colour_name': 'Lavender'}, {'hex_value': '#BDE0C0', 'colour_name': 'Green'}, {'hex_value': '#FB772F', 'colour_name': 'Orange'}]"
+905,nyx,HD Photogenic Concealer Wand,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw10ab1d12/ProductImages/2016/Face/HD_Photogenic_Concealer_Wand/concealerwand_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/hd-photogenic-concealer-wand/NYX_013.html?cgid=concealer,https://www.nyxcosmetics.com,"Now available in 12 more shades to accommodate an even wider range of skin tones, our best-selling HD Studio Photogenic Concealer effectively covers imperfections, discoloration and under-eye circles without ever looking cakey or obvious. The result is beautiful, natural-looking coverage you can count on.",,concealer,foundation,[],2017-12-24T02:28:08.470Z,2017-12-24T02:30:04.357Z,http://makeup-api.herokuapp.com/api/v1/products/905.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/905/original/open-uri20171224-4-1tmsfyh?1514082604,"[{'hex_value': '#EBC7A3', 'colour_name': 'Alabaster'}, {'hex_value': '#ECC3A5', 'colour_name': 'Porcelain'}, {'hex_value': '#EABF9D', 'colour_name': 'Fair'}, {'hex_value': '#E6B897', 'colour_name': 'Light'}, {'hex_value': '#DEB391', 'colour_name': 'Nude Beige'}, {'hex_value': '#DAB08A', 'colour_name': 'Beige'}, {'hex_value': '#D2A67F', 'colour_name': 'Sand Beige'}, {'hex_value': '#D5A080', 'colour_name': 'Medium'}, {'hex_value': '#D49F7D', 'colour_name': 'Glow'}, {'hex_value': '#CD9E74', 'colour_name': 'Fresh Beige'}, {'hex_value': '#CE9872', 'colour_name': 'Golden'}, {'hex_value': '#C5966A', 'colour_name': 'Caramel'}, {'hex_value': '#BE895F', 'colour_name': 'Tan'}, {'hex_value': '#BB8255', 'colour_name': 'Deep Golden'}, {'hex_value': '#B2794C', 'colour_name': 'Nutmeg'}, {'hex_value': '#945D3F', 'colour_name': 'Cappuccino'}, {'hex_value': '#93633F', 'colour_name': 'Cocoa'}, {'hex_value': '#83573E', 'colour_name': 'Deep Rich'}, {'hex_value': '#7C4F38', 'colour_name': 'Espresso'}, {'hex_value': '#6B3E27', 'colour_name': 'Deep Espresso'}, {'hex_value': '#F2CC8E', 'colour_name': 'Yellow'}, {'hex_value': '#BFB3C9', 'colour_name': 'Lavender'}, {'hex_value': '#A0C8AD', 'colour_name': 'Green'}]"
+904,nyx,Tinted Moisturizer,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8cbca26c/ProductImages/Face/Tinted_Moisturizer/tintedmoisturizer_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/tinted-moisturizer/NYX_131.html?cgid=foundation,https://www.nyxcosmetics.com,Lightweight with just a hint of sheer color this hydrating formula makes skin feel softer and smoother. The dewy natural glow provides a “no-makeup” look and feel yet covers imperfections with a natural hydrating touch.,,,foundation,[],2017-12-24T02:28:06.246Z,2017-12-24T02:30:02.241Z,http://makeup-api.herokuapp.com/api/v1/products/904.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/904/original/open-uri20171224-4-afx6c?1514082602,"[{'hex_value': '#9D4527', 'colour_name': 'Almond'}, {'hex_value': '#B96849', 'colour_name': 'Tan'}, {'hex_value': '#BA7B59', 'colour_name': 'Warm Beige'}, {'hex_value': '#CC805B', 'colour_name': 'Natural Beige'}, {'hex_value': '#C49261', 'colour_name': 'Soft Beige'}, {'hex_value': '#E5A990', 'colour_name': 'Buff'}, {'hex_value': '#CEA26D', 'colour_name': 'Nude'}]"
+903,nyx,Define & Refine Powder Foundation,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwe1ce6d79/ProductImages/Face/Define_And_Refine_Powder_Foundation/defineandrefinepowderfoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/define-and-refine-powder-foundation/NYX_172.html?cgid=powder,https://www.nyxcosmetics.com,This essential medium to full coverage compact features a deeper crescent of color with a hint of pearl. Blend them together to customize your look for perfection year-round.,,powder,foundation,[],2017-12-24T02:28:04.203Z,2017-12-24T02:31:19.051Z,http://makeup-api.herokuapp.com/api/v1/products/903.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/903/original/open-uri20171224-4-1rbb28u?1514082678,"[{'hex_value': '#CBAD95', 'colour_name': 'Light'}, {'hex_value': '#CEAB86', 'colour_name': 'Golden'}, {'hex_value': '#CEAA81', 'colour_name': 'Beige'}, {'hex_value': '#B18461', 'colour_name': 'Deep'}, {'hex_value': '#DBC0A2', 'colour_name': 'Fair'}, {'hex_value': '#CAA687', 'colour_name': 'Sand'}]"
+902,nyx,BB Cream,13.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa8106b14/ProductImages/Face/BB_Cream/800897822927_bbcream_natural_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/bb-cream/NYX_137.html?cgid=foundation,https://www.nyxcosmetics.com,"Perfect the “no makeup” look with our BB Cream. Specially formulated without oil, this mineral-infused formula hydrates the skin and helps the complexion appear smoother. Wear it as a primer under your foundation, or alone for a touch of lightweight color.",,,foundation,[],2017-12-24T02:28:01.955Z,2017-12-24T02:29:59.892Z,http://makeup-api.herokuapp.com/api/v1/products/902.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/902/original/open-uri20171224-4-1v926lt?1514082599,"[{'hex_value': '#E4CFBA', 'colour_name': 'Nude'}, {'hex_value': '#E5C6AA', 'colour_name': 'Natural'}, {'hex_value': '#DEBFA0', 'colour_name': 'Golden'}]"
+901,nyx,Invincible Fullest Coverage Foundation,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw84635185/ProductImages/2016/Face/Invincible_Foundation/invinciblefoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/invincible-fullest-coverage-foundation/NYX_140.html?cgid=foundation,https://www.nyxcosmetics.com,"Have something to hide? We’ve got just the thing for you. Now available in five more shades to accommodate a wider range of skin tones, NYX Professional Makeup Invincible Fullest Coverage Foundation offers exceptional coverage with natural-looking finish. The incredibly high-pigment load has the super powers to hide even the most challenging cover-ups, including skin discolorations and more. The finished look is soft, matte, beautiful and flawless.",,,foundation,[],2017-12-24T02:27:59.656Z,2017-12-24T02:29:57.215Z,http://makeup-api.herokuapp.com/api/v1/products/901.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/901/original/open-uri20171224-4-1dx6w5e?1514082597,"[{'hex_value': '#F2C59B', 'colour_name': 'Ivory'}, {'hex_value': '#EFBF97', 'colour_name': 'Fair'}, {'hex_value': '#EEB991', 'colour_name': 'Porcelain'}, {'hex_value': '#E8AF84', 'colour_name': 'Light'}, {'hex_value': '#DBA67C', 'colour_name': 'Light Medium'}, {'hex_value': '#CF9A72', 'colour_name': 'Medium'}, {'hex_value': '#CF9468', 'colour_name': 'Medium Beige'}, {'hex_value': '#CF8F63', 'colour_name': 'Golden Beige'}, {'hex_value': '#CC8C5E', 'colour_name': 'Cool Tan'}, {'hex_value': '#C58557', 'colour_name': 'Honey Beige'}, {'hex_value': '#C3865A', 'colour_name': 'Warm Tan'}, {'hex_value': '#BE8558', 'colour_name': 'Tan'}, {'hex_value': '#B77A4E', 'colour_name': 'Caramel'}, {'hex_value': '#A16438', 'colour_name': 'Chestnut'}, {'hex_value': '#753F1B', 'colour_name': 'Cocoa'}, {'hex_value': '#FAD0A6', 'colour_name': 'Alabaster'}, {'hex_value': '#D1A278', 'colour_name': 'Nude Beige'}, {'hex_value': '#D59B69', 'colour_name': 'Warm Nude'}, {'hex_value': '#653C1E', 'colour_name': 'Deep'}, {'hex_value': '#513118', 'colour_name': 'Espresso'}]"
+900,nyx,Mineral Stick Foundation,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw25bdfa2c/ProductImages/Face/Mineral_Stick_Foundation/mineralstickfoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/mineral-stick-foundation/NYX_130.html?cgid=foundation,https://www.nyxcosmetics.com,"Portable and buildable, our Mineral Stick Foundation is ideal when you’re on the move. The luxurious formula is easy to apply and extremely blendable, which allows for flawless highlighting and contouring. You can also use this versatile foundation on the entire face or in isolated areas that need a little extra attention – it’s all up to you! Our creamy foundation is now available in six new shades.",,,foundation,[],2017-12-24T02:27:57.842Z,2017-12-24T02:29:54.044Z,http://makeup-api.herokuapp.com/api/v1/products/900.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/900/original/open-uri20171224-4-1byvmqd?1514082593,"[{'hex_value': '#ECCAB1', 'colour_name': 'Fair'}, {'hex_value': '#E9C6A8', 'colour_name': 'Porcelain'}, {'hex_value': '#E7BA99', 'colour_name': 'Light'}, {'hex_value': '#D9AF85', 'colour_name': 'Light Medium'}, {'hex_value': '#D3A97F', 'colour_name': 'Medium Beige'}, {'hex_value': '#D3A776', 'colour_name': 'Golden Beige'}, {'hex_value': '#CF9A6E', 'colour_name': 'Cool Tan'}, {'hex_value': '#CF9B6B', 'colour_name': 'Warm Tan'}, {'hex_value': '#C38F5F', 'colour_name': 'Caramel'}, {'hex_value': '#BB8757', 'colour_name': 'Deep Honey'}, {'hex_value': '#AB814F', 'colour_name': 'Warm Almond'}, {'hex_value': '#A6754C', 'colour_name': 'Cool Chestnut'}, {'hex_value': '#9D6C43', 'colour_name': 'Rich'}, {'hex_value': '#8E643E', 'colour_name': 'Espresso'}, {'hex_value': '#815838', 'colour_name': 'Cocoa'}]"
+899,nyx,Stay Matte But Not Flat Liquid Foundation,7.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw98d18f1b/ProductImages/Face/Stay_Matte_But_Not_Flat_Liquid_Foundation/staymattebutnotflatliquidfoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/stay-matte-but-not-flat-liquid-foundation/NYX_067.html?cgid=foundation,https://www.nyxcosmetics.com,"Now available in 10 more gorgeous shades, Stay Matte But Not Flat Liquid Foundation provides full coverage with a mineral enriched matte finish and accommodates more skin tones than ever before. The oil-free and water-based formula is perfect for both day and nighttime wear.",,,foundation,[],2017-12-24T02:27:53.726Z,2017-12-24T02:29:50.833Z,http://makeup-api.herokuapp.com/api/v1/products/899.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/899/original/open-uri20171224-4-1ni57md?1514082590,"[{'hex_value': '#EDCBA6', 'colour_name': 'Ivory'}, {'hex_value': '#EAC6A2', 'colour_name': 'Alabaster'}, {'hex_value': '#E1B696', 'colour_name': 'Porcelain'}, {'hex_value': '#E1AF8C', 'colour_name': 'Creamy Natural'}, {'hex_value': '#E3B896', 'colour_name': 'Light Beige'}, {'hex_value': '#D2A07F', 'colour_name': 'Soft Beige'}, {'hex_value': '#D3A886', 'colour_name': 'Nude Beige'}, {'hex_value': '#CBA076', 'colour_name': 'Nude'}, {'hex_value': '#D8A27C', 'colour_name': 'Natural'}, {'hex_value': '#DAAC8B', 'colour_name': 'Warm'}, {'hex_value': '#D8A787', 'colour_name': 'Medium'}, {'hex_value': '#C39876', 'colour_name': 'Soft Sand'}, {'hex_value': '#CD986C', 'colour_name': 'Warm Beige'}, {'hex_value': '#C6996F', 'colour_name': 'Fresh Beige'}, {'hex_value': '#C59974', 'colour_name': 'Medium Beige'}, {'hex_value': '#CA936A', 'colour_name': 'Golden Beige'}, {'hex_value': '#C6946F', 'colour_name': 'Tan'}, {'hex_value': '#BA8F6C', 'colour_name': 'Olive'}, {'hex_value': '#B78968', 'colour_name': 'Caramel'}, {'hex_value': '#B78D67', 'colour_name': 'Beige'}, {'hex_value': '#B28564', 'colour_name': 'Sienna'}, {'hex_value': '#9E7150', 'colour_name': 'Tawny'}, {'hex_value': '#B9835F', 'colour_name': 'Cinnamon Spice'}, {'hex_value': '#A97C5B', 'colour_name': 'Nutmeg'}, {'hex_value': '#AA754B', 'colour_name': 'Deep Golden'}, {'hex_value': '#A07356', 'colour_name': 'Chestnut'}, {'hex_value': '#8E5D3D', 'colour_name': 'Deep Olive'}, {'hex_value': '#895A3E', 'colour_name': 'Deep Rich'}, {'hex_value': '#784B36', 'colour_name': 'Cocoa'}, {'hex_value': '#6C4838', 'colour_name': 'Deep Dark'}]"
+898,nyx,Stay Matte But Not Flat Powder Foundation,9.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7771a0c9/ProductImages/Face/Stay_Matte_But_Not_Flat_Powder_Foundation/staymattebutnotflatpowderfoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/stay-matte-but-not-flat-powder-foundation/NYX_002.html?cgid=powder,https://www.nyxcosmetics.com,"Want a matte finish to help you achieve a flawless-looking complexion? Now available in 10 more gorgeous shades, our Stay Matte But Not Flat Powder Foundation provides the perfect finish to flatter more skin tones than ever before. You’ll look naturally flawless with minimal effort!",,powder,foundation,[],2017-12-24T02:27:50.586Z,2017-12-24T02:31:06.445Z,http://makeup-api.herokuapp.com/api/v1/products/898.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/898/original/open-uri20171224-4-1bzitts?1514082666,"[{'hex_value': '#F1D1BA', 'colour_name': 'Ivory'}, {'hex_value': '#F4D8C2', 'colour_name': 'Alabaster'}, {'hex_value': '#EFC6B0', 'colour_name': 'Porcelain'}, {'hex_value': '#EFCAB7', 'colour_name': 'Creamy Natural'}, {'hex_value': '#F5D0B5', 'colour_name': 'Light Beige'}, {'hex_value': '#F0C2A1', 'colour_name': 'Soft Beige'}, {'hex_value': '#EECAAA', 'colour_name': 'Nude Beige'}, {'hex_value': '#EECAB0', 'colour_name': 'Nude'}, {'hex_value': '#F3CDB6', 'colour_name': 'Natural'}, {'hex_value': '#E7B89A', 'colour_name': 'Warm'}, {'hex_value': '#E9B39B', 'colour_name': 'Medium'}, {'hex_value': '#F0BE9D', 'colour_name': 'Soft Sand'}, {'hex_value': '#F1BB97', 'colour_name': 'Warm Beige'}, {'hex_value': '#E9AF7D', 'colour_name': 'Fresh Beige'}, {'hex_value': '#ECBB9B', 'colour_name': 'Medium Beige'}, {'hex_value': '#F0BA98', 'colour_name': 'Golden Beige'}, {'hex_value': '#EDB38E', 'colour_name': 'Tan'}, {'hex_value': '#D6A57D', 'colour_name': 'Olive'}, {'hex_value': '#E9AD88', 'colour_name': 'Caramel'}, {'hex_value': '#D19E73', 'colour_name': 'Beige'}, {'hex_value': '#F0AC7D', 'colour_name': 'Sienna'}, {'hex_value': '#E8A475', 'colour_name': 'Tawny'}, {'hex_value': '#D7986D', 'colour_name': 'Cinnamon Spice'}, {'hex_value': '#CF8B64', 'colour_name': 'Nutmeg'}, {'hex_value': '#C18B5C', 'colour_name': 'Deep Golden'}, {'hex_value': '#D6956D', 'colour_name': 'Chestnut'}, {'hex_value': '#C88B5C', 'colour_name': 'Deep Olive'}, {'hex_value': '#BA855D', 'colour_name': 'Deep Rich'}, {'hex_value': '#BA7B5A', 'colour_name': 'Cocoa'}, {'hex_value': '#A56A48', 'colour_name': 'Deep Dark'}]"
+897,nyx,HD Studio Photogenic Foundation,18.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw37943ebb/ProductImages/2017/Face/High_Definition_Foundation/800897051822_highdefinitionfoundation_chestnut_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/hd-studio-photogenic-foundation/NYX_185.html?cgid=foundation,https://www.nyxcosmetics.com,"Flawless-looking skin is no longer just for celebrities and models! Now available in 20 blendable shades, our HD Studio Photogenic Foundation uses light-diffusing technology to enhance the appearance of silky-smooth skin. Achieve a picture-perfect look anytime you’re in the spotlight.",,,foundation,[],2017-12-24T02:27:47.335Z,2017-12-24T02:29:45.476Z,http://makeup-api.herokuapp.com/api/v1/products/897.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/897/original/data?1514082585,"[{'hex_value': '#E9AF8A', 'colour_name': 'Nude'}, {'hex_value': '#DEB48E', 'colour_name': 'Warm Ivory'}, {'hex_value': '#D8956B', 'colour_name': 'Soft Beige'}, {'hex_value': '#D8A786', 'colour_name': 'Vanilla'}, {'hex_value': '#D08B62', 'colour_name': 'Natural'}, {'hex_value': '#D0A37A', 'colour_name': 'Sand Beige'}, {'hex_value': '#D99F77', 'colour_name': 'True Beige'}, {'hex_value': '#D5A16F', 'colour_name': 'Warm Beige'}, {'hex_value': '#CA976A', 'colour_name': 'Medium'}, {'hex_value': '#C28769', 'colour_name': 'Natural Beige'}, {'hex_value': '#B8795A', 'colour_name': 'Warm Sand'}, {'hex_value': '#CA935D', 'colour_name': 'Golden Honey'}, {'hex_value': '#BF8756', 'colour_name': 'Caramel'}, {'hex_value': '#A16448', 'colour_name': 'California Tan'}, {'hex_value': '#AE7548', 'colour_name': 'Soft Mocha'}, {'hex_value': '#A56C41', 'colour_name': 'Maple'}, {'hex_value': '#975C3E', 'colour_name': 'Cappuccino'}, {'hex_value': '#865B3B', 'colour_name': 'Chestnut'}, {'hex_value': '#6F452F', 'colour_name': 'Cocoa'}, {'hex_value': '#553528', 'colour_name': 'Deep Espresso'}]"
+896,nyx,Hydra Touch Powder Foundation,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0bf2e8ad/ProductImages/Face/Hydra_Touch_Powder_Foundation/hydratouchpowderfoundation_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/hydra-touch-powder-foundation/NYX_229.html?cgid=powder,https://www.nyxcosmetics.com,"A weightless pressed powder that offers buildable coverage with a matte finish. Now available in five more silky shades, Hydra Touch Powder Foundation can be applied dry or wet. Our innovative formula also contains moisturizing botanical extracts to leave skin looking soft and fresh.",,powder,foundation,[],2017-12-24T02:27:42.746Z,2017-12-24T02:31:15.383Z,http://makeup-api.herokuapp.com/api/v1/products/896.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/896/original/open-uri20171224-4-133ccrb?1514082674,"[{'hex_value': '#F3D5BB', 'colour_name': 'Porcelain'}, {'hex_value': '#ECC8A4', 'colour_name': 'Natural'}, {'hex_value': '#F5C8A7', 'colour_name': 'Beige'}, {'hex_value': '#F3C1A0', 'colour_name': 'Medium Beige'}, {'hex_value': '#EEC3A3', 'colour_name': 'Buff Beige'}, {'hex_value': '#EDB697', 'colour_name': 'Tan'}, {'hex_value': '#E9B897', 'colour_name': 'Soft Tan'}, {'hex_value': '#E6B887', 'colour_name': 'Golden Beige'}, {'hex_value': '#EDB38B', 'colour_name': 'Golden'}, {'hex_value': '#EBB996', 'colour_name': 'Warm Beige'}, {'hex_value': '#F2AD84', 'colour_name': 'Fawn'}, {'hex_value': '#EBAC81', 'colour_name': 'Amber'}, {'hex_value': '#DEA675', 'colour_name': 'Deep Honey'}, {'hex_value': '#EAAD7E', 'colour_name': 'Honey'}, {'hex_value': '#E19865', 'colour_name': 'Caramel'}, {'hex_value': '#C98860', 'colour_name': 'Sable'}, {'hex_value': '#C88165', 'colour_name': 'Nutmeg'}, {'hex_value': '#B6846B', 'colour_name': 'Cocoa'}, {'hex_value': '#AB725F', 'colour_name': 'Deep Espresso'}, {'hex_value': '#E8CCB1', 'colour_name': 'Ivory'}]"
+895,nyx,Pro Foundation Mixer,10.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9dcfebd8/ProductImages/2016/Face/Pro_Foundation_Mixer/profoundationmixer_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/pro-foundation-mixer/NYX_320.html?cgid=foundation,https://www.nyxcosmetics.com,"Your custom shade is just a Pro Foundation Mixer away! Our new shade mixers are designed to adjust the tone, shade and finish of any liquid foundation, resulting in a truly perfect match.",,,foundation,[],2017-12-24T02:27:41.018Z,2017-12-24T02:29:39.387Z,http://makeup-api.herokuapp.com/api/v1/products/895.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/895/original/open-uri20171224-4-1hvbqwz?1514082579,"[{'hex_value': '#FBFBFD', 'colour_name': 'White'}, {'hex_value': '#FBF4EA', 'colour_name': 'Opalescent'}, {'hex_value': '#F1CFB6', 'colour_name': 'Luminous'}, {'hex_value': '#B7683F', 'colour_name': 'Warmth'}, {'hex_value': '#B58867', 'colour_name': 'Olive'}, {'hex_value': '#6B4F3A', 'colour_name': 'Deep'}]"
+894,nyx,Total Control Drop Foundation,14.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2afa7b45/ProductImages/2017/Face/Total_Control_Drop_Foundation/800897068837_totalcontroldropfoundation_buff_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/total-control-drop-foundation/NYX_413.html?cgid=foundation,https://www.nyxcosmetics.com,,,,foundation,[],2017-12-24T02:27:38.676Z,2017-12-24T02:29:35.768Z,http://makeup-api.herokuapp.com/api/v1/products/894.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/894/original/data?1514082575,"[{'hex_value': '#F5DBC0', 'colour_name': 'Pale'}, {'hex_value': '#EBCCB0', 'colour_name': 'Alabaster'}, {'hex_value': '#E2C2A9', 'colour_name': 'Porcelain'}, {'hex_value': '#EEC5A9', 'colour_name': 'Light Ivory'}, {'hex_value': '#E7BDA7', 'colour_name': 'Light'}, {'hex_value': '#E6C1A4', 'colour_name': 'Vanilla'}, {'hex_value': '#C7A987', 'colour_name': 'Nude'}, {'hex_value': '#DEB08C', 'colour_name': 'Natural'}, {'hex_value': '#C69A7D', 'colour_name': 'Soft Beige'}, {'hex_value': '#DCB083', 'colour_name': 'True Beige'}, {'hex_value': '#D1A683', 'colour_name': 'Medium Olive'}, {'hex_value': '#CBA07D', 'colour_name': 'Buff'}, {'hex_value': '#C89F73', 'colour_name': 'Beige'}, {'hex_value': '#C6956A', 'colour_name': 'Classic Tan'}, {'hex_value': '#BB8E71', 'colour_name': 'Camel'}, {'hex_value': '#C59263', 'colour_name': 'Golden'}, {'hex_value': '#BD8856', 'colour_name': 'Golden Honey'}, {'hex_value': '#BE8D55', 'colour_name': 'Caramel'}, {'hex_value': '#B28566', 'colour_name': 'Cinnamon'}, {'hex_value': '#B17B4D', 'colour_name': 'Mahogany'}, {'hex_value': '#A37A5A', 'colour_name': 'Nutmeg'}, {'hex_value': '#A97647', 'colour_name': 'Cappuccino'}, {'hex_value': '#9C7151', 'colour_name': 'Sienna'}, {'hex_value': '#9D6E40', 'colour_name': 'Deep Sable'}, {'hex_value': '#96663E', 'colour_name': 'Mocha'}, {'hex_value': '#935F38', 'colour_name': 'Deep Rich'}, {'hex_value': '#895837', 'colour_name': 'Cocoa'}, {'hex_value': '#915732', 'colour_name': 'Deep Cool'}, {'hex_value': '#7F4D2C', 'colour_name': 'Chestnut'}, {'hex_value': '#6F4326', 'colour_name': 'Deep Espresso'}]"
+893,nyx,#LOTD Lip Of The Day Liquid Lip Liner,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw226b9283/ProductImages/2016/Lips/Lip_Of_The_Day_Liquid_Lip_Liner/lipoftheday_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/lotd-lip-of-the-day-liquid-lip-liner/NYX_350.html?cgid=lip-liner,https://www.nyxcosmetics.com,"Bring the party to your pout with our new Lip of the Day Liquid Lip Liner! Available in ten gorgeously vivid shades, these versatile lip liners are absolute must-haves for anyone looking to take their lip artistry skills to the next level.",,,lip_liner,[],2017-12-24T02:27:36.382Z,2017-12-24T02:27:37.542Z,http://makeup-api.herokuapp.com/api/v1/products/893.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/893/original/open-uri20171224-4-1xaya6j?1514082456,"[{'hex_value': '#E1B44E', 'colour_name': 'Sunlit'}, {'hex_value': '#D28F69', 'colour_name': 'Gem'}, {'hex_value': '#AC5F28', 'colour_name': 'Hex'}, {'hex_value': '#8F1C11', 'colour_name': 'Heatwave'}, {'hex_value': '#5D2E94', 'colour_name': 'Taboo'}, {'hex_value': '#7388AD', 'colour_name': 'Kinetic'}, {'hex_value': '#A5A8B0', 'colour_name': 'Magnetic'}, {'hex_value': '#6B8F78', 'colour_name': 'Enchanted'}, {'hex_value': '#B19E5D', 'colour_name': 'Python'}, {'hex_value': '#C38181', 'colour_name': 'Cherished'}]"
+892,nyx,Slide On Lip Pencil,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2696bfe3/ProductImages/2017/Lips/Slide_On_Lip_Pencil_2017/slideonlippencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/slide-on-lip-pencil/NYX_234.html?cgid=lip-liner,https://www.nyxcosmetics.com,"Draw out your pout with a stroke of rich color. Our Slide On Lip Pencil is now available in 14 all-new shades—from bold blue-green to deep nude and pastel lilac. Like the much-loved eyeliner it’s named after, this waterproof lip pencil glides on super-smooth and delivers a highly pigmented Matte finish. Line your lips or fill ’em in for defined and enriched lip color using any of these 28 incredible shades. Our Slide on Lip Pencils can be sharpened with a sharpener that has an opening for a small pencil. Get your NYX Professional Makeup Sharpener",,,lip_liner,[],2017-12-24T02:27:31.408Z,2017-12-24T02:27:31.788Z,http://makeup-api.herokuapp.com/api/v1/products/892.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/892/original/open-uri20171224-4-1vxfgx0?1514082451,"[{'hex_value': '#F5AFB1', 'colour_name': 'Timid'}, {'hex_value': '#EC687D', 'colour_name': 'Rosey Sunset'}, {'hex_value': '#E9688F', 'colour_name': 'Sweet Pink'}, {'hex_value': '#E05B90', 'colour_name': 'Disco Rage'}, {'hex_value': '#E06291', 'colour_name': 'Fluorescent'}, {'hex_value': '#BF727A', 'colour_name': 'Cheeky'}, {'hex_value': '#BF807B', 'colour_name': 'Bedrose'}, {'hex_value': '#B67772', 'colour_name': 'Alluring'}, {'hex_value': '#BD6D70', 'colour_name': 'High Standards'}, {'hex_value': '#C74454', 'colour_name': 'Knock Em Red'}, {'hex_value': '#C24155', 'colour_name': 'Red Tape'}, {'hex_value': '#8B4543', 'colour_name': 'Brick House'}, {'hex_value': '#714947', 'colour_name': 'Dark Soul'}, {'hex_value': '#F6B1A2', 'colour_name': 'Pink Canteloupe'}, {'hex_value': '#E1787F', 'colour_name': 'Crushed'}, {'hex_value': '#E06263', 'colour_name': 'Summer Tease'}, {'hex_value': '#1F725E', 'colour_name': 'Revolution'}, {'hex_value': '#B0A2D5', 'colour_name': 'Live In Pastel'}, {'hex_value': '#954C91', 'colour_name': 'Brazen'}, {'hex_value': '#6E446C', 'colour_name': 'Revamp'}, {'hex_value': '#674651', 'colour_name': 'Nebula'}, {'hex_value': '#E9A59C', 'colour_name': 'Staged'}, {'hex_value': '#BA857D', 'colour_name': 'Nude Suede Shoes'}, {'hex_value': '#B48979', 'colour_name': 'Sugar Glass'}, {'hex_value': '#AD796C', 'colour_name': 'Beyond Nude'}, {'hex_value': '#AB7D70', 'colour_name': 'Need Me'}, {'hex_value': '#A37568', 'colour_name': 'Intimidate'}, {'hex_value': '#745038', 'colour_name': 'Urban Café'}]"
+891,nyx,Retractable Lip Liner,5.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2524f26b/ProductImages/Lips/Retractable_Lip_Liner/retractablelipliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/retractable-lip-liner/NYX_051.html?cgid=lip-liner,https://www.nyxcosmetics.com,"Love your lips! Create the perfect pout with our creamy, richly pigmented liner in an easy twist-up pencil. Renowned for its staying power! Available in 19 irresistible shades.",,,lip_liner,[],2017-12-24T02:27:28.905Z,2017-12-24T02:27:29.477Z,http://makeup-api.herokuapp.com/api/v1/products/891.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/891/original/open-uri20171224-4-mgfb2y?1514082448,"[{'hex_value': '#E17F7C', 'colour_name': 'Pinky Beige'}, {'hex_value': '#D86B7E', 'colour_name': 'Soft Pink'}, {'hex_value': '#E67D84', 'colour_name': 'Peony'}, {'hex_value': '#D45F65', 'colour_name': 'Pretty In Pink'}, {'hex_value': '#C4686B', 'colour_name': 'Nectar'}, {'hex_value': '#BE595F', 'colour_name': 'Nude Pink'}, {'hex_value': '#AC4A4B', 'colour_name': 'Jewel'}, {'hex_value': '#C1386C', 'colour_name': 'Hot Pink'}, {'hex_value': '#77182E', 'colour_name': 'Plum'}, {'hex_value': '#7E101D', 'colour_name': 'Dark Red'}, {'hex_value': '#964436', 'colour_name': 'Sienna'}, {'hex_value': '#A81F27', 'colour_name': 'Red'}, {'hex_value': '#D11E21', 'colour_name': 'Ruby'}, {'hex_value': '#A96D51', 'colour_name': 'Vanilla Sky'}, {'hex_value': '#A16644', 'colour_name': 'Natural'}, {'hex_value': '#A36348', 'colour_name': 'Nude'}, {'hex_value': '#90583D', 'colour_name': 'Sand Beige'}, {'hex_value': '#713E2B', 'colour_name': 'Cocoa'}, {'hex_value': 'gray14', 'colour_name': 'Black Lips'}]"
+890,nyx,Suede Matte Lip Liner,4.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7477bc7c/ProductImages/2016/Lips/Suede_Matte_Lip_Liner/suedemattelipliner_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/suede-matte-lip-liner/NYX_355.html?cgid=lip-liner,https://www.nyxcosmetics.com,"Buh-bye creamy lip colors! See ya shimmery shades! A velvety, matte lip is an absolute must and we’ve got just the goodie to help you get it done right: Suede Matte Lip Liner. Available in 36 richly pigmented hues, these pencils were created with colors from a few NYX Professional Makeup fan faves in mind--our Liquid Suede Cream Lipstick, Matte Lipstick and Soft Matte Lip Cream to be exact. Every shade goes on super smooth and provides the perfect base for our much-loved matte lippies.",,,lip_liner,[],2017-12-24T02:27:25.440Z,2017-12-24T02:27:25.858Z,http://makeup-api.herokuapp.com/api/v1/products/890.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/890/original/open-uri20171224-4-1p3hisz?1514082445,"[{'hex_value': '#C66B70', 'colour_name': 'Tea & Cookies'}, {'hex_value': '#A54F52', 'colour_name': 'Cannes'}, {'hex_value': '#A15056', 'colour_name': 'Whipped Cavier'}, {'hex_value': '#F3665C', 'colour_name': ""Life's A Beach""}, {'hex_value': '#BD5065', 'colour_name': 'Sao Paulo'}, {'hex_value': '#C2586E', 'colour_name': 'Milan'}, {'hex_value': '#DA4076', 'colour_name': 'Pink Lust'}, {'hex_value': '#8F2762', 'colour_name': 'Aria'}, {'hex_value': '#761D39', 'colour_name': 'Prune'}, {'hex_value': '#8D1E2F', 'colour_name': 'Cherry Skies'}, {'hex_value': '#6D132C', 'colour_name': 'Copenhagen'}, {'hex_value': '#842D24', 'colour_name': 'Alabama'}, {'hex_value': '#AB1F12', 'colour_name': 'Kitten Heels'}, {'hex_value': '#EE5F37', 'colour_name': 'Orange County'}, {'hex_value': '#FF6C4A', 'colour_name': 'Foiled Again'}, {'hex_value': '#0098CD', 'colour_name': 'Little Denim Dress'}, {'hex_value': '#00347F', 'colour_name': 'Jet Set'}, {'hex_value': '#3A4758', 'colour_name': 'Foul Mouth'}, {'hex_value': '#D36997', 'colour_name': 'Respect The Pink'}, {'hex_value': '#8B5AB5', 'colour_name': 'Sway'}, {'hex_value': '#8E2D8C', 'colour_name': 'Run The World'}, {'hex_value': '#553394', 'colour_name': 'Amethyst'}, {'hex_value': '#6B1B4E', 'colour_name': 'Subversive Socialite'}, {'hex_value': '#392A4B', 'colour_name': 'Oh, Put It On'}, {'hex_value': '#B5654A', 'colour_name': 'Stockholm'}, {'hex_value': '#BC7B53', 'colour_name': 'London'}, {'hex_value': '#A56B57', 'colour_name': 'Sandstorm'}, {'hex_value': '#A05D4D', 'colour_name': 'Soft-Spoken'}, {'hex_value': '#895150', 'colour_name': 'Los Angeles'}, {'hex_value': '#822D32', 'colour_name': 'Vintage'}, {'hex_value': '#6D4A2E', 'colour_name': 'Downtown Beauty'}, {'hex_value': '#6E3C33', 'colour_name': 'Maison'}, {'hex_value': '#5A342B', 'colour_name': 'Club Hopper'}, {'hex_value': '#62473C', 'colour_name': 'Brooklyn Thorn'}, {'hex_value': '#3C3C3C', 'colour_name': 'Stone Fox'}, {'hex_value': '#2E2E2E', 'colour_name': 'Alien'}]"
+889,nyx,Slim Lip Pencil,4.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbbca9dd2/ProductImages/Lips/Slim_Lip_Pencil/Slim_Lip_Pencil/slimlippencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/slim-lip-pencil/NYX_052.html?cgid=lip-liner,https://www.nyxcosmetics.com,"Slim, trim, but never prim our lip pencils come in a variety of dashing shades - from auburn to orange and traffic-stopping red. The buttery long-wearing lip liner formula goes on easily and resists bleeding.",,,lip_liner,[],2017-12-24T02:27:20.536Z,2017-12-24T02:27:20.940Z,http://makeup-api.herokuapp.com/api/v1/products/889.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/889/original/open-uri20171224-4-1jtkojq?1514082440,"[{'hex_value': '#E89FB0', 'colour_name': 'Flower'}, {'hex_value': '#D26987', 'colour_name': 'Dolly Pink'}, {'hex_value': '#D87079', 'colour_name': 'Rose'}, {'hex_value': '#F04B76', 'colour_name': 'Hot Pink'}, {'hex_value': '#CB5E5B', 'colour_name': 'Citrine'}, {'hex_value': '#D87683', 'colour_name': 'Sand Pink'}, {'hex_value': '#CF476B', 'colour_name': 'Pinky'}, {'hex_value': '#CA315D', 'colour_name': 'Edge Pink'}, {'hex_value': '#C03E6A', 'colour_name': 'Fuchsia'}, {'hex_value': '#A9305B', 'colour_name': 'Bloom'}, {'hex_value': '#9F366E', 'colour_name': 'Purple Rain'}, {'hex_value': '#CC7C7D', 'colour_name': 'Pale Pink'}, {'hex_value': '#8E4745', 'colour_name': 'Mauve'}, {'hex_value': '#A3432D', 'colour_name': 'Ever'}, {'hex_value': '#8F1C29', 'colour_name': 'Plum'}, {'hex_value': '#790C2B', 'colour_name': 'Deep Purple'}, {'hex_value': '#792139', 'colour_name': 'Prune'}, {'hex_value': '#781833', 'colour_name': 'Currant'}, {'hex_value': '#873B3B', 'colour_name': 'Mahogany'}, {'hex_value': '#77393A', 'colour_name': 'Never'}, {'hex_value': '#40281E', 'colour_name': 'Y2K'}, {'hex_value': '#922F10', 'colour_name': 'Deep Red'}, {'hex_value': '#932027', 'colour_name': 'Cabaret'}, {'hex_value': '#8B262A', 'colour_name': 'Auburn'}, {'hex_value': '#902630', 'colour_name': 'Burgundy'}, {'hex_value': '#C13C4D', 'colour_name': 'Plush Red'}, {'hex_value': '#D11C23', 'colour_name': 'Hot Red'}, {'hex_value': '#C9532F', 'colour_name': 'Pumpkin'}, {'hex_value': '#D6551E', 'colour_name': 'Orange'}, {'hex_value': '#DC744D', 'colour_name': 'Tangerine'}, {'hex_value': '#BC6F55', 'colour_name': 'Beige'}, {'hex_value': '#D07876', 'colour_name': 'Nude Pink'}, {'hex_value': '#C47266', 'colour_name': 'Peekaboo Neutral'}, {'hex_value': '#C57B5E', 'colour_name': 'Natural'}, {'hex_value': '#C17456', 'colour_name': 'Soft Brown'}, {'hex_value': '#96463F', 'colour_name': 'Coffee'}, {'hex_value': '#99624E', 'colour_name': 'Nude Beige'}, {'hex_value': '#8C5340', 'colour_name': 'Nude Truffle'}, {'hex_value': '#874934', 'colour_name': 'Nutmeg'}, {'hex_value': '#745237', 'colour_name': 'Brown Cafe'}, {'hex_value': '#7F4925', 'colour_name': 'Brown'}, {'hex_value': '#85532E', 'colour_name': 'Toast'}, {'hex_value': '#67452C', 'colour_name': 'Cappuccino'}, {'hex_value': '#7B412B', 'colour_name': 'Cocoa'}, {'hex_value': '#5E3F23', 'colour_name': 'Chestnut'}, {'hex_value': '#663320', 'colour_name': 'Hot Cocoa'}, {'hex_value': '#553327', 'colour_name': 'Espresso'}, {'hex_value': '#523C25', 'colour_name': 'Dark Brown'}, {'hex_value': '#331C16', 'colour_name': 'Black Brown'}, {'hex_value': '#1C110D', 'colour_name': 'Black Berry'}]"
+888,nyx,Luv Out Loud Liquid Lipstick,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw063995a2/ProductImages/2017/Lips/Luv_Out_Loud_Liquid_Lipstick/luvoutloudliquidlipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/luv-out-loud-liquid-lipstick/NYX_512.html?cgid=lipstick,https://www.nyxcosmetics.com,"What qualities make a person beautiful? Passion, confidence and fearlessness, to name a few. Available in six velvety-matte shades, our new Luv Out Loud Liquid Lipsticks capture the attributes we at NYX Professional Makeup find truly beautiful. Gift one, two-or all six lippies to a friend who rocks these amazing qualities and inspires you to live (and luv!) out loud.",,lipstick,lipstick,[],2017-12-24T02:27:19.139Z,2017-12-24T02:27:19.592Z,http://makeup-api.herokuapp.com/api/v1/products/888.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/888/original/open-uri20171224-4-zjnp6o?1514082438,"[{'hex_value': '#8C6989', 'colour_name': 'Fearless'}, {'hex_value': '#773950', 'colour_name': 'Passionate'}, {'hex_value': '#963673', 'colour_name': 'Extraordinary'}, {'hex_value': '#543A61', 'colour_name': 'Brave'}, {'hex_value': '#9A5953', 'colour_name': 'Brilliant'}, {'hex_value': '#C87F76', 'colour_name': 'Confident'}]"
+887,nyx,V'Amped Up! Lip Top Coat,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw88030be7/ProductImages/Lips/Vamped_Up_Lip_Top_Coat/vampedupliptopcoat_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/vamped-up-lip-top-coat/NYX_174.html?cgid=lipstick,https://www.nyxcosmetics.com,Cast a spell on your neutral lippies with a swipe of our wicked V'Amped Up! Lip Top Coat. Infused with shea butter and Vitamin E this glossy pencil moisturizes while transforming light lip colors to deep vampy shades.,,lipstick,lipstick,[],2017-12-24T02:27:18.408Z,2017-12-24T02:27:18.750Z,http://makeup-api.herokuapp.com/api/v1/products/887.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/887/original/data?1514082438,[]
+886,nyx,Simply Pink Lip Cream,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw013dc65e/ProductImages/Lips/Simply_Pink_Lip_Cream/simplypinklipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/simply-pink-lip-cream/NYX_162.html?cgid=lipstick,https://www.nyxcosmetics.com,Get ready to look seriously pretty in pink. From natural to extreme pick your favorite shade from our Simply Pink Lip Creams for a rosy and glossy finish.,,lipstick,lipstick,[],2017-12-24T02:27:17.373Z,2017-12-24T02:27:17.853Z,http://makeup-api.herokuapp.com/api/v1/products/886.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/886/original/open-uri20171224-4-1pbaddr?1514082437,"[{'hex_value': '#FA7B84', 'colour_name': 'Flushed'}, {'hex_value': '#F86F9D', 'colour_name': 'Primrose'}, {'hex_value': '#EA7F9B', 'colour_name': 'First Base'}, {'hex_value': '#F94E9A', 'colour_name': 'French Kiss'}, {'hex_value': '#F45863', 'colour_name': 'XOXO'}, {'hex_value': '#FE8483', 'colour_name': 'Enchanted'}]"
+885,nyx,Simply Red Lip Cream,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw4879365d/ProductImages/Lips/Simply_Red_Lip_Cream/simplyredlipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/simply-red-lip-cream/NYX_163.html?cgid=lipstick,https://www.nyxcosmetics.com,A classic red pout never goes out of style! Our Simply Red Lip Cream collection gives you loads of color options varying from deep bright or pure red that you can’t go wrong with.,,lipstick,lipstick,[],2017-12-24T02:27:16.374Z,2017-12-24T02:27:16.822Z,http://makeup-api.herokuapp.com/api/v1/products/885.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/885/original/open-uri20171224-4-j5xh6b?1514082436,"[{'hex_value': '#D43748', 'colour_name': 'Maraschino'}, {'hex_value': '#E62E50', 'colour_name': 'Candy Apple'}, {'hex_value': '#F2626C', 'colour_name': 'Russian Roulette'}, {'hex_value': '#FE5A50', 'colour_name': 'Seduction'}, {'hex_value': '#D33556', 'colour_name': 'Leading Lady'}, {'hex_value': '#C4605E', 'colour_name': 'Knock Out'}]"
+884,nyx,Simply Nude Lip Cream,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6790cad4/ProductImages/Lips/Simply_Nude_Lip_Cream/simplynudlipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/simply-nude-lip-cream/NYX_161.html?cgid=lipstick,https://www.nyxcosmetics.com,Bare is beautiful with our Simply Nude Lip Creams available in six earthy shades. Swipe on this velvety and moisturizing cream to leave your lips with a subtle satin finish.,,lipstick,lipstick,[],2017-12-24T02:27:14.778Z,2017-12-24T02:27:15.139Z,http://makeup-api.herokuapp.com/api/v1/products/884.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/884/original/open-uri20171224-4-1b2b0di?1514082434,"[{'hex_value': '#EBA38B', 'colour_name': 'Fairest'}, {'hex_value': '#FAA893', 'colour_name': 'Peaches'}, {'hex_value': '#ED9B8F', 'colour_name': 'Disrobed'}, {'hex_value': '#C16E5E', 'colour_name': 'Sable'}, {'hex_value': '#DE9079', 'colour_name': 'Exposed'}, {'hex_value': '#EAA88E', 'colour_name': 'Honey'}]"
+883,nyx,Macaron Lippies,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw09b47e3c/ProductImages/Lips/Macaron_Lippie/macaronlippies_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/macaron-lippies/NYX_145.html?cgid=lipstick,https://www.nyxcosmetics.com,Fantasize in color with our neon and pastel lippies in 12 of the creamiest shades you’ll ever use. Our cruelty-free formula is packed with pigment and has a satin matte finish for long-wearing resilience.,,lipstick,lipstick,[],2017-12-24T02:27:13.428Z,2017-12-24T02:27:13.754Z,http://makeup-api.herokuapp.com/api/v1/products/883.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/883/original/open-uri20171224-4-25gmgo?1514082433,"[{'hex_value': '#F695BE', 'colour_name': 'Rose'}, {'hex_value': '#FE9846', 'colour_name': 'Orange Blossom'}, {'hex_value': '#FDBD3F', 'colour_name': 'Citron'}, {'hex_value': '#78D877', 'colour_name': 'Key Lime'}, {'hex_value': '#53CEBC', 'colour_name': 'Pistachio'}, {'hex_value': '#14A8E6', 'colour_name': 'Blue Velvet'}, {'hex_value': '#76A9D8', 'colour_name': 'Earl Grey'}, {'hex_value': '#A89DD9', 'colour_name': 'Lavender'}, {'hex_value': '#B778D1', 'colour_name': 'Violet'}, {'hex_value': '#BFB8B2', 'colour_name': 'Black Sesame'}, {'hex_value': '#181818', 'colour_name': 'Chambord'}, {'hex_value': '#EDEDED', 'colour_name': 'Coconut'}]"
+882,nyx,In Your Element Lipstick - Metal,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda28cbbe/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_metal/inyourelementlipstickmetal_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-metal/NYX_554.html?cgid=lipstick,https://www.nyxcosmetics.com,"A match made in makeup heaven! Our new In Your Element Lipstick Metal collection pairs perfectly with our sparkle inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from metallic gold, to glossy deep-berry and metallic bronze. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",,lipstick,lipstick,[],2017-12-24T02:27:12.429Z,2017-12-24T02:27:12.831Z,http://makeup-api.herokuapp.com/api/v1/products/882.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/882/original/open-uri20171224-4-111jmk6?1514082432,"[{'hex_value': '#835546', 'colour_name': 'Metallic Gold'}, {'hex_value': '#7D2C35', 'colour_name': 'Glossy Deep Berry'}, {'hex_value': '#604238', 'colour_name': 'Metallic Bronze'}]"
+881,nyx,Whipped Lip & Cheek Soufflé,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcffa1f2c/ProductImages/Lips/Whipped_Lip_And_Cheek_Souffle/whippedlipandcheeksouffle_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/whipped-lip-and-cheek-souffle/NYX_233.html?cgid=blush,https://www.nyxcosmetics.com,"Indulge your cravings with our Whipped Lip & Cheek Soufflé. Our two-in-one mousse can be used to precisely line lips and on the apples of your cheeks for a soft, natural flush. Achieve a delicious wash of color with a matte finish using this creamy and multipurpose formula.",,,blush,[],2017-12-24T02:27:11.306Z,2017-12-24T02:30:36.924Z,http://makeup-api.herokuapp.com/api/v1/products/881.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/881/original/open-uri20171224-4-xaiokt?1514082636,"[{'hex_value': '#FF8D97', 'colour_name': 'Pink Cloud'}, {'hex_value': '#FE979B', 'colour_name': 'Plush'}, {'hex_value': '#FD4899', 'colour_name': 'Pink Lace'}, {'hex_value': '#B8135F', 'colour_name': 'Dark Cloud'}, {'hex_value': '#E56270', 'colour_name': 'Berry Tea'}, {'hex_value': '#EC131E', 'colour_name': 'Molten Love'}, {'hex_value': '#FF9474', 'colour_name': 'Coral-Sicle'}, {'hex_value': '#E18F77', 'colour_name': 'Cocoa Bean'}]"
+880,nyx,Wicked Lippies,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5d579d16/ProductImages/Lips/Wicked_Lippies/wickedlippies_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/wicked-lippies/NYX_165.html?cgid=lipstick,https://www.nyxcosmetics.com,Take a walk on the wicked side with our jewel-toned lippies available in 12 shimmering shades. Velvety smooth with a dazzling metallic finish - these richly pigmented lipsticks will leave your lips with the ultimate spellbinding look.,,lipstick,lipstick,[],2017-12-24T02:27:09.770Z,2017-12-24T02:27:10.223Z,http://makeup-api.herokuapp.com/api/v1/products/880.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/880/original/open-uri20171224-4-dp6rrb?1514082429,"[{'hex_value': '#895762', 'colour_name': 'Power'}, {'hex_value': '#714119', 'colour_name': 'Wrath'}, {'hex_value': '#D0AD53', 'colour_name': 'Mischievous'}, {'hex_value': '#494623', 'colour_name': 'Trickery'}, {'hex_value': '#118A77', 'colour_name': 'Risque'}, {'hex_value': '#11AFAE', 'colour_name': 'Scandalous'}, {'hex_value': '#0035B8', 'colour_name': 'Envy'}, {'hex_value': '#073895', 'colour_name': 'Sinful'}, {'hex_value': '#6934B8', 'colour_name': 'Immortal'}, {'hex_value': '#390C67', 'colour_name': 'Betrayal'}, {'hex_value': '#515151', 'colour_name': 'Cold Hearted'}, {'hex_value': '#DEDEDE', 'colour_name': 'Stone Cold'}]"
+879,nyx,Simply Vamp Lip Cream,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw48514b30/ProductImages/Lips/Simply_Vamp_Lip_Cream/simplyvamplipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/simply-vamp-lip-cream/NYX_164.html?cgid=lipstick,https://www.nyxcosmetics.com,Vamp up your look instantly with our smooth and smoldering lip creams. Wear any of these six bewitching shades to brew up a little beauty magic.,,lipstick,lipstick,[],2017-12-24T02:27:08.257Z,2017-12-24T02:27:08.654Z,http://makeup-api.herokuapp.com/api/v1/products/879.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/879/original/open-uri20171224-4-1loshoq?1514082428,"[{'hex_value': '#863C4D', 'colour_name': 'Bewitching'}, {'hex_value': '#49142E', 'colour_name': 'Temptress'}, {'hex_value': '#451D35', 'colour_name': 'She Devil'}, {'hex_value': '#4F212B', 'colour_name': 'Aphrodisiac'}, {'hex_value': '#771C21', 'colour_name': 'Covet'}, {'hex_value': '#412227', 'colour_name': 'Enamored'}]"
+878,nyx,In Your Element Lipstick - Water,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw649c09f1/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_water/inyourelementlipstickwater_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-water/NYX_556.html?cgid=lipstick,https://www.nyxcosmetics.com,"A match made in makeup heaven! Our new In Your Element Lipstick Water collection pairs perfectly with our heat-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from metallic black-violet, to matte true nude and glossy plum. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",,lipstick,lipstick,[],2017-12-24T02:27:07.536Z,2017-12-24T02:27:07.913Z,http://makeup-api.herokuapp.com/api/v1/products/878.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/878/original/open-uri20171224-4-1tsev2u?1514082427,"[{'hex_value': '#382B35', 'colour_name': 'Metallic Violet Black'}, {'hex_value': '#A56856', 'colour_name': 'Matte Nude'}, {'hex_value': '#552D2D', 'colour_name': 'Glossy Plum'}]"
+877,nyx,In Your Element Lipstick - Wind,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb5cd298c/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_wind/inyourelementlipstickwind_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-wind/NYX_553.html?cgid=lipstick,https://www.nyxcosmetics.com,"A match made in makeup heaven! Our new In Your Element Lipstick Wind collection pairs perfectly with our breeze-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from glossy nude, to matte navy blue and metallic brown with blue pearl. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",,lipstick,lipstick,[],2017-12-24T02:27:06.634Z,2017-12-24T02:27:07.102Z,http://makeup-api.herokuapp.com/api/v1/products/877.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/877/original/open-uri20171224-4-r7y0wz?1514082426,"[{'hex_value': '#964C41', 'colour_name': 'Glossy Nude'}, {'hex_value': '#303356', 'colour_name': 'Matte Navy'}, {'hex_value': '#543435', 'colour_name': 'Metallic Brown'}]"
+876,nyx,In Your Element Lipstick - Fire,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf9f0c84b/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_fire/inyourelementlipstickfire_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-fire/NYX_555.html?cgid=lipstick,https://www.nyxcosmetics.com,"A match made in makeup heaven! Our new In Your Element Lipstick Fire collection pairs perfectly with our heat-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from matte red, to glossy black and matte, warm mauve. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",,lipstick,lipstick,[],2017-12-24T02:27:05.763Z,2017-12-24T02:27:06.102Z,http://makeup-api.herokuapp.com/api/v1/products/876.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/876/original/open-uri20171224-4-wz7a6o?1514082425,"[{'hex_value': '#1E1E1E', 'colour_name': 'Glossy Black'}, {'hex_value': '#891B28', 'colour_name': 'Matte Red'}, {'hex_value': '#954743', 'colour_name': 'Matte Mauve'}]"
+875,nyx,In Your Element Lipstick - Air,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7fdf92ae/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_air/inyourelementlipstickair_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-air/NYX_558.html?cgid=lipstick,https://www.nyxcosmetics.com,,,lipstick,lipstick,[],2017-12-24T02:27:04.998Z,2017-12-24T02:27:05.298Z,http://makeup-api.herokuapp.com/api/v1/products/875.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/875/original/open-uri20171224-4-16xna3r?1514082424,"[{'hex_value': '#A1483A', 'colour_name': 'Glossy Pale Pink'}, {'hex_value': '#B5595C', 'colour_name': 'Matte Rose'}, {'hex_value': '#C1573F', 'colour_name': 'Glossy Peach'}]"
+874,nyx,Jumbo Lip Pencil,4.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw20d954dc/ProductImages/Lips/Jumbo_Lip_Pencil/jumboeyepencil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/jumbo-lip-pencil/NYX_003.html?cgid=lip-liner,https://www.nyxcosmetics.com,,,,lip_liner,[],2017-12-24T02:27:03.310Z,2017-12-24T02:27:34.862Z,http://makeup-api.herokuapp.com/api/v1/products/874.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/874/original/open-uri20171224-4-14udrjs?1514082454,"[{'hex_value': '#F6B4C2', 'colour_name': 'Iris'}, {'hex_value': '#F3B8A8', 'colour_name': 'Pink Nude'}, {'hex_value': '#FFAB87', 'colour_name': 'Irish Coffee'}, {'hex_value': '#FFA68B', 'colour_name': 'Pink Brown'}, {'hex_value': '#E47F85', 'colour_name': 'Honey Nectar'}, {'hex_value': '#F75C7E', 'colour_name': 'Chaos'}, {'hex_value': '#CD737C', 'colour_name': 'Pecan'}, {'hex_value': '#EF5E97', 'colour_name': 'Hera'}, {'hex_value': '#8E1B38', 'colour_name': 'Burgundy'}, {'hex_value': '#91232C', 'colour_name': 'Maroon'}, {'hex_value': '#AA1532', 'colour_name': 'Deep Red'}, {'hex_value': '#D41C36', 'colour_name': 'Plush Red'}, {'hex_value': '#C02922', 'colour_name': 'Hot Red'}, {'hex_value': '#D28A72', 'colour_name': 'Iced Coffee'}, {'hex_value': '#E9B5A7', 'colour_name': 'Rose Brown'}]"
+873,nyx,In Your Element Lipstick - Earth,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw16c5dd05/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_earth/inyourelementlipstickearth_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/in-your-element-lipstick-earth/NYX_557.html?cgid=lipstick,https://www.nyxcosmetics.com,"A match made in makeup heaven! Our new In Your Element Lipstick Earth collection pairs perfectly with our nature-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from deep metallic copper, to glossy, deep berry and matte brown. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",,lipstick,lipstick,[],2017-12-24T02:27:02.469Z,2017-12-24T02:27:02.854Z,http://makeup-api.herokuapp.com/api/v1/products/873.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/873/original/open-uri20171224-4-1r5y1g1?1514082422,"[{'hex_value': '#902E2B', 'colour_name': 'Metallic Copper'}, {'hex_value': '#57273F', 'colour_name': 'Glossy Wine'}, {'hex_value': '#512D2D', 'colour_name': 'Matte Warm Brown'}]"
+872,nyx,Butter Lipstick,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf73b3195/ProductImages/2016/Lips/Butter_Lipstick_Extension/butterlipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/butter-lipstick/NYX_120.html?cgid=lipstick,https://www.nyxcosmetics.com,"Treat your lips to a kiss of smooth, creamy color with our irresistible Butter Lipsticks in 12 new luscious shades. The formula’s delicate satin texture fused with highly saturated color delivers full-yet-lightweight coverage with a luxurious satin finish.",,lipstick,lipstick,[],2017-12-24T02:26:58.311Z,2017-12-24T02:26:59.570Z,http://makeup-api.herokuapp.com/api/v1/products/872.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/872/original/open-uri20171224-4-193brnk?1514082418,"[{'hex_value': '#FD9A95', 'colour_name': 'Summer Fruits'}, {'hex_value': '#FD9B92', 'colour_name': 'Seashell'}, {'hex_value': '#FD869A', 'colour_name': 'Pink Bikini'}, {'hex_value': '#FF4F83', 'colour_name': 'Hot Nights'}, {'hex_value': '#FE7295', 'colour_name': 'Snowcone'}, {'hex_value': '#F84656', 'colour_name': 'Staycation'}, {'hex_value': '#F84563', 'colour_name': 'Beach BBQ'}, {'hex_value': '#F04B69', 'colour_name': 'Fruit Punch'}, {'hex_value': '#EA3B96', 'colour_name': 'Sweet Shock'}, {'hex_value': '#B66F99', 'colour_name': 'Daydreaming'}, {'hex_value': '#C36A8A', 'colour_name': 'Midnight Swim'}, {'hex_value': '#8E215A', 'colour_name': 'Thunderstorm'}, {'hex_value': '#66071D', 'colour_name': 'Moonlit Night'}, {'hex_value': '#531522', 'colour_name': 'Block Party'}, {'hex_value': '#A13F3C', 'colour_name': 'Ripe Berry'}, {'hex_value': '#CE6B65', 'colour_name': 'Root Beer Float'}, {'hex_value': '#B90508', 'colour_name': 'Afternoon Heat'}, {'hex_value': '#AE2304', 'colour_name': 'Lifeguard'}, {'hex_value': '#D30A1A', 'colour_name': 'Fire Brick'}, {'hex_value': '#EF2438', 'colour_name': 'Firecracker'}, {'hex_value': '#F32637', 'colour_name': 'Heat Wave'}, {'hex_value': '#F72E12', 'colour_name': 'Scorching Sun'}, {'hex_value': '#FC4130', 'colour_name': 'Neon Lights'}, {'hex_value': '#FF421C', 'colour_name': 'Bonfire'}, {'hex_value': '#FF9065', 'colour_name': 'Shooting Star'}, {'hex_value': '#FE8C72', 'colour_name': 'Easy Livin'}, {'hex_value': '#FF9387', 'colour_name': 'West Coast'}, {'hex_value': '#FF9D84', 'colour_name': 'Sandy Kiss'}, {'hex_value': '#C5735D', 'colour_name': 'Snack Shack'}, {'hex_value': '#FEA07C', 'colour_name': 'Sandcastle'}, {'hex_value': '#FDB494', 'colour_name': 'Smormellow'}, {'hex_value': '#F59E83', 'colour_name': 'Boardwalk'}, {'hex_value': '#C37E61', 'colour_name': 'Tan Lines'}, {'hex_value': '#895B41', 'colour_name': 'Vacation Spot'}]"
+871,nyx,Extra Creamy Round Lipstick,0.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0048a5ab/ProductImages/Lips/Extra_Creamy_Round_Lipstick/extracreamyroundlipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/extra-creamy-round-lipstick/NYX_006.html?cgid=lipstick,https://www.nyxcosmetics.com,"Extra Creamy Round Lipstick is our classic lipstick for all occasions. The mineral-based emollient formula offers a beautiful velvet texture, saturated color and it resists wear and smudging. It’s your go-to lipstick. From Pure Nude to Pink Lyric to Chic Red, Round Lipstick is available in a jaw-dropping variety of shades.",,lipstick,lipstick,[],2017-12-24T02:26:51.630Z,2017-12-24T02:26:52.100Z,http://makeup-api.herokuapp.com/api/v1/products/871.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/871/original/open-uri20171224-4-qu6f92?1514082411,"[{'hex_value': '#CD787B', 'colour_name': 'Milan'}, {'hex_value': '#F3CFCF', 'colour_name': 'Athena'}, {'hex_value': '#F2D0E0', 'colour_name': 'Baby Pink'}, {'hex_value': '#F7D0C9', 'colour_name': 'Sash'}, {'hex_value': '#FBCDD0', 'colour_name': 'Harmonica'}, {'hex_value': '#FFC5B9', 'colour_name': 'Marrakesh Pink'}, {'hex_value': '#F7C9CB', 'colour_name': 'Strawberry Milk'}, {'hex_value': '#F9C3C1', 'colour_name': 'Jupiter'}, {'hex_value': '#F9CABA', 'colour_name': 'Gala'}, {'hex_value': '#FFBFCD', 'colour_name': 'Narcissus'}, {'hex_value': '#F5C3C6', 'colour_name': 'Lip Du Jour'}, {'hex_value': '#FF7C86', 'colour_name': 'Paris'}, {'hex_value': '#FEBDC1', 'colour_name': 'Sky Pink'}, {'hex_value': '#FD9CA7', 'colour_name': 'Rose Bud'}, {'hex_value': '#FD93A9', 'colour_name': 'Flower'}, {'hex_value': '#F9AC9C', 'colour_name': 'Vitamin'}, {'hex_value': '#FC978D', 'colour_name': 'Indian Pink'}, {'hex_value': '#FAA19D', 'colour_name': 'Chic'}, {'hex_value': '#FDA09B', 'colour_name': 'Stella'}, {'hex_value': '#FD9491', 'colour_name': 'Margarita'}, {'hex_value': '#F1757F', 'colour_name': 'Paparazzi'}, {'hex_value': '#FF5E8F', 'colour_name': 'Pink Lyric'}, {'hex_value': '#FF4986', 'colour_name': 'Hot Pink'}, {'hex_value': '#F7BAC1', 'colour_name': 'Christie'}, {'hex_value': '#FD829E', 'colour_name': 'Rose Bouquet'}, {'hex_value': '#D3748C', 'colour_name': 'Gem'}, {'hex_value': '#FDA290', 'colour_name': 'Watermelon'}, {'hex_value': '#E37880', 'colour_name': 'Blush'}, {'hex_value': '#E36974', 'colour_name': 'Fig'}, {'hex_value': '#E07C7C', 'colour_name': 'Tea Rose'}, {'hex_value': '#FF607C', 'colour_name': 'Louisiana'}, {'hex_value': '#FB5468', 'colour_name': 'Spell Bound'}, {'hex_value': '#FB7D92', 'colour_name': 'Gardenia'}, {'hex_value': '#EA6C82', 'colour_name': 'Haute Couture'}, {'hex_value': '#F26198', 'colour_name': 'Shiva'}, {'hex_value': '#F66493', 'colour_name': 'Eucalyptus'}, {'hex_value': '#F8639D', 'colour_name': 'Chloe'}, {'hex_value': '#ED6FAE', 'colour_name': 'Fusion'}, {'hex_value': '#DA7C7C', 'colour_name': 'Peach'}, {'hex_value': '#CA787A', 'colour_name': 'Minimalism'}, {'hex_value': '#F09292', 'colour_name': 'Heather'}, {'hex_value': '#DC6271', 'colour_name': 'Doll'}, {'hex_value': '#C78376', 'colour_name': 'Thalia'}, {'hex_value': '#C88471', 'colour_name': 'Perfect'}, {'hex_value': '#D2736F', 'colour_name': 'B52'}, {'hex_value': '#BF6E7F', 'colour_name': 'Lala'}, {'hex_value': '#C3A4B6', 'colour_name': 'Power'}, {'hex_value': '#E2AED4', 'colour_name': 'Castle'}, {'hex_value': '#CE86B6', 'colour_name': 'Pandora'}, {'hex_value': '#C14E6D', 'colour_name': 'Violet Ray'}, {'hex_value': '#AD4B72', 'colour_name': 'Medusa'}, {'hex_value': '#4D182A', 'colour_name': 'Bruised'}, {'hex_value': '#891A0F', 'colour_name': 'Hestia'}, {'hex_value': '#9D181D', 'colour_name': 'Hero'}, {'hex_value': '#7B1427', 'colour_name': 'Black Cherry'}, {'hex_value': '#DF726F', 'colour_name': 'Hope'}, {'hex_value': '#EC8681', 'colour_name': 'Topaz'}, {'hex_value': '#F25C67', 'colour_name': 'Hebe'}, {'hex_value': '#BF1F11', 'colour_name': 'Snow White'}, {'hex_value': '#D40F18', 'colour_name': 'Electra'}, {'hex_value': '#D50326', 'colour_name': 'Chaos'}, {'hex_value': '#E70F50', 'colour_name': 'Chic Red'}, {'hex_value': '#F1232D', 'colour_name': 'Fire'}, {'hex_value': '#EF1C07', 'colour_name': 'Eros'}, {'hex_value': '#FE7C84', 'colour_name': 'Rose'}, {'hex_value': '#FFA181', 'colour_name': 'NYX'}, {'hex_value': '#FF5B38', 'colour_name': 'Haute Melon'}, {'hex_value': '#FD5A49', 'colour_name': 'Femme'}, {'hex_value': '#FC927C', 'colour_name': 'Peach Bellini'}, {'hex_value': '#FEAE89', 'colour_name': 'Orange Soda'}, {'hex_value': '#E89D7E', 'colour_name': 'Pure Nude'}, {'hex_value': '#D49377', 'colour_name': 'Pumpkin Pie'}, {'hex_value': '#F9C2AE', 'colour_name': 'Iris'}, {'hex_value': '#F2E2C0', 'colour_name': 'Uberchic'}, {'hex_value': '#F0D9BA', 'colour_name': 'Frosted Flakes'}, {'hex_value': '#DEA588', 'colour_name': 'Echo'}, {'hex_value': '#E2A589', 'colour_name': 'Circe'}, {'hex_value': '#E0A789', 'colour_name': 'Honey'}, {'hex_value': '#D2B4AA', 'colour_name': 'Galaxy'}, {'hex_value': '#D39E7F', 'colour_name': 'Rea'}, {'hex_value': '#FDC0AD', 'colour_name': 'Summer Love'}, {'hex_value': '#F69D99', 'colour_name': 'Darling'}, {'hex_value': '#D3856F', 'colour_name': 'Frappucino'}, {'hex_value': '#CE7A62', 'colour_name': 'Heredes'}, {'hex_value': '#CE886F', 'colour_name': 'Mars'}, {'hex_value': '#CB7C6B', 'colour_name': 'Cocoa'}]"
+870,nyx,Matte Lipstick,6.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw190a6040/ProductImages/2016/Lips/Matte_Lipstick_Extension/mattelipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/matte-lipstick/NYX_005.html?cgid=lipstick,https://www.nyxcosmetics.com,"Load your lips with plush, pigment-rich color choosing from 12 brand new shades of Matte Lipstick—our shockingly smooth lip color that glides right on and stays in place with a silky matte finish that never feels dry. Now available in a range of fresh new hues, these playful pops of color are just what your spring wardrobe needs!",,lipstick,lipstick,[],2017-12-24T02:26:46.726Z,2017-12-24T02:26:47.330Z,http://makeup-api.herokuapp.com/api/v1/products/870.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/870/original/open-uri20171224-4-1x4oohd?1514082406,"[{'hex_value': '#FFAAA1', 'colour_name': 'Hippie Chic'}, {'hex_value': '#FFB1B1', 'colour_name': 'Pale Pink'}, {'hex_value': '#FF96A6', 'colour_name': 'Audrey'}, {'hex_value': '#FF93B9', 'colour_name': 'Summer Breeze'}, {'hex_value': '#FF73A3', 'colour_name': 'Girl Crush'}, {'hex_value': '#FF7CC4', 'colour_name': 'Shocking Pink'}, {'hex_value': '#FE73AE', 'colour_name': 'Sweet Pink'}, {'hex_value': '#B97BBE', 'colour_name': 'Zen Orchid'}, {'hex_value': '#737E82', 'colour_name': 'Ultra Dare'}, {'hex_value': '#7B7B7B', 'colour_name': 'Haze'}, {'hex_value': '#7E5F71', 'colour_name': 'Up The Bass'}, {'hex_value': '#7D2D30', 'colour_name': 'Dark Era'}, {'hex_value': '#882A5E', 'colour_name': 'Aria'}, {'hex_value': '#802A35', 'colour_name': 'Siren'}, {'hex_value': '#573438', 'colour_name': 'Goal Digger'}, {'hex_value': '#B67B6D', 'colour_name': 'Honeymoon'}, {'hex_value': '#F48898', 'colour_name': 'Tea Rose'}, {'hex_value': '#ED8D99', 'colour_name': 'Natural'}, {'hex_value': '#F497A2', 'colour_name': 'Whipped Caviar'}, {'hex_value': '#FDA099', 'colour_name': 'Euro Trash'}, {'hex_value': '#FB6E64', 'colour_name': 'Sierra'}, {'hex_value': '#FF8883', 'colour_name': 'Strawberry Daiquiri'}, {'hex_value': '#94382D', 'colour_name': 'Crazed'}, {'hex_value': '#FF7D93', 'colour_name': 'Angel'}, {'hex_value': '#E75268', 'colour_name': 'Merlot'}, {'hex_value': '#DC453A', 'colour_name': 'Alabama'}, {'hex_value': '#F43847', 'colour_name': 'Eden'}, {'hex_value': '#FD4068', 'colour_name': 'Bloody Mary'}, {'hex_value': '#E92A2F', 'colour_name': 'Perfect Red'}, {'hex_value': '#FF3F4C', 'colour_name': 'Pure Red'}, {'hex_value': '#F78493', 'colour_name': 'Street Cred'}, {'hex_value': '#FF5864', 'colour_name': 'Crave'}, {'hex_value': '#FF584C', 'colour_name': 'Indie Flick'}, {'hex_value': '#FEB19F', 'colour_name': 'Nude'}, {'hex_value': '#FFB0A6', 'colour_name': 'Spirit'}, {'hex_value': '#FFAAA3', 'colour_name': 'Temptress'}, {'hex_value': '#FFB0AC', 'colour_name': 'Couture'}, {'hex_value': '#FDB79E', 'colour_name': 'Forbidden'}, {'hex_value': '#FFA899', 'colour_name': 'Daydream'}, {'hex_value': '#FBBC9D', 'colour_name': 'Shy'}, {'hex_value': '#EEA690', 'colour_name': 'Bare With Me'}, {'hex_value': '#AA8771', 'colour_name': 'Minx'}, {'hex_value': '#DCAF98', 'colour_name': 'Butter'}, {'hex_value': '#E7B092', 'colour_name': 'Sable'}, {'hex_value': '#B27A61', 'colour_name': 'Maison'}]"
+869,nyx,Pro Lip Cream Palette,12.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw46507c8a/ProductImages/2016/Lips/Pro_Lip_Cream_Palette/prolipcreampalette_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/pro-lip-cream-palette/NYX_321.html?cgid=lipstick,https://www.nyxcosmetics.com,Pucker up—your lips are in for a treat! Our new Pro Lip Cream Palettes feature six expertly coordinated color combinations of intensely pigmented lip creams. Wear each shade alone or blend ’em all together for a totally customized look!,,lipstick,lipstick,[],2017-12-24T02:26:45.327Z,2017-12-24T02:26:45.862Z,http://makeup-api.herokuapp.com/api/v1/products/869.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/869/original/open-uri20171224-4-13sob9z?1514082404,"[{'hex_value': '#B76C4C', 'colour_name': 'The Nudes'}, {'hex_value': '#CD5C56', 'colour_name': 'The Pinks'}, {'hex_value': '#C21A17', 'colour_name': 'The Reds'}, {'hex_value': '#99242C', 'colour_name': 'The Plums'}]"
+868,nyx,Full Throttle Lipstick,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw96029c57/ProductImages/2016/Lips/Full_Throttle_Lipstick/fullthrottlelipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/full-throttle-lipstick/NYX_312.html?cgid=lipstick,https://www.nyxcosmetics.com,"It’s the color addict’s ultimate fix and a makeup artist’s dream: Our new waterproof Full Throttle Lipstick covers your lips with super-saturated matte color and features a unique bullet with a beveled edge for lining, filling and perfecting your pout to your heart’s desire.",,lipstick,lipstick,[],2017-12-24T02:26:42.947Z,2017-12-24T02:26:43.403Z,http://makeup-api.herokuapp.com/api/v1/products/868.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/868/original/open-uri20171224-4-i4duyu?1514082402,"[{'hex_value': '#F84B8B', 'colour_name': 'Lethal Kiss'}, {'hex_value': '#BA5591', 'colour_name': 'Trickster'}, {'hex_value': '#9D2D43', 'colour_name': 'Locked'}, {'hex_value': '#753529', 'colour_name': 'Loaded'}, {'hex_value': '#6D2F46', 'colour_name': 'Night Crawler'}, {'hex_value': '#87372E', 'colour_name': 'Con Artist'}, {'hex_value': '#C1120D', 'colour_name': 'Up The Bass'}, {'hex_value': '#9B3C2A', 'colour_name': 'Sandman'}, {'hex_value': '#DE3228', 'colour_name': 'Firestorm'}, {'hex_value': '#EC5039', 'colour_name': 'Jolt'}, {'hex_value': '#E89782', 'colour_name': 'Sidekick'}, {'hex_value': '#BB745E', 'colour_name': 'Kiss The Dust'}]"
+867,nyx,Plush Gel Lipstick,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9c3f0820/ProductImages/2016/Lips/Plush_Gel_Lipstick/plushgellipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/plush-gel-lipstick/NYX_334.html?cgid=lipstick,https://www.nyxcosmetics.com,"Play up your pout with a silky stroke of Plush Gel Lipstick. Available in 12 totally vibrant shades, this lippie brings together an oh-so-soft feel and the high shine of a gloss. Drench lips in a wash of color for an instantly polished look anytime you crave a quick touch-up. Want a bolder finish? (Yes, please!) A second swipe is twice as nice.",,lipstick,lipstick,[],2017-12-24T02:26:37.391Z,2017-12-24T02:26:37.967Z,http://makeup-api.herokuapp.com/api/v1/products/867.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/867/original/open-uri20171224-4-tp7kxq?1514082397,"[{'hex_value': '#D39483', 'colour_name': 'Nude Beach'}, {'hex_value': '#E5898A', 'colour_name': 'Dime Piece'}, {'hex_value': '#FF739D', 'colour_name': 'Air Blossom'}, {'hex_value': '#FB4C9B', 'colour_name': 'Azalea'}, {'hex_value': '#DE4A84', 'colour_name': 'Fizzy Berries'}, {'hex_value': '#E62D57', 'colour_name': 'Karma Kiss'}, {'hex_value': '#D52A3D', 'colour_name': 'Sharp Femme'}, {'hex_value': '#B1223E', 'colour_name': 'Sacred Mix'}, {'hex_value': '#FE987F', 'colour_name': 'Pastel Dust'}, {'hex_value': '#FF6541', 'colour_name': 'Foxy Love'}, {'hex_value': '#FE6D5C', 'colour_name': 'Coral Mist'}, {'hex_value': '#A9655C', 'colour_name': 'Breakup'}]"
+866,nyx,Velvet Matte Lipstick,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1e94f54f/ProductImages/2016/Lips/Velvet_Matte_Lipstick/velvetmattelipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/velvet-matte-lipstick/NYX_348.html?cgid=lipstick,https://www.nyxcosmetics.com,"Dress your lips in decadent color with our Velvet Matte Lipstick--a luxurious new lip color that glides right on and never feels dry. Housed in an elegant soft-touch case, each standout shade is a fashion statement in itself.",,lipstick,lipstick,[],2017-12-24T02:26:35.150Z,2017-12-24T02:26:35.670Z,http://makeup-api.herokuapp.com/api/v1/products/866.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/866/original/open-uri20171224-4-9fhzot?1514082394,"[{'hex_value': '#EC737C', 'colour_name': 'Effervescent'}, {'hex_value': '#FD227E', 'colour_name': 'Miami Nights'}, {'hex_value': '#DB5DA6', 'colour_name': 'Unicorn Fur'}, {'hex_value': '#66459C', 'colour_name': 'Disorderly'}, {'hex_value': '#894193', 'colour_name': 'Violet Voltage'}, {'hex_value': '#272B58', 'colour_name': 'Midnight Muse'}, {'hex_value': '#8F323D', 'colour_name': 'Volcano'}, {'hex_value': '#C42627', 'colour_name': 'Blood Love'}, {'hex_value': '#C69078', 'colour_name': 'Beach Casual'}, {'hex_value': '#B06C6D', 'colour_name': 'Soft Femme'}, {'hex_value': '#AB5C58', 'colour_name': 'Charmed'}, {'hex_value': '#9C656A', 'colour_name': 'Duchess'}]"
+865,nyx,Turnt Up! Lipstick,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5c4a6ee3/ProductImages/2016/Lips/Turnt_Up_Lipstick/turntuplipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/turnt-up-lipstick/NYX_395.html?cgid=lipstick,https://www.nyxcosmetics.com,"Speak volumes with a bold swipe of Turnt Up! Lipstick. Go as soft or get as loud as you like using our wide range of 22 statement-making shades. From chic nudes to deep vampy hues, these lightweight and creamy lippies glide on effortlessly. Leaving lips with a kiss of shine and high-impact color you can count on for an unforgettable look.",,lipstick,lipstick,[],2017-12-24T02:26:33.173Z,2017-12-24T02:26:33.624Z,http://makeup-api.herokuapp.com/api/v1/products/865.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/865/original/open-uri20171224-4-1jh734z?1514082393,"[{'hex_value': '#FEA3A0', 'colour_name': 'French Kiss'}, {'hex_value': '#FF9B8F', 'colour_name': 'Pink Lady'}, {'hex_value': '#FE958F', 'colour_name': 'Beam'}, {'hex_value': '#FF5555', 'colour_name': 'Rags To Riches'}, {'hex_value': '#FE9288', 'colour_name': 'Tiara'}, {'hex_value': '#FF888C', 'colour_name': 'Sweet 16'}, {'hex_value': '#FE6695', 'colour_name': 'Privileged'}, {'hex_value': '#DB8880', 'colour_name': 'Flutter Kisses'}, {'hex_value': '#CA94C5', 'colour_name': 'Playdate'}, {'hex_value': '#A75BA5', 'colour_name': 'Twisted'}, {'hex_value': '#980A30', 'colour_name': 'Wine & Dine'}, {'hex_value': '#85242B', 'colour_name': 'Feline'}, {'hex_value': '#3E1213', 'colour_name': 'Dahlia'}, {'hex_value': '#9F0B0B', 'colour_name': 'Burlesque'}, {'hex_value': '#CC0607', 'colour_name': 'Hollywood'}, {'hex_value': '#EE2E2B', 'colour_name': 'Rock Star'}, {'hex_value': '#FE623A', 'colour_name': 'Free Spirit'}, {'hex_value': '#FFAC8E', 'colour_name': 'Tan-Gerine'}, {'hex_value': '#FFBB9E', 'colour_name': 'Mirage'}, {'hex_value': '#F1B18E', 'colour_name': 'Flawless'}, {'hex_value': '#ECAC91', 'colour_name': 'Stone'}, {'hex_value': '#8A4830', 'colour_name': 'Dirty Talk'}]"
+864,nyx,Pin-Up Pout Lipstick,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5c89147f/ProductImages/2017/Lips/Pin_Up_Pout_Lipstick/pinuppoutlipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/pin-up-pout-lipstick/NYX_399.html?cgid=lipstick,https://www.nyxcosmetics.com,"From polka dots to pointy pumps, nothing compares to the classics. Our personal fave? Ever so creamy lip color, of course! Take yourself back to the signature lip that started it all with our Pin-Up Pout Lipstick. Inspired by the best of vintage beauty, this retro rouge covers lips in extra plush, richly pigmented and absolutely undeniable color. Our throwback lipstick also offers beautiful coverage in an array of 24 swoon-worthy shades.",,lipstick,lipstick,[],2017-12-24T02:26:31.107Z,2017-12-24T02:26:31.439Z,http://makeup-api.herokuapp.com/api/v1/products/864.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/864/original/open-uri20171224-4-1xq0aej?1514082390,"[{'hex_value': '#D8687E', 'colour_name': 'Darling'}, {'hex_value': '#DF5866', 'colour_name': 'Opinionated'}, {'hex_value': '#F25491', 'colour_name': 'Dance Party'}, {'hex_value': '#D21A50', 'colour_name': 'Bombshell'}, {'hex_value': '#C56A65', 'colour_name': 'Boundless'}, {'hex_value': '#A6595F', 'colour_name': 'Almost Famous'}, {'hex_value': '#A02961', 'colour_name': 'Cocktail Hour'}, {'hex_value': '#F14231', 'colour_name': 'Fiery'}, {'hex_value': '#A30305', 'colour_name': 'Lucy'}, {'hex_value': '#930801', 'colour_name': 'Red Haute'}, {'hex_value': '#6F2323', 'colour_name': 'Revolution'}, {'hex_value': '#763637', 'colour_name': 'Rebel Soul'}, {'hex_value': '#9F8995', 'colour_name': 'Smoke Me'}, {'hex_value': '#984CA6', 'colour_name': 'Wisteria'}, {'hex_value': '#7A3169', 'colour_name': 'Violet Femme'}, {'hex_value': '#743049', 'colour_name': 'Flashy'}, {'hex_value': '#4A2F34', 'colour_name': 'True Vixen'}, {'hex_value': '#42306E', 'colour_name': 'Wild Spirit'}, {'hex_value': '#CC846C', 'colour_name': 'Silk'}, {'hex_value': '#C0745D', 'colour_name': 'Sophisticated'}, {'hex_value': '#BC7969', 'colour_name': 'Corset'}, {'hex_value': '#9C5949', 'colour_name': 'Individualistic'}, {'hex_value': '#6F3027', 'colour_name': 'Savage'}, {'hex_value': '#8D4749', 'colour_name': 'Resistance'}]"
+863,nyx,Super Cliquey Matte Lipstick,9.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6dcbd51c/ProductImages/2017/Lips/Super_Cliquey_Satin_Matte_Lipstick/supercliqueysatinmattelipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/super-cliquey-matte-lipstick/NYX_451.html?cgid=lipstick,https://www.nyxcosmetics.com,,,lipstick,lipstick,[],2017-12-24T02:26:29.474Z,2017-12-24T02:26:29.928Z,http://makeup-api.herokuapp.com/api/v1/products/863.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/863/original/open-uri20171224-4-16oiz6q?1514082389,"[{'hex_value': '#DB7D64', 'colour_name': 'On The DL'}, {'hex_value': '#EB6669', 'colour_name': 'Oh So Pretty'}, {'hex_value': '#9F3E52', 'colour_name': 'Obvs'}, {'hex_value': '#7E4F47', 'colour_name': 'Conform'}, {'hex_value': '#BF2259', 'colour_name': 'Serpent'}, {'hex_value': '#BF207A', 'colour_name': 'Chain Reaction'}, {'hex_value': '#D53C3E', 'colour_name': 'Snarky'}, {'hex_value': '#BF012D', 'colour_name': 'In The Red'}, {'hex_value': '#A21A2E', 'colour_name': 'Risktaker'}, {'hex_value': '#651F77', 'colour_name': 'Ruthless'}, {'hex_value': '#934A43', 'colour_name': 'Empowered'}, {'hex_value': '#742332', 'colour_name': 'Dangerous'}]"
+862,nyx,Powder Puff Lippie Powder Lip Cream,8.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw481c25c3/ProductImages/2018/Lips/Powder_Puff_Lippie/powderpufflippie_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/powder-puff-lippie-powder-lip-cream/NYX_586.html?cgid=lipstick,https://www.nyxcosmetics.com,"Pucker up and powder your pout! Featuring a pillowy cushion-applicator, our new Powder Puff Lippie Powder Lip Cream goes on mousse-y and sets to a powdery soft finish. Achieve a flush of color in eight vibrant shades—from warm peach to true red, and hot pink to cool plum—for an irresistible, just-kissed look.",,lipstick,lipstick,[],2017-12-24T02:26:22.029Z,2017-12-24T02:26:22.453Z,http://makeup-api.herokuapp.com/api/v1/products/862.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/862/original/open-uri20171224-4-zsba91?1514082381,"[{'hex_value': '#864B45', 'colour_name': 'Cool Intentions'}, {'hex_value': '#D9484D', 'colour_name': 'Puppy Love'}, {'hex_value': '#98020D', 'colour_name': 'Group Love'}, {'hex_value': '#A65156', 'colour_name': 'Squad Goals'}, {'hex_value': '#BD2266', 'colour_name': 'Teenage Dream'}, {'hex_value': '#682826', 'colour_name': 'Pop Quiz'}, {'hex_value': '#874755', 'colour_name': 'Moody'}, {'hex_value': '#C06465', 'colour_name': 'Best Buds'}]"
+861,nyx,Lip Lustre Glossy Lip Tint,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw42117915/ProductImages/2016/Lips/Lip_Lustre_Glossy_Lip_Tint/liplustreglossyliptint_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/lip-lustre-glossy-lip-tint/NYX_362.html?cgid=lipgloss,https://www.nyxcosmetics.com,"Lavish your pout with extraordinary shine and a hint of brilliant color with our new Lip Lustre Glossy Lip Tint! Silky smooth with a lightweight finish, this revolutionary formula glides on a gloss and adjusts to a gorgeous tint that lasts. (Yep, it’s amazing.)",,lip_gloss,lipstick,[],2017-12-24T02:26:18.020Z,2017-12-24T02:26:18.467Z,http://makeup-api.herokuapp.com/api/v1/products/861.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/861/original/open-uri20171224-4-1s2vu19?1514082377,"[{'hex_value': '#C2696F', 'colour_name': 'Rustic Mirage'}, {'hex_value': '#D1506E', 'colour_name': 'Antique Romance'}, {'hex_value': '#A04858', 'colour_name': 'Liquid Plum'}, {'hex_value': '#F45D92', 'colour_name': 'Euphoric'}, {'hex_value': '#E62E86', 'colour_name': 'Retro Socialite'}, {'hex_value': '#FF383B', 'colour_name': 'Love Letter'}, {'hex_value': '#FE293D', 'colour_name': 'Mystic Gypsy'}, {'hex_value': '#F5273E', 'colour_name': 'Lovetopia'}, {'hex_value': '#D9544B', 'colour_name': 'Ruby Couture'}, {'hex_value': '#FF643D', 'colour_name': 'Juicy Peach'}, {'hex_value': '#9F43B2', 'colour_name': 'Violet Glass'}, {'hex_value': '#593C7C', 'colour_name': 'Dark Magic'}]"
+860,nyx,Cosmic Metals Lip Cream,7.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwffc4644e/ProductImages/2017/Lips/Cosmic_Metals_Lip_Cream/cosmicmetalslipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/cosmic-metals-lip-cream/NYX_343.html?cgid=lipgloss,https://www.nyxcosmetics.com,"Intense, multidimensional color collides with the glistening effect of gloss for out-of-this world lips like you’ve never seen before. Now available in six more nude-based shades—from champagne gold and pink to a gorgeous deep brown laced with blue shimmer—our creamy-smooth Cosmic Metals Lip Cream covers your lips in lustrous color and a dazzling metallic finish that feels and looks like a gloss.",,lip_gloss,lipstick,[],2017-12-24T02:26:14.882Z,2017-12-24T02:26:15.399Z,http://makeup-api.herokuapp.com/api/v1/products/860.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/860/original/open-uri20171224-4-1cgu3rl?1514082374,"[{'hex_value': '#F4267B', 'colour_name': 'Fuchsia Fusion'}, {'hex_value': '#CC7C7F', 'colour_name': 'Crystalized Metal'}, {'hex_value': '#FD633D', 'colour_name': 'Solar Energy'}, {'hex_value': '#03A373', 'colour_name': 'Out Of This World'}, {'hex_value': '#747354', 'colour_name': 'Extraterrestrial'}, {'hex_value': '#029BA1', 'colour_name': 'Electromagnetic'}, {'hex_value': '#0090C7', 'colour_name': 'Comets Tail'}, {'hex_value': '#166DA3', 'colour_name': 'Dark Nebula'}, {'hex_value': '#B145AA', 'colour_name': 'Asteroid Aura'}, {'hex_value': '#894DA5', 'colour_name': 'Ultraviolet'}, {'hex_value': '#3750A4', 'colour_name': 'Celestial Star'}, {'hex_value': '#F08C72', 'colour_name': 'Speed Of Light'}, {'hex_value': '#D29F82', 'colour_name': 'Metropolitan Night'}, {'hex_value': '#D69A76', 'colour_name': 'Celestial'}, {'hex_value': '#C99379', 'colour_name': 'Retro Harmony'}, {'hex_value': '#9D5D44', 'colour_name': 'Galactic Love'}, {'hex_value': '#824F4B', 'colour_name': 'Elite'}, {'hex_value': '#747378', 'colour_name': 'Galactic'}]"
+859,nyx,Epic Ink Lip Dye,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7d8fe312/ProductImages/2017/Lips/Epic_Ink_Lip_Dye/epicinklipdye_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/epic-ink-lip-dye/NYX_397.html?cgid=lipgloss,https://www.nyxcosmetics.com,"Drench your kiss in knockout color! A stroke of Epic Ink Lip Dye coats lips with a downright dramatic stain. Super-saturated and lightweight, our formula dries to a Matte finish. This stunning lip dye is an absolute makeup bag must-have. Rock it alone for an effortlessly vibrant look. Or give your favorite lippies a boost by wearing it under a similar shade!",,lip_gloss,lipstick,[],2017-12-24T02:26:12.842Z,2017-12-24T02:26:13.312Z,http://makeup-api.herokuapp.com/api/v1/products/859.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/859/original/open-uri20171224-4-1jzc6ty?1514082372,"[{'hex_value': '#C20201', 'colour_name': 'Poised'}, {'hex_value': '#B60E0E', 'colour_name': 'Blazed'}, {'hex_value': '#8E1325', 'colour_name': 'Fresh'}, {'hex_value': '#710906', 'colour_name': 'Slay'}, {'hex_value': '#69131C', 'colour_name': 'Wizardry'}, {'hex_value': '#AF0A2C', 'colour_name': 'Charmer'}, {'hex_value': '#AF0C45', 'colour_name': 'Heartbreaker'}, {'hex_value': '#7A1B53', 'colour_name': 'Obsessed'}, {'hex_value': '#7B1B40', 'colour_name': 'Victorian'}, {'hex_value': '#4C091A', 'colour_name': 'Nightrunner'}, {'hex_value': '#572316', 'colour_name': 'Invasion'}, {'hex_value': '#E9361F', 'colour_name': 'Revolt'}]"
+858,nyx,Strictly Vinyl Lip Gloss,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd10df14c/ProductImages/2018/Lips/Strictly_Vinyl_Lip_Gloss/strictlyvinyllipgloss_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/strictly-vinyl-lip-gloss/NYX_592.html?cgid=lipgloss,https://www.nyxcosmetics.com,"Strictly Vinyl Lip Gloss is music to our lips! Available in eight plush and pigment packed shades, this beyond glossy lippie is no one-hit wonder. Hardcore color and intense shine is always just a few swipes away.",,lip_gloss,lipstick,[],2017-12-24T02:25:57.181Z,2017-12-24T02:25:57.647Z,http://makeup-api.herokuapp.com/api/v1/products/858.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/858/original/open-uri20171224-4-7z9c9k?1514082356,"[{'hex_value': '#7F4531', 'colour_name': 'Sugar Mama'}, {'hex_value': '#733B2E', 'colour_name': 'Bombshell'}, {'hex_value': '#603838', 'colour_name': 'Baby Doll'}, {'hex_value': '#670C13', 'colour_name': 'Bad Girl'}, {'hex_value': '#512C33', 'colour_name': 'Night Walker'}, {'hex_value': '#1A1929', 'colour_name': 'Rebel'}, {'hex_value': '#071C13', 'colour_name': 'Bad Seed'}, {'hex_value': '#201913', 'colour_name': 'Femme Fatale'}]"
+857,nyx,Duo Chromatic Lip Gloss,8.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf51cf9e7/ProductImages/2018/Lips/Duo_Chromatic_Lip_Gloss/duochromaticlipgloss_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/duo-chromatic-lip-gloss/NYX_579.html?cgid=lipgloss,https://www.nyxcosmetics.com,"Want totally mesmerizing lips? Then chrome and get ’em with our brand-new Duo Chromatic Lip Gloss loaded with pearls. These lippies deliver awesome shine, a hint of color and an intense, 3-D finish. Each lightweight shade slips onto your lips smoothly without feeling sticky. Swipe them on alone or over any lipstick for an unforgettable effect.",,lip_gloss,lipstick,[],2017-12-24T02:25:55.235Z,2017-12-24T02:25:55.925Z,http://makeup-api.herokuapp.com/api/v1/products/857.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/857/original/open-uri20171224-4-4k5tpf?1514082354,"[{'hex_value': '#CAA6A8', 'colour_name': 'The New Normal'}, {'hex_value': '#E8BBBE', 'colour_name': 'Booming'}, {'hex_value': '#DBACA4', 'colour_name': 'Spring It On'}, {'hex_value': '#E6B06A', 'colour_name': 'Cocktail Party'}, {'hex_value': '#EFA367', 'colour_name': 'Fairplay'}, {'hex_value': '#E0DBD5', 'colour_name': 'Crushing It'}, {'hex_value': '#BE9CAD', 'colour_name': 'Gypsy Dream'}, {'hex_value': '#A8C0C2', 'colour_name': 'Day Club'}, {'hex_value': '#D3CCB9', 'colour_name': 'Lucid'}, {'hex_value': '#A0C6B9', 'colour_name': 'Foam Party'}]"
+856,nyx,Slip Tease Full Color Lip Oil,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd377cdfa/ProductImages/2017/Lips/Slip_Tease_Full_Color_Lip_Oil/slipteasefullcolorlipoil_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/slip-tease-full-color-lip-oil/NYX_444.html?cgid=lipgloss,https://www.nyxcosmetics.com,,,lip_gloss,lipstick,[],2017-12-24T02:25:52.691Z,2017-12-24T02:26:11.159Z,http://makeup-api.herokuapp.com/api/v1/products/856.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/856/original/open-uri20171224-4-n7nifg?1514082369,"[{'hex_value': '#D7978E', 'colour_name': 'I Woke Up Like This'}, {'hex_value': '#B98180', 'colour_name': 'Entice'}, {'hex_value': '#D87884', 'colour_name': 'Coy'}, {'hex_value': '#8B4B4C', 'colour_name': 'Bang Bang'}, {'hex_value': '#FF56A8', 'colour_name': 'Baecation'}, {'hex_value': '#B73E8D', 'colour_name': 'Fatal Attraction'}, {'hex_value': '#974AB4', 'colour_name': 'Feisty'}, {'hex_value': '#BD6A66', 'colour_name': 'Lowkey'}, {'hex_value': '#921736', 'colour_name': 'Fire Dancer'}, {'hex_value': '#A1745D', 'colour_name': 'Beyond Basic'}, {'hex_value': '#D3212F', 'colour_name': 'Red Queen'}, {'hex_value': '#FF6964', 'colour_name': 'Breezy'}]"
+855,nyx,Liquid Suede Metallic Matte,7.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9d2f72a4/ProductImages/2017/Lips/Liquid_Suede_Metallic_Matte/liquidsuedemetallicmatte_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/liquid-suede-metallic-matte/NYX_441.html?cgid=lipstick,https://www.nyxcosmetics.com,"Wrap your lips in high-impact metallic color with Liquid Suede Metallic Matte, a striking new lip inspired by our best-selling Liquid Suede Cream Lipstick. Available in 12 statement-making shades, these shockingly creamy lippies deliver instant dimension and incredible color payoff. In other words, get ready to slay.",,lipstick,lipstick,[],2017-12-24T02:25:49.754Z,2017-12-24T02:26:23.322Z,http://makeup-api.herokuapp.com/api/v1/products/855.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/855/original/open-uri20171224-4-10m51gg?1514082383,"[{'hex_value': '#BC7D5A', 'colour_name': 'Exposed'}, {'hex_value': '#9A4F3C', 'colour_name': 'Mauve Mist'}, {'hex_value': '#9C3E3C', 'colour_name': 'Bella'}, {'hex_value': '#82412B', 'colour_name': 'New Era'}, {'hex_value': '#563428', 'colour_name': 'Neat Nude'}, {'hex_value': '#A91851', 'colour_name': 'Buzzkill'}, {'hex_value': '#9E1F26', 'colour_name': 'Acme'}, {'hex_value': '#7A253A', 'colour_name': 'Modern Maven'}, {'hex_value': '#761538', 'colour_name': 'Pure Society'}, {'hex_value': '#752329', 'colour_name': 'Biker Babe'}, {'hex_value': '#472071', 'colour_name': 'Ego'}, {'hex_value': '#2F3239', 'colour_name': 'Go Rogue'}]"
+854,nyx,Liquid Suede Cream Lipstick,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa19d7c26/ProductImages/Lips/Liquid_Suede_Cream_Lipstick/liquidsuedecreamlipstick_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/liquid-suede-cream-lipstick/NYX_201.html?cgid=lipstick,https://www.nyxcosmetics.com,"Doll up your lips in plush and vibrant color! Our Liquid Suede Cream Lipstick glides on and sets into a striking matte finish. Now available in 12 more velvety-soft shades, this waterproof lippie creates a positively polished look with every swipe.",,lipstick,lipstick,[],2017-12-24T02:25:46.851Z,2017-12-24T02:26:39.313Z,http://makeup-api.herokuapp.com/api/v1/products/854.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/854/original/open-uri20171224-4-seihwb?1514082398,"[{'hex_value': '#DF666F', 'colour_name': 'Tea & Cookies'}, {'hex_value': '#FE5862', 'colour_name': ""Life's A Beach""}, {'hex_value': '#FC3183', 'colour_name': 'Pink Lust'}, {'hex_value': '#CD060B', 'colour_name': 'Kitten Heels'}, {'hex_value': '#962A27', 'colour_name': 'Cherry Skies'}, {'hex_value': '#FD7136', 'colour_name': 'Foiled Again'}, {'hex_value': '#FC5221', 'colour_name': 'Orange County'}, {'hex_value': '#01A3E3', 'colour_name': 'Little Denim Dress'}, {'hex_value': '#2F2A88', 'colour_name': 'Jet Set'}, {'hex_value': '#3A1C66', 'colour_name': 'Foul Mouth'}, {'hex_value': '#DE65B2', 'colour_name': 'Respect The Pink'}, {'hex_value': '#BE61B1', 'colour_name': 'Sway'}, {'hex_value': '#A03FA0', 'colour_name': 'Run The World'}, {'hex_value': '#6D2686', 'colour_name': 'Amethyst'}, {'hex_value': '#5A2253', 'colour_name': 'Subversive Socialite'}, {'hex_value': '#3B1153', 'colour_name': 'Oh, Put It On'}, {'hex_value': '#7B2D3B', 'colour_name': 'Vintage'}, {'hex_value': '#722F26', 'colour_name': 'Club Hopper'}, {'hex_value': '#AA614E', 'colour_name': 'Sandstorm'}, {'hex_value': '#AE5350', 'colour_name': 'Soft-Spoken'}, {'hex_value': '#815049', 'colour_name': 'Brooklyn Thorn'}, {'hex_value': '#7E5036', 'colour_name': 'Downtown Beauty'}, {'hex_value': '#585455', 'colour_name': 'Stone Fox'}, {'hex_value': '#2A2829', 'colour_name': 'Alien'}]"
+853,nyx,Lip Lingerie,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw00c7446b/ProductImages/2017/Lips/Lip_Lingerie_Extension/liplingerie_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/lip-lingerie/NYX_315.html?cgid=lipstick,https://www.nyxcosmetics.com,"Slip into something seductive with Lip Lingerie, our luxurious liquid lipstick with a plush, Matte finish. Available in the color-kissed hues you know and love—from cinnamon pink and chocolate brown, to warm mahogany red and classic nude beige—plus, 12 brand-new nudes! Each sultry shade will coat the curves of your lips with irresistibly creamy color.",,lipstick,lipstick,[],2017-12-24T02:25:43.772Z,2017-12-24T02:26:27.212Z,http://makeup-api.herokuapp.com/api/v1/products/853.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/853/original/open-uri20171224-4-107hboe?1514082386,"[{'hex_value': '#F8AB8F', 'colour_name': 'Cheekies'}, {'hex_value': '#E59886', 'colour_name': 'Silk Indulgent'}, {'hex_value': '#C48B7A', 'colour_name': 'Baby Doll'}, {'hex_value': '#C38878', 'colour_name': 'Lace Detail'}, {'hex_value': '#B77E6B', 'colour_name': 'Push-Up'}, {'hex_value': '#AF7260', 'colour_name': 'Bedtime Flirt'}, {'hex_value': '#AF7079', 'colour_name': 'Embellishment'}, {'hex_value': '#BF7D6F', 'colour_name': 'Cashmere Silk'}, {'hex_value': '#A9796F', 'colour_name': 'Bustier'}, {'hex_value': '#A76169', 'colour_name': 'French Maid'}, {'hex_value': '#704D47', 'colour_name': 'Confident'}, {'hex_value': '#903E33', 'colour_name': 'Exotic'}, {'hex_value': '#A25A4E', 'colour_name': 'Cabaret Show'}, {'hex_value': '#C46954', 'colour_name': 'Seduction'}, {'hex_value': '#C07764', 'colour_name': 'Ruffle Trim'}, {'hex_value': '#E29871', 'colour_name': 'Dusk To Dawn'}, {'hex_value': '#C59581', 'colour_name': 'Satin Ribbon'}, {'hex_value': '#C0947B', 'colour_name': 'Corset'}, {'hex_value': '#966F60', 'colour_name': 'Delicate Lust'}, {'hex_value': '#96705D', 'colour_name': 'Honeymoon'}, {'hex_value': '#8F624D', 'colour_name': 'Teddy'}, {'hex_value': '#8B5845', 'colour_name': 'After Hours'}, {'hex_value': '#855A4A', 'colour_name': 'Beauty Mark'}, {'hex_value': '#715E50', 'colour_name': 'Scandalous'}]"
+852,nyx,Soft Matte Lip Cream,6.5,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw663a4cdb/ProductImages/Lips/Soft_Matte_Lip_Cream/softmattelipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/soft-matte-lip-cream/NYX_007.html?cgid=lipstick,https://www.nyxcosmetics.com,"Now available in twelve more statement-making shades, our velvety smooth Soft Matte Lip Cream delivers a burst of creamy color and sets to a stunning matte finish. Surprisingly durable, lightweight and delightfully creamy, it’s no wonder this sweetly scented formula is a fan favorite.",,lipstick,lipstick,[],2017-12-24T02:25:38.550Z,2017-12-24T02:26:24.604Z,http://makeup-api.herokuapp.com/api/v1/products/852.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/852/original/open-uri20171224-4-1a0jfqz?1514082384,"[{'hex_value': '#D18B72', 'colour_name': 'London'}, {'hex_value': '#F6A0BD', 'colour_name': 'Sydney'}, {'hex_value': '#FB9BA6', 'colour_name': 'Tokyo'}, {'hex_value': '#ED9194', 'colour_name': 'Istanbul'}, {'hex_value': '#F17086', 'colour_name': 'Milan'}, {'hex_value': '#F34745', 'colour_name': 'Manila'}, {'hex_value': '#FB5062', 'colour_name': 'Antwerp'}, {'hex_value': '#F54F5B', 'colour_name': 'Ibiza'}, {'hex_value': '#C43F6C', 'colour_name': 'Prague'}, {'hex_value': '#D6475B', 'colour_name': 'Sao Paulo'}, {'hex_value': '#E83169', 'colour_name': 'Paris'}, {'hex_value': '#E93275', 'colour_name': 'Addis Ababa'}, {'hex_value': '#9F3B77', 'colour_name': 'Seoul'}, {'hex_value': '#123368', 'colour_name': 'Moscow'}, {'hex_value': '#622F8C', 'colour_name': 'Havana'}, {'hex_value': '#78293C', 'colour_name': 'Vancouver'}, {'hex_value': '#621132', 'colour_name': 'Transylvania'}, {'hex_value': '#7B0F33', 'colour_name': 'Copenhagen'}, {'hex_value': '#953C42', 'colour_name': 'Budapest'}, {'hex_value': '#7C2325', 'colour_name': 'Madrid'}, {'hex_value': '#9C0A2F', 'colour_name': 'Monte Carlo'}, {'hex_value': '#E12836', 'colour_name': 'Amsterdam'}, {'hex_value': '#FE3A20', 'colour_name': 'Morocco'}, {'hex_value': '#FF5A3C', 'colour_name': 'San Juan'}, {'hex_value': '#FC9B88', 'colour_name': 'Buenos Aires'}, {'hex_value': '#F7B690', 'colour_name': 'Cairo'}, {'hex_value': '#F6A385', 'colour_name': 'Athens'}, {'hex_value': '#F0847A', 'colour_name': 'Zurich'}, {'hex_value': '#E78779', 'colour_name': 'Stockholm'}, {'hex_value': '#D58D75', 'colour_name': 'Abu Dhabi'}, {'hex_value': '#D36B5E', 'colour_name': 'Cannes'}, {'hex_value': '#92433C', 'colour_name': 'Rome'}, {'hex_value': '#7B4129', 'colour_name': 'Dubai'}, {'hex_value': '#7F3C22', 'colour_name': 'Berlin'}]"
+851,nyx,Soft Matte Metallic Lip Cream,7.0,$,USD,https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw21376be0/ProductImages/2018/Lips/Soft_Matte_Metallic_Lip_Cream/softmattelipcream_main.jpg?sw=390&sh=390&sm=fit,https://www.nyxcosmetics.com/soft-matte-metallic-lip-cream/NYX_593.html?cgid=liquid-lipstick,https://www.nyxcosmetics.com,"Now available in 12 statement-making metallics, our new Soft Matte Metallic Lip Cream shades deliver a burst of pearly color and set to a stunning matte finish. These little beauties are just as lightweight, delightfully creamy and sweetly scented as all the shades you know and love!",,liquid,lipstick,[],2017-12-24T02:25:36.004Z,2017-12-24T02:25:36.547Z,http://makeup-api.herokuapp.com/api/v1/products/851.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/851/original/open-uri20171224-4-b88byj?1514082335,"[{'hex_value': '#783628', 'colour_name': 'Dubai'}, {'hex_value': '#F0636B', 'colour_name': 'Manila'}, {'hex_value': '#E17680', 'colour_name': 'Milan'}, {'hex_value': '#D16966', 'colour_name': 'Cannes'}, {'hex_value': '#954649', 'colour_name': 'Rome'}, {'hex_value': '#D21D54', 'colour_name': 'Paris'}, {'hex_value': '#BF1726', 'colour_name': 'Monte Carlo'}, {'hex_value': '#9F3275', 'colour_name': 'Seoul'}, {'hex_value': '#612B9A', 'colour_name': 'Havana'}, {'hex_value': '#78323A', 'colour_name': 'Copenhagen'}, {'hex_value': '#922834', 'colour_name': 'Madrid'}, {'hex_value': '#822C35', 'colour_name': 'Budapest'}]"
+850,fenty,MATTEMOISELLE - Plush Matte Lipstick,18.0,$,USD,https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dwc8c6d1b8/hi-res/FB40005_FB4014.jpg?sw=550 550w,https://www.fentybeauty.com/mattemoiselle/plush-matte-lipstick/FB40005.html?dwvar_FB40005_color=FB4014,https://www.fentybeauty.com,"An ultra slim lipstick with a longwearing, petal-soft matte finish, created in a rainbow of 14 weightless, color-intense shades each designed to flatter all skin tones.",,lipstick,lipstick,[],2017-12-23T23:53:46.839Z,2017-12-25T23:53:17.595Z,http://makeup-api.herokuapp.com/api/v1/products/850.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/850/original/open-uri20171224-4-w3yj1s?1514073895,"[{'hex_value': '#B6232B', 'colour_name': ""Ma'Damn - Royal Red""}, {'hex_value': '#DC386C', 'colour_name': 'Candy Venom - Electric Pink'}, {'hex_value': '#E08F71', 'colour_name': 'Up 2 No Good - Nude Peach'}, {'hex_value': '#C95E3C', 'colour_name': 'Freckle Fiesta - Spiced Terracotta'}, {'hex_value': '#6D271A', 'colour_name': 'PMS - Moody Brown'}, {'hex_value': '#6785B8', 'colour_name': 'Ya Dig?! - Periwinkle Blue'}, {'hex_value': '#9B7DC1', 'colour_name': 'One of the Boyz - Wild Lilac'}, {'hex_value': '#631B26', 'colour_name': 'Griselda - Bold Burgundy'}, {'hex_value': '#A7453C', 'colour_name': 'Spanked - Dusty Rose'}, {'hex_value': '#FC8327', 'colour_name': 'Saw-C - Exotic Tangerine'}, {'hex_value': '#D37655', 'colour_name': 'S1ngle - Blushing Nude'}, {'hex_value': '#894134', 'colour_name': 'Shawty - Warm Chestnut'}, {'hex_value': '#437954', 'colour_name': 'Midnight Wasabi - Wicked Green'}, {'hex_value': '#072345', 'colour_name': 'Clapback - True Navy'}]"
+849,fenty,ECLIPSE - 2-in-1 Glitter Release Eyeliner,20.0,$,USD,https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw361a8ee8/hi-res/FB40002_FB4006.jpg?sw=550 550w,https://www.fentybeauty.com/eclipse/2-in-1-glitter-release-eyeliner/FB40002.html?dwvar_FB40002_color=FB4006,https://www.fentybeauty.com,A limited-edition liquid eyeliner with a transforming metallic-to-glitter formula that lets you choose your own finish.,,liquid,eyeliner,[],2017-12-23T23:43:39.529Z,2017-12-25T23:58:45.446Z,http://makeup-api.herokuapp.com/api/v1/products/849.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/849/original/open-uri20171223-4-1sk5zli?1514072784,"[{'hex_value': '#C8896E', 'colour_name': 'Later, Crater - Nude Metallic/Nude Gold Glitter'}, {'hex_value': '#274A45', 'colour_name': 'Nepturnt - Green-Black Metallic/Smoky Emerald Glitter'}, {'hex_value': '#122835', 'colour_name': 'Alien Bae - Blue-Black Metallic/Smoky Navy Glitter'}]"
+848,fenty,COSMIC GLOSS - Lip Glitter,19.0,$,USD,https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dwc6450206/hi-res/FB40001_FB4001.jpg?sw=550 550w,https://www.fentybeauty.com/cosmic-gloss/lip-glitter/FB40001.html?dwvar_FB40001_color=FB4001,https://www.fentybeauty.com,"A limited-edition glitter-packed lip gloss that delivers the ultimate triple-threat of creamy color, glitter, and shine.",,lip_gloss,lipstick,[],2017-12-23T23:43:38.786Z,2017-12-25T23:56:53.895Z,http://makeup-api.herokuapp.com/api/v1/products/848.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/848/original/open-uri20171223-4-gjj2xg?1514072782,"[{'hex_value': '#8E406D', 'colour_name': 'Gal On The Moon - Holographic Pink Orchid'}, {'hex_value': '#FE7C63', 'colour_name': 'Spacesuit - Glittering Peach'}, {'hex_value': '#EB4077', 'colour_name': 'Plutonic Relationshp - Holographic Hot Pink'}, {'hex_value': '#5B1525', 'colour_name': 'Astro-Naughty - Glittering Garnet'}]"
+847,fenty,MATCH STIX - Matte Skinstick,25.0,$,USD,https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw50617083/hi-res/FB30003_FB3009.jpg?sw=550 550w,https://www.fentybeauty.com/match-stix/matte-skinstick/FB30003.html?dwvar_FB30003_color=FB3009,https://www.fentybeauty.com,"A magnetized makeup stick in a longwear, light-as-air matte formula to conceal, correct, contour, and touch up in 20 shades.",,concealer,foundation,[],2017-12-23T23:43:36.178Z,2017-12-25T23:51:22.527Z,http://makeup-api.herokuapp.com/api/v1/products/847.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/847/original/open-uri20171224-4-1se9mcb?1514074989,"[{'hex_value': '#C9A074', 'colour_name': 'Maple - Neutral'}, {'hex_value': '#683525', 'colour_name': 'Espresso - Cool'}, {'hex_value': '#D9A877', 'colour_name': 'Maple - Neutral'}, {'hex_value': '#EABC95', 'colour_name': 'Bamboo - Neutral'}, {'hex_value': '#EAB087', 'colour_name': 'Honey - Warm Peach'}, {'hex_value': '#C59072', 'colour_name': 'Mocha - Cool'}, {'hex_value': '#C5885D', 'colour_name': 'Suede - Warm'}, {'hex_value': '#CE8E5C', 'colour_name': 'Latte - Warm'}, {'hex_value': '#E1AA7F', 'colour_name': 'Caramel - Cool'}, {'hex_value': '#DA9F65', 'colour_name': 'Wheat - Warm'}, {'hex_value': '#EFAE83', 'colour_name': 'Peach - Cool Peach'}, {'hex_value': '#F6D5B6', 'colour_name': 'Linen - Cool'}, {'hex_value': '#7C411F', 'colour_name': 'Truffle - Neutral'}, {'hex_value': '#B08B72', 'colour_name': 'Amber - Cool Contour'}, {'hex_value': '#CF936A', 'colour_name': 'Cocoa - Cool'}, {'hex_value': '#CB9064', 'colour_name': 'Walnut - Neutral'}, {'hex_value': '#DA9D6F', 'colour_name': 'Almond - Cool'}, {'hex_value': '#E2AE83', 'colour_name': 'Sand - Neutral'}, {'hex_value': '#F7D2AC', 'colour_name': 'French Vanilla - Warm'}, {'hex_value': '#F5DABE', 'colour_name': 'Porcelain - Cool'}]"
+846,clinique,Even Better™ Compact Makeup Broad Spectrum SPF 15,32.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7M81_181x209.png,https://www.clinique.com/product/1599/24867/makeup/foundations/even-better-compact-makeup-broad-spectrum-spf-15,https://www.clinique.com,"A light cream with a powdery finish, our compact makeup creates more even-toned skin, instantly. Shades for Very Fair, Moderately Fair, Medium, Deep.",,,foundation,[],2017-12-23T23:43:17.723Z,2017-12-23T23:43:22.499Z,http://makeup-api.herokuapp.com/api/v1/products/846.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/846/original/data?1514072602,"[{'hex_value': '#F3D6BF', 'colour_name': '1 Linen'}, {'hex_value': '#F0C9AE', 'colour_name': '2 Alabaster'}, {'hex_value': '#E9BC98', 'colour_name': '4 Creamwhip'}, {'hex_value': '#F1BF9E', 'colour_name': '5 Fair'}, {'hex_value': '#E6BC9F', 'colour_name': '6 Ivory'}, {'hex_value': '#DEB193', 'colour_name': '7 Cream Chamois'}, {'hex_value': '#E2B186', 'colour_name': '8 Golden Neutral'}, {'hex_value': '#DCAB86', 'colour_name': '9 Neutral'}, {'hex_value': '#DAA878', 'colour_name': '11 Honey'}, {'hex_value': '#D7A581', 'colour_name': '12 Porcelain Beige'}, {'hex_value': '#D6A683', 'colour_name': '14 Vanilla'}, {'hex_value': '#D09B73', 'colour_name': '15 Beige'}, {'hex_value': '#C99B71', 'colour_name': '18 Sand'}, {'hex_value': '#D28E55', 'colour_name': '20 Deep Neutral'}, {'hex_value': '#C8874E', 'colour_name': '21 Cream Caramel'}, {'hex_value': '#BE773D', 'colour_name': '23 Ginger'}, {'hex_value': '#B4753E', 'colour_name': '24 Golden'}, {'hex_value': '#995C27', 'colour_name': '26 Amber'}, {'hex_value': '#8E5230', 'colour_name': '28 Clove'}, {'hex_value': '#834E2E', 'colour_name': '29 Sienna'}]"
+845,clinique,Redness Solutions Makeup Broad Spectrum SPF 15 With Probiotic Technology,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_70JW_181x209.png,https://www.clinique.com/product/1599/13188/makeup/foundations/redness-solutions-makeupbroad-spectrum-spf-15with-probiotic-technology,https://www.clinique.com,,,,foundation,[],2017-12-23T23:43:17.197Z,2017-12-23T23:43:21.929Z,http://makeup-api.herokuapp.com/api/v1/products/845.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/845/original/data?1514072601,"[{'hex_value': '#CD8E6B', 'colour_name': 'Calming Vanilla'}, {'hex_value': '#DC9C7A', 'colour_name': 'Calming Neutral'}, {'hex_value': '#F4BB95', 'colour_name': 'Calming Alabaster'}, {'hex_value': '#F1B08C', 'colour_name': 'Calming Fair'}, {'hex_value': '#CF906E', 'colour_name': 'Calming Honey'}, {'hex_value': '#E7A784', 'colour_name': 'Calming Ivory'}]"
+844,clinique,Stay-Matte Oil-Free Makeup,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7KXC_181x209.png,https://www.clinique.com/product/1599/21954/makeup/foundations/stay-matte-oil-free-makeup,https://www.clinique.com,"Tested for streaking and fading at 88°F with a constant 80% humidity, all to prove Stay-Matte stays fresh. At the same time, this patent-pending formula absorbs shine, controls oil, resists sweat. And you stay matte all day.",,,foundation,[],2017-12-23T23:43:16.503Z,2017-12-23T23:43:21.230Z,http://makeup-api.herokuapp.com/api/v1/products/844.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/844/original/data?1514072601,"[{'hex_value': '#F3D6BF', 'colour_name': '01 Linen'}, {'hex_value': '#F0C9AE', 'colour_name': '02 Alabaster'}, {'hex_value': '#E9BC98', 'colour_name': '04 Cream Whip'}, {'hex_value': '#F1BF9E', 'colour_name': '05 Fair'}, {'hex_value': '#E6BC9F', 'colour_name': '06 Ivory'}, {'hex_value': '#DEB193', 'colour_name': '07 Cream Chamois'}, {'hex_value': '#E2B186', 'colour_name': '08 Golden Neutral'}, {'hex_value': '#DCAB86', 'colour_name': '09 Neutral'}, {'hex_value': '#DAA878', 'colour_name': '11 Honey'}, {'hex_value': '#D6A683', 'colour_name': '14 Vanilla'}, {'hex_value': '#D09B73', 'colour_name': '15 Beige'}, {'hex_value': '#C99B71', 'colour_name': '19 Sand'}, {'hex_value': '#D28E55', 'colour_name': '20 Deep Neutral'}, {'hex_value': '#C8874E', 'colour_name': '21 Cream Caramel'}, {'hex_value': '#BE773D', 'colour_name': '23 Ginger'}, {'hex_value': '#B4753E', 'colour_name': '24 Golden'}, {'hex_value': '#AD7044', 'colour_name': '25 Spice'}, {'hex_value': '#995C27', 'colour_name': '26 Amber'}, {'hex_value': '#8E5230', 'colour_name': '28 Clove'}, {'hex_value': '#834E2E', 'colour_name': '29 Sienna'}]"
+843,clinique,Repairwear Laser Focus™ All-Smooth Makeup Broad Spectrum SPF 15,36.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7C5H01_181x209.png,https://www.clinique.com/product/1599/19314/makeup/foundations/repairwear-laser-focus-all-smooth-makeup-broad-spectrum-spf-15,https://www.clinique.com,,,,foundation,[],2017-12-23T23:43:15.393Z,2017-12-23T23:43:20.134Z,http://makeup-api.herokuapp.com/api/v1/products/843.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/843/original/data?1514072600,"[{'hex_value': '#F7D6BF', 'colour_name': 'Shade 01'}, {'hex_value': '#FAD4B4', 'colour_name': 'Shade 1.5'}, {'hex_value': '#F2C9A9', 'colour_name': 'Shade 02'}, {'hex_value': '#F0C5AA', 'colour_name': 'Shade 03'}, {'hex_value': '#ECBBA0', 'colour_name': 'Shade 04'}, {'hex_value': '#E4BAA2', 'colour_name': 'Shade 05'}, {'hex_value': '#DAAF91', 'colour_name': 'Shade 06'}, {'hex_value': '#DBA987', 'colour_name': 'Shade 07'}, {'hex_value': '#E1A989', 'colour_name': 'Shade 08'}, {'hex_value': '#DBA57A', 'colour_name': 'Shade 09'}, {'hex_value': '#C98B5D', 'colour_name': 'Shade 11'}, {'hex_value': '#B4753E', 'colour_name': 'Shade 12'}]"
+842,clinique,Perfectly Real™ Compact Makeup,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6GTY_181x209.png,https://www.clinique.com/product/1599/5273/makeup/foundations/perfectly-real-compact-makeup,https://www.clinique.com,"Silky, oil-free formula looks like your skin—only better. Optimizes skin's varying tones to create a more even appearance. Buildable coverage lasts for hours, yet feels like nothing at all. Controls shine. In a ready-to-go, ready-to-perfect compact. Oil-free.",,,foundation,[],2017-12-23T23:43:14.642Z,2017-12-23T23:43:19.524Z,http://makeup-api.herokuapp.com/api/v1/products/842.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/842/original/open-uri20171223-4-1b3ma9p?1514072599,"[{'hex_value': '#FAD4B4', 'colour_name': '104'}, {'hex_value': '#F2D0B9', 'colour_name': 'PR 106'}, {'hex_value': '#F2C9A9', 'colour_name': 'PR 114'}, {'hex_value': '#F1CBAB', 'colour_name': 'PR 108'}, {'hex_value': '#EFCAB2', 'colour_name': 'PR 110'}, {'hex_value': '#F7D6BF', 'colour_name': 'PR 102'}, {'hex_value': '#ECC6A2', 'colour_name': 'PR 116'}, {'hex_value': '#F0C5AA', 'colour_name': '118'}, {'hex_value': '#EBBF9F', 'colour_name': 'PR 120'}, {'hex_value': '#ECBD94', 'colour_name': '122'}, {'hex_value': '#E5B78B', 'colour_name': 'PR 126'}, {'hex_value': '#E9B68F', 'colour_name': 'PR 130'}, {'hex_value': '#E3AE7B', 'colour_name': 'PR 134'}, {'hex_value': '#E4AB7C', 'colour_name': '138'}, {'hex_value': '#D08F62', 'colour_name': '144'}, {'hex_value': '#BA784B', 'colour_name': '146'}]"
+841,clinique,Chubby in the Nude™ Foundation Stick,25.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH001_181x209.png,https://www.clinique.com/product/1599/39658/makeup/foundations/chubby-in-the-nude-foundation-stick,https://www.clinique.com,"Portable perfection for full-face coverage, or bare-minimum touch-ups. Creamy, moisturizing foundation stick blends easily. Builds from sheer to moderate coverage with a natural finish. Long-wearing. Oil-free.",,,foundation,[],2017-12-23T23:43:13.994Z,2017-12-23T23:43:19.003Z,http://makeup-api.herokuapp.com/api/v1/products/841.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/841/original/data?1514072598,"[{'hex_value': '#8E5230', 'colour_name': '28 Curviest Clove'}, {'hex_value': '#F0C9AE', 'colour_name': '02 Abundant Alabaster'}, {'hex_value': '#E6BC9F', 'colour_name': '06 Intense Ivory'}, {'hex_value': '#DEB193', 'colour_name': '07 Capacious Chamois'}, {'hex_value': '#E2B186', 'colour_name': '08 Grandest Golden Neutral'}, {'hex_value': '#DCAB86', 'colour_name': '09 ‘Normous Neutral'}, {'hex_value': '#D6A683', 'colour_name': '14 Voluptuous Vanilla'}, {'hex_value': '#D09B73', 'colour_name': '15 Bountiful Beige'}, {'hex_value': '#B4753E', 'colour_name': '24 Gargantuan Golden'}, {'hex_value': '#995c27', 'colour_name': '26 Ample Amber'}]"
+840,clinique,Super City Block™ BB Cushion Compact Broad Spectrum SPF 50,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZJE002_181x209.png,https://www.clinique.com/product/1599/40932/makeup/foundations/super-city-blocktm-bb-cushion-compact-broad-spectrum-spf-50,https://www.clinique.com,"Everything skin needs to face city life—flawlessly. Buildable, breathable fluid makeup feels cool and weightless on skin, yet delivers a lasting natural-matte finish. High-level SPF and antioxidants help protect against skin-damaging UV, impurities and environmental aggressors. All in a ready-to-go compact with puff applicator.",,,foundation,[],2017-12-23T23:43:13.073Z,2017-12-23T23:43:18.049Z,http://makeup-api.herokuapp.com/api/v1/products/840.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/840/original/open-uri20171223-4-scw918?1514072597,"[{'hex_value': '#F4C3A7', 'colour_name': '01 Fair'}, {'hex_value': '#E5B091', 'colour_name': '02 Moderately Fair'}, {'hex_value': '#DBB29C', 'colour_name': '03 Medium'}, {'hex_value': '#AA754E', 'colour_name': '04 Deep'}]"
+839,clinique,Superpowder Double Face Makeup,24.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_647J_181x209.png,https://www.clinique.com/product/1599/6077/makeup/foundations/superpowder-double-face-makeup,https://www.clinique.com,"Powder and foundation combined in one portable compact. Long-wearing, full-coverage powder works as an over-foundation finisher or as a powder foundation. Extra-cling formula for double coverage.",,,foundation,[],2017-12-23T23:43:12.156Z,2017-12-23T23:43:17.377Z,http://makeup-api.herokuapp.com/api/v1/products/839.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/839/original/open-uri20171223-4-qg5dlp?1514072597,"[{'hex_value': '#F9DDD1', 'colour_name': 'Matte Bisque'}, {'hex_value': '#F9D3BE', 'colour_name': 'Matte Ivory'}, {'hex_value': '#EDC3A5', 'colour_name': 'Matte Cream'}, {'hex_value': '#CCA588', 'colour_name': 'Matte Neutral'}, {'hex_value': '#F4CBAF', 'colour_name': 'Matte Beige'}, {'hex_value': '#EFC2A2', 'colour_name': 'Matte Medium'}, {'hex_value': '#EFC8B3', 'colour_name': 'Matte Honey'}, {'hex_value': '#DBA57A', 'colour_name': 'Matte Tawny'}]"
+838,clinique,Perfectly Real™ Makeup,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6AL9_181x209.png,https://www.clinique.com/product/1599/5238/makeup/foundations/perfectly-real-makeup,https://www.clinique.com,"Feels like nothing at all. Yet creates your skin's most perfected, natural look. Patent-pending* micro-mirrored technology optically resurfaces skin. Ultra-lightweight liquid formula is oil-free, non-acnegenic. *US and International Patents Pending",,,foundation,[],2017-12-23T23:43:11.296Z,2017-12-23T23:43:16.702Z,http://makeup-api.herokuapp.com/api/v1/products/838.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/838/original/data?1514072596,"[{'hex_value': '#F6DCCC', 'colour_name': 'Shade 01'}, {'hex_value': '#EFCAB4', 'colour_name': 'Shade 02'}, {'hex_value': '#E0B89C', 'colour_name': 'Shade 08'}, {'hex_value': '#DBAD92', 'colour_name': 'Shade 10'}, {'hex_value': '#E3B892', 'colour_name': 'Shade 12'}, {'hex_value': '#E8C0A3', 'colour_name': 'Shade 14'}, {'hex_value': '#E2B592', 'colour_name': 'Shade 18'}, {'hex_value': '#DBA788', 'colour_name': 'Shade 22'}, {'hex_value': '#DBAC78', 'colour_name': 'Shade 24'}, {'hex_value': '#E3AF8C', 'colour_name': 'Shade 28'}, {'hex_value': '#DDB68C', 'colour_name': 'Shade 30'}, {'hex_value': '#BA9765', 'colour_name': 'Shade 31'}, {'hex_value': '#D7A274', 'colour_name': 'Shade 34'}, {'hex_value': '#D2A17A', 'colour_name': 'Shade 36'}, {'hex_value': '#CE9C6A', 'colour_name': 'Shade 37'}, {'hex_value': '#B2804C', 'colour_name': 'Shade 39'}, {'hex_value': '#C98B5D', 'colour_name': 'Shade 42'}, {'hex_value': '#BA8D65', 'colour_name': 'Shade 45'}, {'hex_value': '#B37044', 'colour_name': 'Shade 46'}, {'hex_value': '#AF7642', 'colour_name': 'Shade 47'}, {'hex_value': '#824B2B', 'colour_name': 'Shade 48'}, {'hex_value': '#AD693E', 'colour_name': 'Shade 49'}]"
+837,clinique,Beyond Perfecting™ Powder Foundation + Concealer,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH6AA_181x209.png,https://www.clinique.com/product/1599/37389/makeup/foundations/beyond-perfecting-powder-foundation-concealer,https://www.clinique.com,"A powder foundation and concealer in one for a natural, beyond perfected look that lasts all day. Even through sweat and humidity. Weightless powder makeup covers thoroughly without clogging pores. Skin breathes comfortably, colour stays true. Oil-free.",,,foundation,[],2017-12-23T23:43:10.659Z,2017-12-23T23:43:15.896Z,http://makeup-api.herokuapp.com/api/v1/products/837.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/837/original/open-uri20171223-4-ih6soz?1514072595,"[{'hex_value': '#F7C8B2', 'colour_name': '0.5 Breeze'}, {'hex_value': '#FBEACD', 'colour_name': '0.25 Dune'}, {'hex_value': '#e4b78e', 'colour_name': '02 Alabaster'}, {'hex_value': '#d8ac8e', 'colour_name': '04 Cream Whip'}, {'hex_value': '#C7A084', 'colour_name': '06 Ivory'}, {'hex_value': '#c79877', 'colour_name': '07 Cream Chamois'}, {'hex_value': '#d29a71', 'colour_name': '08 Golden Neutral'}, {'hex_value': '#bc8d69', 'colour_name': '09 Neutral'}, {'hex_value': '#c38f6b', 'colour_name': '11 Honey'}, {'hex_value': '#d29c6f', 'colour_name': '14 Vanilla'}, {'hex_value': '#d1976f', 'colour_name': '15 Beige'}, {'hex_value': '#ba8668', 'colour_name': '18 Sand'}, {'hex_value': '#B57956', 'colour_name': '23 Ginger'}, {'hex_value': '#a16c4e', 'colour_name': '24 Golden'}, {'hex_value': '#CB7217', 'colour_name': '26 Amber'}, {'hex_value': '#A45A12', 'colour_name': '28 Clove'}]"
+836,clinique,Acne Solutions™ Liquid Makeup,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6WPR_181x209.png,https://www.clinique.com/product/1599/9285/makeup/foundations/acne-solutions-liquid-makeup,https://www.clinique.com,"Feels so fresh, looks so natural. Non-irritating, oil-free makeup helps blend away blemishes, neutralize redness. Medicated ingredients help treat existing breakouts and keep them from coming back.",,,foundation,[],2017-12-23T23:43:09.917Z,2017-12-23T23:43:15.129Z,http://makeup-api.herokuapp.com/api/v1/products/836.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/836/original/data?1514072595,"[{'hex_value': '#e4b393', 'colour_name': 'Fresh Fair'}, {'hex_value': '#DDC0A8', 'colour_name': 'Fresh Alabaster'}, {'hex_value': '#E4C8A7', 'colour_name': 'Fresh Ivory'}, {'hex_value': '#D8BE9F', 'colour_name': 'Fresh Neutral'}, {'hex_value': '#DAAE77', 'colour_name': 'Fresh Cream Chamois'}, {'hex_value': '#DA9767', 'colour_name': 'Fresh Porcelain Beige'}, {'hex_value': '#CB9260', 'colour_name': 'Fresh Cream Caramel'}, {'hex_value': '#BF8A6E', 'colour_name': 'Fresh Deep Neutral'}, {'hex_value': '#BB8458', 'colour_name': 'Fresh Honey'}, {'hex_value': '#BE9272', 'colour_name': 'Fresh Vanilla'}, {'hex_value': '#C59F84', 'colour_name': 'Fresh Beige'}, {'hex_value': '#B38F6B', 'colour_name': 'Fresh Sand'}, {'hex_value': '#915622', 'colour_name': 'Fresh Ginger'}, {'hex_value': '#AF7642', 'colour_name': 'Fresh Golden'}, {'hex_value': '#9b5621', 'colour_name': 'Fresh Amber'}, {'hex_value': '#714019', 'colour_name': 'Fresh Clove'}]"
+835,clinique,Superbalanced™ Makeup,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_60QH_181x209.png,https://www.clinique.com/product/1599/4989/makeup/foundations/superbalanced-makeup,https://www.clinique.com,"The smart makeup. Liquid foundation with adjustable, oil-free coverage provides moisture and absorbs oil when and where needed. Silky upon application.",,,foundation,[],2017-12-23T23:43:08.967Z,2017-12-23T23:43:14.142Z,http://makeup-api.herokuapp.com/api/v1/products/835.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/835/original/data?1514072594,"[{'hex_value': '#FFE6CB', 'colour_name': '32 Breeze'}, {'hex_value': '#FEDCBD', 'colour_name': '27 Alabaster'}, {'hex_value': '#F5D4B7', 'colour_name': '01 Petal'}, {'hex_value': '#F4D5BF', 'colour_name': '02 Fair'}, {'hex_value': '#F4CAA2', 'colour_name': '33 Cream'}, {'hex_value': '#E5BFA9', 'colour_name': '03 Ivory'}, {'hex_value': '#E2AD93', 'colour_name': '28 Light'}, {'hex_value': '#F4CBB3', 'colour_name': '04 Cream Chamois'}, {'hex_value': '#DAAD88', 'colour_name': '34 Nude Beige'}, {'hex_value': '#E1BAA3', 'colour_name': '05 Vanilla'}, {'hex_value': '#B9886E', 'colour_name': '06 Linen'}, {'hex_value': '#CE9358', 'colour_name': '35 Honeycomb'}, {'hex_value': '#F0AE96', 'colour_name': '07 Neutral'}, {'hex_value': '#D79370', 'colour_name': '09 Sand'}, {'hex_value': '#B17248', 'colour_name': '14 Wheat'}, {'hex_value': '#BB8F68', 'colour_name': '15 Golden'}, {'hex_value': '#A65E33', 'colour_name': '17 Amber'}, {'hex_value': '#975D44', 'colour_name': '18 Clove'}, {'hex_value': '#E19A7D', 'colour_name': '10 Warmer'}, {'hex_value': '#CC8C72', 'colour_name': '12 Honeyed Beige'}]"
+834,clinique,Stay-Matte Sheer Pressed Powder,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_645J_181x209.png,https://www.clinique.com/product/1599/6069/makeup/foundations/stay-matte-sheer-pressed-powder,https://www.clinique.com,"Shine-absorbing, oil-free formula. Ultra-sheer texture gives skin a perfected matte appearance. Great for oily skin and oily spots. Maintains a fresh look and feel, even after frequent touch-ups.",,,foundation,[],2017-12-23T23:43:08.253Z,2017-12-23T23:43:13.612Z,http://makeup-api.herokuapp.com/api/v1/products/834.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/834/original/open-uri20171223-4-1b6qpa2?1514072593,"[{'hex_value': '#EAC6A7', 'colour_name': '18 Stay Cream'}, {'hex_value': '#CEA288', 'colour_name': '02 Stay Neutral'}, {'hex_value': '#D3AB93', 'colour_name': '01 Stay Buff'}, {'hex_value': '#C8977A', 'colour_name': '17 Stay Golden'}, {'hex_value': '#C29275', 'colour_name': '03 Stay Beige '}, {'hex_value': '#D09B74', 'colour_name': '19 Stay Suede'}, {'hex_value': '#B27857', 'colour_name': '05 Stay Spice'}, {'hex_value': '#A16F53', 'colour_name': '10 Stay Amber'}, {'hex_value': '#B57B5F', 'colour_name': '04 Stay Honey'}, {'hex_value': '#B17A58', 'colour_name': '20 Stay Nutmeg'}, {'hex_value': '#9D6B50', 'colour_name': '21 Stay Sienna'}, {'hex_value': '#84523A', 'colour_name': '11 Stay Brandy'}]"
+833,clinique,Superbalanced™ Silk Makeup Broad Spectrum SPF 15,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH401_181x209.png,https://www.clinique.com/product/1599/42938/makeup/foundations/superbalancedtm-silk-makeup-broad-spectrum-spf-15,https://www.clinique.com,"Slip on a silk-enriched makeup. Feel naked, yet covered to perfection. Control oil, yet hydrate where needed. Protect with SPF. Oil-free. Sheer to moderate coverage. Natural-matte finish. Ideal for Dry Combination to Oily Skin Types.",,,foundation,[],2017-12-23T23:43:07.121Z,2017-12-23T23:43:12.808Z,http://makeup-api.herokuapp.com/api/v1/products/833.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/833/original/data?1514072592,"[{'hex_value': '#FFE6CB', 'colour_name': '01 Silk Porcelain'}, {'hex_value': '#F0C9AE', 'colour_name': '02 Silk Shell'}, {'hex_value': '#E9BC98', 'colour_name': '03 Silk Bare'}, {'hex_value': '#F1BF9E', 'colour_name': '04 Silk Bisque'}, {'hex_value': '#E5BFA9', 'colour_name': '05 Silk Ivory'}, {'hex_value': '#F4CBB3', 'colour_name': '06 Silk Cream Chamois'}, {'hex_value': '#E2B186', 'colour_name': '07 Silk Sahara'}, {'hex_value': '#DCAB86', 'colour_name': '08 Silk Canvas'}, {'hex_value': '#E0B394', 'colour_name': '09 Silk Bamboo'}, {'hex_value': '#DAA878', 'colour_name': '10 Silk Honeymilk'}, {'hex_value': '#D7A581', 'colour_name': '11 Silk Sunny Beige'}, {'hex_value': '#E0AD84', 'colour_name': '12 Silk Maple'}, {'hex_value': '#E1BAA3', 'colour_name': '13 Silk Vanilla'}, {'hex_value': '#D09B73', 'colour_name': '14 Silk Suede'}, {'hex_value': '#C99B71', 'colour_name': '15 Silk Nutmeg'}, {'hex_value': '#c8874e', 'colour_name': '16 Silk Almond'}, {'hex_value': '#BE773D', 'colour_name': '17 Silk Cinnamon'}, {'hex_value': '#B4753E', 'colour_name': '18 Silk Sable'}, {'hex_value': '#995C27', 'colour_name': '19 Silk Brandy'}, {'hex_value': '#8E5230', 'colour_name': '20 Silk Cocoa '}]"
+832,clinique,Even Better™ Makeup Broad Spectrum SPF 15,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6MNY_181x209.png,https://www.clinique.com/product/1599/5276/makeup/foundations/even-better-makeup-broad-spectrum-spf-15,https://www.clinique.com,"Wear oil-free, dermatologist-developed Even Better Makeup SPF 15 and something amazing happens: Without any makeup, see improved clarity, a more even skin tone, visibly diminished age spots. For all ethnicities. In just 4 to 6 weeks. Broad spectrum SPF helps protect against future darkening. For continued benefits—even after you take it off—partner with Even Better Clinical Dark Spot Corrector.",,,foundation,[],2017-12-23T23:43:06.202Z,2017-12-23T23:43:11.821Z,http://makeup-api.herokuapp.com/api/v1/products/832.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/832/original/data?1514072591,"[{'hex_value': '#F3D6BF', 'colour_name': 'CN 08 Linen'}, {'hex_value': '#F0C9AE', 'colour_name': 'CN 10 Alabaster'}, {'hex_value': '#E9BD9C', 'colour_name': 'WN 16 Buff'}, {'hex_value': '#E9BC98', 'colour_name': 'CN 18 Cream Whip'}, {'hex_value': '#F1BF9E', 'colour_name': 'CN 20 Fair'}, {'hex_value': '#E6BC9F', 'colour_name': 'CN 28 Ivory'}, {'hex_value': '#DEB193', 'colour_name': 'CN 40 Cream Chamois'}, {'hex_value': '#DCAB86', 'colour_name': 'CN 52 Neutral'}, {'hex_value': '#E2B186', 'colour_name': 'WN 46 Golden Neutral'}, {'hex_value': '#E5B68B', 'colour_name': 'WN 56 Cashew'}, {'hex_value': '#DAA878', 'colour_name': 'CN 58 Honey'}, {'hex_value': '#D7A581', 'colour_name': 'CN 62 Porcelain Beige'}, {'hex_value': '#E0AD84', 'colour_name': 'WN 64 Butterscotch'}, {'hex_value': '#D6A683', 'colour_name': 'CN 70 Vanilla'}, {'hex_value': '#D09B73', 'colour_name': 'CN 74 Beige'}, {'hex_value': '#CE9465', 'colour_name': 'CN 78 Nutty'}, {'hex_value': '#D49C70', 'colour_name': 'WN 80 Tawnied Beige'}, {'hex_value': '#D29560', 'colour_name': 'WN 82 Latte'}, {'hex_value': '#C99B71', 'colour_name': 'CN 90 Sand'}, {'hex_value': '#D28E55', 'colour_name': 'WN 94 Deep Neutral'}, {'hex_value': '#C8874E', 'colour_name': 'WN 98 Cream Caramel'}, {'hex_value': '#C58342', 'colour_name': 'WN 104 Toffee'}, {'hex_value': '#BE773D', 'colour_name': 'WN 112 Ginger'}, {'hex_value': '#B4753E', 'colour_name': 'WN 114 Golden'}, {'hex_value': '#AD7044', 'colour_name': 'CN 116 Spice'}, {'hex_value': '#995C27', 'colour_name': 'WN 118 Amber'}, {'hex_value': '#A4653F', 'colour_name': 'WN 120 Pecan'}, {'hex_value': '#8E5230', 'colour_name': 'WN 122 Clove'}, {'hex_value': '#834E2E', 'colour_name': 'WN 124 Sienna'}, {'hex_value': '#623B2C', 'colour_name': 'CN 126 Espresso'}]"
+831,clinique,Beyond Perfecting™ Foundation + Concealer,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_Z9FF_181x209.png,https://www.clinique.com/product/1599/34817/makeup/foundations/beyond-perfecting-foundation-concealer,https://www.clinique.com,"A foundation-and-concealer in one for a natural, beyond perfected look that lasts all day. Lightweight, moisturizing makeup covers thoroughly without clogging pores. Skin breathes comfortably, colour stays true, even through sweat and humidity.",,,foundation,[],2017-12-23T23:43:05.203Z,2017-12-23T23:43:11.024Z,http://makeup-api.herokuapp.com/api/v1/products/831.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/831/original/data?1514072590,"[{'hex_value': '#FFE6CB', 'colour_name': '0.5 Breeze'}, {'hex_value': '#F3D6BF', 'colour_name': '01 Linen'}, {'hex_value': '#F0C9AE', 'colour_name': '02 Alabaster'}, {'hex_value': '#E6BC9F', 'colour_name': '06 Ivory'}, {'hex_value': '#E9BC98', 'colour_name': '04 Cream Whip'}, {'hex_value': '#F1BF9E', 'colour_name': '05 Fair'}, {'hex_value': '#F0C7AB', 'colour_name': '6.5 Buttermilk '}, {'hex_value': '#E2B186', 'colour_name': '08 Golden Neutral'}, {'hex_value': '#E3A97A', 'colour_name': '7.5 Tea'}, {'hex_value': '#DAA878', 'colour_name': '11 Honey'}, {'hex_value': '#DBAC82', 'colour_name': '5.75 Cork'}, {'hex_value': '#E6AD7F', 'colour_name': '5.5 Ecru'}, {'hex_value': '#E3B28F', 'colour_name': '6.75 Sesame'}, {'hex_value': '#D6A683', 'colour_name': '14 Vanilla'}, {'hex_value': '#d28f6b', 'colour_name': '15 Beige'}, {'hex_value': '#DCA27B', 'colour_name': '8.25 Oat'}, {'hex_value': '#DEB193', 'colour_name': '07 Cream Chamois'}, {'hex_value': '#DCAB86', 'colour_name': '09 Neutral'}, {'hex_value': '#D9A373', 'colour_name': '10 Honey Wheat'}, {'hex_value': '#CE9465', 'colour_name': '17 Nutty'}, {'hex_value': '#C2895D', 'colour_name': '16 Toasted Wheat'}, {'hex_value': '#C99B71', 'colour_name': '18 Sand'}, {'hex_value': '#C8874E', 'colour_name': '21 Cream Caramel'}, {'hex_value': '#BE773D', 'colour_name': '23 Ginger'}, {'hex_value': '#B4753E', 'colour_name': '24 Golden'}, {'hex_value': '#995C27', 'colour_name': '26 Amber'}, {'hex_value': '#8E5230', 'colour_name': '28 Clove'}]"
+830,clinique,CliniqueFIT™ Workout Makeup Broad Spectrum SPF 40,29.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K4NG01_181x209.png,https://www.clinique.com/product/1599/50973/makeup/foundations/cliniquefittm-workout-makeup-broad-spectrum-spf-40,https://www.clinique.com,"Lightweight, sweat- and humidity-proof foundation that keeps up with your highly active life. Medium coverage, natural-matte finish wears for 12 long-lasting hours. Protects with SPF 40. Won’t clog pores or cause breakouts. Oil-free.",,,foundation,[],2017-12-23T23:43:04.821Z,2017-12-23T23:43:10.591Z,http://makeup-api.herokuapp.com/api/v1/products/830.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/830/original/data?1514072590,"[{'hex_value': '#e3b59a', 'colour_name': '01 Light'}, {'hex_value': '#ddad92', 'colour_name': '03 Light Medium'}, {'hex_value': '#d07e4a', 'colour_name': '05 Medium'}, {'hex_value': '#b86530', 'colour_name': '07 Deep'}]"
+829,clinique,Almost Powder Makeup,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6MPY02_181x209.png,https://www.clinique.com/product/1599/47832/makeup/foundations/almost-powder-makeup,https://www.clinique.com,"More than minerals. Skin looks, acts happier. Long-wear formula helps keep pores out of trouble. Antioxidants protect skin. This natural, perfecting ""no-makeup"" makeup is so lightweight, you'll never even feel it. So foolproof, you can apply it with a sponge, a brush-and almost with your eyes closed.",,,foundation,[],2017-12-23T23:43:04.222Z,2017-12-23T23:43:10.090Z,http://makeup-api.herokuapp.com/api/v1/products/829.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/829/original/open-uri20171223-4-1gzylfl?1514072590,"[{'hex_value': '#EACAB1', 'colour_name': '01 Fair'}, {'hex_value': '#E6D1BB', 'colour_name': '02 Neutral Fair'}, {'hex_value': '#DCB286', 'colour_name': '03 Light'}, {'hex_value': '#DBB190', 'colour_name': '04 Neutral'}, {'hex_value': '#D5A179', 'colour_name': '05 Medium'}, {'hex_value': '#D7AA8E', 'colour_name': '06 Deep'}]"
+828,clinique,Clinique BIY™ Blend It Yourself Pigment Drops,33.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZWXK0A_181x209.png,https://www.clinique.com/product/1599/45511/makeup/foundations/clinique-biy-blend-it-yourself-pigment-drops,https://www.clinique.com,"Transform your favorite moisturizer into a BB, CC or fuller-coverage foundation. One drop of Clinique BIY™ Blend It Yourself Pigment Drops creates sheer cover. Two or three, a flawless finish. Since Clinique BIY takes on the finish of the moisturizer you blend it with, expect a more matte finish with a mattifying moisturizer. Or a more dewy, radiant finish when blended with a moisturizer that contains optics.",,,foundation,[],2017-12-23T23:43:03.609Z,2017-12-23T23:43:09.608Z,http://makeup-api.herokuapp.com/api/v1/products/828.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/828/original/data?1514072589,"[{'hex_value': '#F7E1CD', 'colour_name': 'BIY 105'}, {'hex_value': '#F4D0B6', 'colour_name': 'BIY 110'}, {'hex_value': '#EDD2BD', 'colour_name': 'BIY 115'}, {'hex_value': '#E6C4AB', 'colour_name': 'BIY 120'}, {'hex_value': '#DCAE8A', 'colour_name': 'BIY 125'}, {'hex_value': '#D6AB8F', 'colour_name': 'BIY 130'}, {'hex_value': '#DFB28E', 'colour_name': 'BIY 135'}, {'hex_value': '#C89575', 'colour_name': 'BIY 140'}, {'hex_value': '#D0AC8C', 'colour_name': 'BIY 145'}, {'hex_value': '#CD924F', 'colour_name': 'BIY 150'}, {'hex_value': '#B2773D', 'colour_name': 'BIY 155'}, {'hex_value': '#9D6327', 'colour_name': 'BIY 160'}, {'hex_value': '#C28165', 'colour_name': 'BIY Bronze'}]"
+827,clinique,Even Better Glow™ Light Reflecting Makeup Broad Spectrum SPF 15,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZY5X_181x209.png,https://www.clinique.com/product/1599/51043/makeup/foundations/even-better-glow-light-reflecting-makeup-broad-spectrum-spf-15,https://www.clinique.com,"Moisturizing foundation instantly creates a natural radiance with subtle luminizing pigments. Wear it every day and over time bare skin glows on its own, thanks to vitamin C. Broad spectrum SPF 15 helps prevent future dark spots. Long-wearing, oil-free.",,,foundation,[],2017-12-23T23:43:02.251Z,2017-12-23T23:43:08.264Z,http://makeup-api.herokuapp.com/api/v1/products/827.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/827/original/data?1514072588,"[{'hex_value': '#F0C5A8', 'colour_name': 'CN 02 Breeze'}, {'hex_value': '#F9C096', 'colour_name': 'WN 04 Bone'}, {'hex_value': '#DAA781', 'colour_name': 'CN 10 Alabaster'}, {'hex_value': '#E8AE76', 'colour_name': 'WN 12 Meringue'}, {'hex_value': '#E5AF84', 'colour_name': 'CN 20 Fair'}, {'hex_value': '#EDAB76', 'colour_name': 'WN 22 Ecru'}, {'hex_value': '#EFC09C', 'colour_name': 'CN 28 Ivory'}, {'hex_value': '#D19567', 'colour_name': 'WN 30 Biscuit'}, {'hex_value': '#E2B284', 'colour_name': 'WN 38 Stone'}, {'hex_value': '#D7A681', 'colour_name': 'CN 40 Cream Chamois'}, {'hex_value': '#E1A980', 'colour_name': 'WN 44 Tea'}, {'hex_value': '#D49863', 'colour_name': 'WN 48 Oat'}, {'hex_value': '#E7AF89', 'colour_name': 'CN 52 Neutral'}, {'hex_value': '#D69565', 'colour_name': 'WN 54 Honey Wheat'}, {'hex_value': '#D99F6E', 'colour_name': 'CN 58 Honey'}, {'hex_value': '#D1966D', 'colour_name': 'CN 62 Porcelain Beige'}, {'hex_value': '#CB8E57', 'colour_name': 'WN 68 Brulee'}, {'hex_value': '#D9A783', 'colour_name': 'CN 70 Vanilla'}, {'hex_value': '#C3885F', 'colour_name': 'CN 74 Beige'}, {'hex_value': '#D49D6D', 'colour_name': 'WN 76 Toasted Wheat'}, {'hex_value': '#CC986E', 'colour_name': 'CN 90 Sand'}, {'hex_value': '#CB8A5A', 'colour_name': 'WN 92 Toasted Almond'}, {'hex_value': '#BD7749', 'colour_name': 'WN 94 Deep Neutral'}, {'hex_value': '#C78A4C', 'colour_name': 'WN 98 Cream Caramel'}, {'hex_value': '#BF7426', 'colour_name': 'WN 112 Ginger'}, {'hex_value': '#AF7442', 'colour_name': 'WN 114 Golden'}, {'hex_value': '#B26B35', 'colour_name': 'WN 118 Amber'}, {'hex_value': '#935732', 'colour_name': 'WN 122 Clove'}, {'hex_value': '#985825', 'colour_name': 'WN 124 Sienna '}, {'hex_value': '#7C431D', 'colour_name': 'CN 126 Espresso'}]"
+826,clinique,Acne Solutions™ Clearing Concealer,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6N4T_181x209.png,https://www.clinique.com/product/1596/6045/makeup/concealers/acne-solutions-clearing-concealer,https://www.clinique.com,"Medicated concealer helps clear and prevent blemishes. Gentle, soothing formula provides natural-looking coverage as blemishes heal. In three skin tone shades to wear alone, under makeup or for touch-ups. Plus, a green tint to visually correct redness. Oil free.",,concealer,foundation,[],2017-12-23T23:43:01.437Z,2017-12-23T23:43:07.382Z,http://makeup-api.herokuapp.com/api/v1/products/826.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/826/original/data?1514072587,"[{'hex_value': '#EFD1B3', 'colour_name': 'Shade 01'}, {'hex_value': '#D5AA86', 'colour_name': 'Shade 03'}, {'hex_value': '#F0C9A0', 'colour_name': 'Shade 02'}]"
+825,clinique,Line Smoothing Concealer,20.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_65EF_181x209.png,https://www.clinique.com/product/1596/6088/makeup/concealers/line-smoothing-concealer,https://www.clinique.com,"Oil-free formula actually ""bridges"" fine lines and wrinkles, smoothing and minimizing them for an instantly firmer look. Skin-brightening ingredients help counteract shadows, reduce redness, give skin more even tone. Ophthalmologist tested. Long-lasting, buildable.",,concealer,foundation,[],2017-12-23T23:43:00.823Z,2017-12-23T23:43:05.599Z,http://makeup-api.herokuapp.com/api/v1/products/825.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/825/original/data?1514072585,"[{'hex_value': '#D19C83', 'colour_name': 'Light'}, {'hex_value': '#C49381', 'colour_name': 'Moderately Fair'}, {'hex_value': '#AD7D68', 'colour_name': 'Medium'}, {'hex_value': '#BB9171', 'colour_name': 'Medium Beige'}, {'hex_value': '#C9916C', 'colour_name': 'Medium Honey'}, {'hex_value': '#916148', 'colour_name': 'Deep'}]"
+824,clinique,All About Eyes™ Concealer,20.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6FKW_181x209.png,https://www.clinique.com/product/1596/5161/makeup/concealers/all-about-eyes-concealer,https://www.clinique.com,,,concealer,foundation,[],2017-12-23T23:43:00.157Z,2017-12-23T23:43:04.907Z,http://makeup-api.herokuapp.com/api/v1/products/824.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/824/original/data?1514072584,"[{'hex_value': '#F1CFB2', 'colour_name': 'Light Neutral'}, {'hex_value': '#E7BFA1', 'colour_name': 'Light Petal'}, {'hex_value': '#E2B18C', 'colour_name': 'Medium Petal'}, {'hex_value': '#DAA16D', 'colour_name': 'Medium Beige'}, {'hex_value': '#D49167', 'colour_name': 'Medium Honey'}, {'hex_value': '#A77A55', 'colour_name': 'Deep Golden'}]"
+823,clinique,Advanced Concealer,20.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6296_181x209.png,https://www.clinique.com/product/1596/6278/makeup/concealers/advanced-concealer,https://www.clinique.com,"Cream-to-powder concealer delivers long-lasting, intensive camouflage. With daily use, helps firm and smooth. Won't creep or fade. Ophthalmologist tested.",,concealer,foundation,[],2017-12-23T23:42:59.720Z,2017-12-23T23:43:04.510Z,http://makeup-api.herokuapp.com/api/v1/products/823.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/823/original/data?1514072584,"[{'hex_value': '#CC9D82', 'colour_name': 'Matte Light'}]"
+822,clinique,Airbrush Concealer™,22.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6CM2_181x209.png,https://www.clinique.com/product/1596/5011/makeup/concealers/airbrush-concealer,https://www.clinique.com,"Instantly helps soften the look of fine lines and wrinkles. Light-diffusing optics brighten shadows. Creamy, light formula flows through for smooth brush-on, precision application. Ophthalmologist tested.",,concealer,foundation,[],2017-12-23T23:42:59.147Z,2017-12-23T23:43:03.833Z,http://makeup-api.herokuapp.com/api/v1/products/822.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/822/original/data?1514072583,"[{'hex_value': '#FFBEB0', 'colour_name': 'Fair'}, {'hex_value': '#F7B9AC', 'colour_name': 'NEW Illuminator'}, {'hex_value': '#F7CDA1', 'colour_name': 'NEW Fair Cream'}, {'hex_value': '#E8BE92', 'colour_name': 'NEW Neutral Cream'}, {'hex_value': '#E7B295', 'colour_name': 'NEW Light Honey'}, {'hex_value': '#DCAC8A', 'colour_name': 'Neutral Fair'}, {'hex_value': '#DCB08C', 'colour_name': 'NEW Medium Deep'}, {'hex_value': '#D1997B', 'colour_name': 'NEW Medium Caramel'}, {'hex_value': '#B17439', 'colour_name': 'NEW Golden Honey'}, {'hex_value': '#BC6A21', 'colour_name': 'NEW Deep Caramel'}, {'hex_value': '#AE631B', 'colour_name': 'NEW Deeper Caramel'}, {'hex_value': '#F99673', 'colour_name': 'Medium'}]"
+821,clinique,Continuous Coverage Makeup Broad Spectrum SPF 15,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_647G_181x209.png,https://www.clinique.com/product/1599/5642/makeup/foundations/continuous-coverage-makeup-broad-spectrum-spf-15,https://www.clinique.com,,,,foundation,[],2017-12-23T23:42:58.476Z,2017-12-23T23:43:20.842Z,http://makeup-api.herokuapp.com/api/v1/products/821.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/821/original/data?1514072600,"[{'hex_value': '#DAAD88', 'colour_name': 'Creamy Glow'}, {'hex_value': '#D9A584', 'colour_name': 'Porcelain Glow'}, {'hex_value': '#CE9D78', 'colour_name': 'Natural Honey Glow'}, {'hex_value': '#E4B69D', 'colour_name': 'Ivory Glow'}]"
+820,clinique,Beyond Perfecting™ Super Concealer Camouflage + 24-Hour Wear,19.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K2HW01_181x209.png,https://www.clinique.com/product/1596/50424/makeup/concealers/beyond-perfecting-super-concealer-camouflage-24-hour-wear,https://www.clinique.com,"Cover up without touching up for 24 life-proof hours. Instantly and easily blends into skin to flawlessly conceal imperfections. Transfer-resistant formula stays put—even through sweat and humidity. Provides immediate hydration to keep eye-area skin feeling comfortable, looking fresh and natural. 18 shades in total—including a must-have apricot-colored corrector shade to help tackle dark circles and discolorations.",,concealer,foundation,[],2017-12-23T23:42:57.925Z,2017-12-23T23:43:02.839Z,http://makeup-api.herokuapp.com/api/v1/products/820.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/820/original/data?1514072582,"[{'hex_value': '#E8B99A', 'colour_name': 'Very Fair 02'}, {'hex_value': '#E9B894', 'colour_name': 'Very Fair 04'}, {'hex_value': '#E4AD85', 'colour_name': 'Very Fair 05'}, {'hex_value': '#E3AB7F', 'colour_name': 'Very Fair 06'}, {'hex_value': '#DFAC8B', 'colour_name': 'Very Fair 07'}, {'hex_value': '#E4AD87', 'colour_name': 'Very Fair 08'}, {'hex_value': '#DCA68A', 'colour_name': 'Moderately Fair 10'}, {'hex_value': '#CF916B', 'colour_name': 'Moderately Fair 12'}, {'hex_value': '#D59972', 'colour_name': 'Moderately Fair 14'}, {'hex_value': '#D3936C', 'colour_name': 'Medium 16'}, {'hex_value': '#CD9571', 'colour_name': 'Medium 18'}, {'hex_value': '#C58F64', 'colour_name': 'Medium 20'}, {'hex_value': '#BF8562', 'colour_name': 'Medium 22'}, {'hex_value': '#CB8964', 'colour_name': 'Medium 15'}, {'hex_value': '#BA7F53', 'colour_name': 'Deep 24'}, {'hex_value': '#E5855E', 'colour_name': 'Apricot Corrector'}, {'hex_value': '#996454', 'colour_name': 'Deep 26'}, {'hex_value': '#8b594c', 'colour_name': 'Deep 28'}]"
+819,clinique,Moisture Surge™ CC Cream Hydrating Colour Corrector Broad Spectrum SPF 30,39.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7WCP_181x209.png,https://www.clinique.com/product/11480/25255/makeup/foundations/bb-and-cc-cream/moisture-surge-cc-cream-hydrating-colour-corrector-broad-spectrum-spf-30,https://www.clinique.com,"One simple step for glowing skin. Lightweight formula instantly colour corrects a range of complexion concerns - redness, dullness, sallowness - so all you see is a healthy-looking glow. Oil-free hydration and sunscreen mean a more flawless look tomorrow, too. Each versatile shade is appropriate for a range of skin tones and undertones.",,bb_cc,foundation,[],2017-12-23T23:42:57.309Z,2017-12-23T23:43:02.228Z,http://makeup-api.herokuapp.com/api/v1/products/819.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/819/original/data?1514072582,"[{'hex_value': '#EAB087', 'colour_name': 'Very Light'}, {'hex_value': '#E6A272', 'colour_name': 'Light'}, {'hex_value': '#E2935C', 'colour_name': 'Light Medium'}, {'hex_value': '#D38A56', 'colour_name': 'Medium Deep'}, {'hex_value': '#8E5128', 'colour_name': 'Deep'}, {'hex_value': '#DC8E59', 'colour_name': 'Medium'}]"
+818,clinique,Acne Solutions BB Cream Broad Spectrum SPF 40,39.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_Z54E_181x209.png,https://www.clinique.com/product/1599/35075/makeup/foundations/acne-solutions-bb-cream-broad-spectrum-spf-40,https://www.clinique.com,"A mattifying BB Cream specifically developed for blemish-prone or oily skins. Combines oil control, buildable coverage and UVA/UVB protection for a protected, shine-free complexion. Lightweight, shake-well formula delivers a freshly-mixed application every time. Wears beautifully for 12-hours. Oil-free.",,,foundation,[],2017-12-23T23:42:56.921Z,2017-12-23T23:43:09.229Z,http://makeup-api.herokuapp.com/api/v1/products/818.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/818/original/data?1514072589,"[{'hex_value': '#e3b59a', 'colour_name': 'Light'}, {'hex_value': '#ddad92', 'colour_name': 'Light Medium'}, {'hex_value': '#d07e4a', 'colour_name': 'Medium'}, {'hex_value': '#c57542', 'colour_name': 'Medium Deep'}, {'hex_value': '#b86530', 'colour_name': 'Deep'}]"
+817,clinique,Age Defense BB Cream Broad Spectrum SPF 30,38.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7KYL01_181x209.png,https://www.clinique.com/product/11480/19517/makeup/foundations/bb-and-cc-cream/age-defense-bb-creambroad-spectrum-spf-30,https://www.clinique.com,This instant morning routine gives skin just about everything it needs for a quick start.,,bb_cc,foundation,[],2017-12-23T23:42:56.363Z,2017-12-23T23:43:01.037Z,http://makeup-api.herokuapp.com/api/v1/products/817.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/817/original/data?1514072580,"[{'hex_value': '#EABDAD', 'colour_name': 'Shade 01'}, {'hex_value': '#CFA187', 'colour_name': 'Shade 02'}, {'hex_value': '#C99B80', 'colour_name': 'Shade 03'}, {'hex_value': '#8E5128', 'colour_name': 'Shade 04'}]"
+816,clinique,Super City Block™ BB Cushion Compact Broad Spectrum SPF 50 Refill,25.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZLE601_181x209.png,https://www.clinique.com/product/1599/41917/makeup/foundations/super-city-blocktm-bb-cushion-compact-broad-spectrum-spf-50-refill,https://www.clinique.com,"Everything skin needs to face city life—flawlessly. Buildable, breathable fluid makeup feels cool and weightless on skin, yet delivers a lasting natural-matte finish. High-level SPF and antioxidants help protect against skin-damaging UV, impurities and environmental aggressors. All in a ready-to-go compact with puff applicator.",,,foundation,[],2017-12-23T23:42:55.887Z,2017-12-23T23:43:18.606Z,http://makeup-api.herokuapp.com/api/v1/products/816.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/816/original/data?1514072598,"[{'hex_value': '#AA754E', 'colour_name': 'Deep'}, {'hex_value': '#E5B091', 'colour_name': 'Medium'}, {'hex_value': '#F4C3A7', 'colour_name': 'Moderately Fair'}]"
+815,clinique,Wear Everywhere Neutrals All About Shadow™ 8-Pan Palette,37.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZCAE02_181x209.png,https://www.clinique.com/product/1598/33862/makeup/eye-shadows/wear-everywhere-neutrals-all-about-shadow-8-pan-palette,https://www.clinique.com,"Versatile eye shadow palettes are perfect for day… amped up for night when you layer multiple shades for extra depth and dimension. Long-wearing shades are crease- and fade-resistant. Ophthalmologist tested, too.",,palette,eyeshadow,[],2017-12-23T23:35:16.485Z,2017-12-26T00:33:00.434Z,http://makeup-api.herokuapp.com/api/v1/products/815.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/815/original/data?1514072324,"[{'hex_value': '#F7E2D1,#673E2C,#DBAA95,#CDB298', 'colour_name': 'Nudes'}, {'hex_value': '#FDE7F2,#65415E,#C0B5BB,#E6BFD6', 'colour_name': 'Pinks'}, {'hex_value': '#D4DAD4,#92A799,#7D7253,#5B664F', 'colour_name': 'Greens'}, {'hex_value': '#D9CED6,#C1C5CB,#8A788A,#4E4951', 'colour_name': 'Greys'}, {'hex_value': '#DDDFE4,#4C5060,#4B4A6A,#94838C', 'colour_name': 'Blues'}]"
+814,clinique,Pretty Easy™ Eye Palette,22.25,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZJPL01_181x209.png,https://www.clinique.com/product/1598/38686/makeup/eye-shadows/pretty-easytm-eye-palette,https://www.clinique.com,"Clinique's Pretty Easy Eye Palette comes with eight shades of long-wearing All About Shadow in a variety of finishes. For instant lashline definition, there's Skinny Stick, our no-sharpener-required eye liner in two must-have shades. Create your own custom eye looks or follow the illustrated how-tos.",,palette,eyeshadow,[],2017-12-23T23:35:16.300Z,2017-12-26T00:33:00.462Z,http://makeup-api.herokuapp.com/api/v1/products/814.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/814/original/data?1514072323,"[{'hex_value': '#EACFB4', 'colour_name': 'color 1'}, {'hex_value': '#D7BAA1', 'colour_name': 'color 2'}, {'hex_value': '#8F6A57', 'colour_name': 'color 3'}, {'hex_value': '#5C443A', 'colour_name': 'color 4'}, {'hex_value': '#CCC3B6', 'colour_name': 'color 5'}, {'hex_value': '#473F3E', 'colour_name': 'color 6'}, {'hex_value': '#F0DFCC', 'colour_name': 'color 7'}, {'hex_value': '#CCBAAA', 'colour_name': 'color 8'}]"
+813,clinique,All About Shadow™ Primer for Eyes,21.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7W5C_181x209.png,https://www.clinique.com/product/1598/27035/makeup/eye-shadows/all-about-shadow-primer-for-eyes,https://www.clinique.com,Skin-toned colour primer preps lids for improved shadow application and wear. Creates a neutral base that holds All About Shadow eye colour in place for up to 12 hours. Can be worn alone for a natural yet perfected look. Appropriate for sensitive eyes and contact lens wearers. Ophthalmologist tested.,,,eyeshadow,[],2017-12-23T23:35:16.052Z,2017-12-23T23:38:43.601Z,http://makeup-api.herokuapp.com/api/v1/products/813.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/813/original/data?1514072323,"[{'hex_value': '#decdaf', 'colour_name': 'Very Fair'}, {'hex_value': '#bc9b72', 'colour_name': 'Moderately Fair'}, {'hex_value': '#7c4e10', 'colour_name': 'Deep'}]"
+812,clinique,Lid Smoothie™ Antioxidant 8-Hour Eye Colour,21.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_791P01_181x209.png,https://www.clinique.com/product/1598/18485/makeup/eye-shadows/lid-smoothie-antioxidant-8-hour-eye-colour,https://www.clinique.com,"Creamy, crease-resistant eye colour wears for 8 hours. Instantly cools thanks to a unique applicator. Nourishing ingredients coax fine lid lines into a blanket of smoothness. Antioxidants help protect eye-area skin.",,,eyeshadow,[],2017-12-23T23:35:15.755Z,2017-12-23T23:38:43.316Z,http://makeup-api.herokuapp.com/api/v1/products/812.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/812/original/data?1514072323,"[{'hex_value': '#e9bc97', 'colour_name': ""Bit O'Honey""}, {'hex_value': '#cbb1a6', 'colour_name': 'Cashew Later'}, {'hex_value': '#8F8979', 'colour_name': 'Cute-cumber'}, {'hex_value': '#A5726F', 'colour_name': 'Pinkgo Biloba'}, {'hex_value': '#7F5B4F', 'colour_name': 'Seventh Heather'}]"
+811,clinique,Touch Base For Eyes™,17.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6339_181x209.png,https://www.clinique.com/product/1598/5169/makeup/eye-shadows/touch-base-for-eyes,https://www.clinique.com,"No smearing, no fading, no creasing. Stays on until washed off. Versatile, creamy formula can be worn alone or layered under other eye shadows to give them more staying power. Acts as a holding base for powder shadow, helps it last longer. Ophthalmologist tested.",,,eyeshadow,[],2017-12-23T23:35:15.541Z,2017-12-23T23:38:43.035Z,http://makeup-api.herokuapp.com/api/v1/products/811.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/811/original/data?1514072322,"[{'hex_value': '#efd4b9', 'colour_name': 'Canvas Light'}, {'hex_value': '#E9BFB5', 'colour_name': 'Petal Shimmer'}, {'hex_value': '#C8967D', 'colour_name': 'Buff Lighting'}, {'hex_value': '#c98c7f', 'colour_name': 'Nude Rose'}, {'hex_value': '#b69888', 'colour_name': 'Canvas'}]"
+810,clinique,Lid Pop™,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZKJT02_181x209.png,https://www.clinique.com/product/1598/39911/makeup/eye-shadows/lid-poptm,https://www.clinique.com,"Silky, long-wearing eye shadow delivers an instant pop of colour for a virtually powderless look. Builds and blends easily to a customizable level of intensity. Appropriate for contact lens wearers and sensitive eyes.",,,eyeshadow,[],2017-12-23T23:35:15.246Z,2017-12-23T23:38:42.733Z,http://makeup-api.herokuapp.com/api/v1/products/810.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/810/original/open-uri20171223-4-pewgcj?1514072322,"[{'hex_value': '#855371', 'colour_name': 'Grape Pop'}, {'hex_value': '#e3a595', 'colour_name': 'Cream Pop'}, {'hex_value': '#f5939a', 'colour_name': 'Petal Pop'}, {'hex_value': '#fed1b9', 'colour_name': 'Vanilla Pop'}, {'hex_value': '#20367e', 'colour_name': 'Surf Pop'}, {'hex_value': '#008b97', 'colour_name': 'Aqua Pop'}, {'hex_value': '#836a42', 'colour_name': 'Willow Pop'}, {'hex_value': '#68463e', 'colour_name': 'Cocoa Pop'}]"
+809,clinique,All About Shadow™ Single,16.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7PWG_181x209.png,https://www.clinique.com/product/1598/27031/makeup/eye-shadows/all-about-shadow-single,https://www.clinique.com,"Creamy colour glides on in one smooth stroke. Longwearing. Crease- and fade-resistant, too. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact comes with a sponge-tip applicator.",,,eyeshadow,[],2017-12-23T23:35:14.522Z,2017-12-23T23:38:42.444Z,http://makeup-api.herokuapp.com/api/v1/products/809.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/809/original/data?1514072322,"[{'hex_value': '#f8f5f3', 'colour_name': 'Sugar Cane'}, {'hex_value': '#f2c5da', 'colour_name': 'Angel Eyes '}, {'hex_value': '#e2ac83', 'colour_name': 'Daybreak'}, {'hex_value': '#ae6950', 'colour_name': 'Sunset Glow'}, {'hex_value': '#a0746c', 'colour_name': 'Nude Rose'}, {'hex_value': '#5b4540', 'colour_name': 'Portobello'}, {'hex_value': '#af849e', 'colour_name': 'Lavender Out Loud'}, {'hex_value': '#d699bb', 'colour_name': 'Bubble Bath'}, {'hex_value': '#d27948', 'colour_name': 'At Dusk'}, {'hex_value': '#edd5c5', 'colour_name': 'French Vanilla'}, {'hex_value': '#9d9744', 'colour_name': 'Lemongrass'}, {'hex_value': '#919697', 'colour_name': 'Silver Lining'}, {'hex_value': '#5c745f', 'colour_name': 'Pacific Coast'}, {'hex_value': '#85748a', 'colour_name': 'Rock Violet'}, {'hex_value': '#834589', 'colour_name': 'Purple Pumps'}, {'hex_value': '#839bc0', 'colour_name': 'Lagoon'}, {'hex_value': '#212f68', 'colour_name': 'Deep Dive'}, {'hex_value': '#34391c', 'colour_name': 'Black Jade'}, {'hex_value': '#886a5a', 'colour_name': 'Foxier'}, {'hex_value': '#443022', 'colour_name': 'French Roast'}, {'hex_value': '#541c2f', 'colour_name': 'Chocolate Covered Cherry'}, {'hex_value': '#6c352f', 'colour_name': 'Black Honey'}, {'hex_value': '#4c434d', 'colour_name': 'Graphite'}, {'hex_value': '#362307', 'colour_name': 'Olive in My Martini'}, {'hex_value': '#241607', 'colour_name': 'Stroke of Midnight'}]"
+808,clinique,Chubby Stick™ Shadow Tint For Eyes,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7NYF01_181x209.png,https://www.clinique.com/product/1598/22855/makeup/eye-shadows/chubby-stick-shadow-tint-for-eyes,https://www.clinique.com,"Sheer wash of lightweight, creamy colour slips on. Layerable and long-wearing. Versatile, too.",,pencil,eyeshadow,[],2017-12-23T23:35:13.780Z,2017-12-26T01:07:49.416Z,http://makeup-api.herokuapp.com/api/v1/products/808.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/808/original/data?1514072321,"[{'hex_value': '#fff9bd', 'colour_name': 'Grandest Gold'}, {'hex_value': '#f0c6b0', 'colour_name': 'Bountiful Beige'}, {'hex_value': '#714a3a', 'colour_name': 'Fuller Fudge'}, {'hex_value': '#c89274', 'colour_name': 'Ample Amber'}, {'hex_value': '#efa9ad', 'colour_name': 'Pink & Plenty'}, {'hex_value': '#776933', 'colour_name': 'Whopping Willow'}, {'hex_value': '#6b785c', 'colour_name': 'Mighty Moss'}, {'hex_value': '#e47c6e', 'colour_name': 'Biggest Blossom'}, {'hex_value': '#a18baa', 'colour_name': 'Lavish Lilac'}, {'hex_value': '#a78b97', 'colour_name': 'Oversized Orchid'}, {'hex_value': '#4399bc', 'colour_name': 'Big Blue'}, {'hex_value': '#8c6f62', 'colour_name': ""Lots o' Latte""}, {'hex_value': '#558c7f', 'colour_name': 'Two Ton Teal'}, {'hex_value': '#4d434c', 'colour_name': 'Curvaceous Coal'}, {'hex_value': '#765074', 'colour_name': 'Portly Plum'}, {'hex_value': '#2f4168', 'colour_name': 'Massive Midnight'}]"
+807,clinique,All About Shadow™ Quad,28.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7PWL06_181x209.png,https://www.clinique.com/product/1598/27033/makeup/eye-shadows/all-about-shadow-quad,https://www.clinique.com,Wear shades alone or layered together in different combinations. Crease- and fade-resistant. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact with illustrated how-tos plus two sponge-tip applicators.,,,eyeshadow,[],2017-12-23T23:35:13.329Z,2017-12-23T23:38:41.793Z,http://makeup-api.herokuapp.com/api/v1/products/807.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/807/original/data?1514072321,"[{'hex_value': '#c5dde8,#3a4e66,#638988,#2b2f28', 'colour_name': 'Dive In'}, {'hex_value': '#e4e7eb,#0d3d5c,#538b8c,#203250', 'colour_name': 'Galaxy'}, {'hex_value': '#fde6ee,#643d67,#c3a3ba,#473e4d', 'colour_name': 'Going Steady'}, {'hex_value': '#fbf8f0,#5b4b3f,#cfb6a6,#383838', 'colour_name': ""Jenna's Essentials""}, {'hex_value': '#f3d4ca,#784a4a,#aa753d,#553240', 'colour_name': 'Morning Java'}, {'hex_value': '#f7f2cd,#6b765c,#978a4e,#4a4b38', 'colour_name': 'On Safari'}, {'hex_value': '#f2d7d7,#8d5649,#c28c90,#634a42', 'colour_name': 'Pink Chocolate'}, {'hex_value': '#d0d0d3,#5d5d65,#2d2d2e,#111111', 'colour_name': 'Smoke and Mirrors'}, {'hex_value': '#fee6d3,#996a57,#ae7e65,#6b3f22', 'colour_name': 'Teddy Bear'}, {'hex_value': '#e4e7eb', 'colour_name': 'Galaxy1'}, {'hex_value': '#0d3d5c', 'colour_name': 'Galaxy2'}, {'hex_value': '#538b8c', 'colour_name': 'Galaxy3'}, {'hex_value': '#203250', 'colour_name': 'Galaxy4'}, {'hex_value': '#c5dde8', 'colour_name': 'Dive In 1'}, {'hex_value': '#3a4e66', 'colour_name': 'Dive In 2'}, {'hex_value': '#638988', 'colour_name': 'Dive In 3'}, {'hex_value': '#2b2f28', 'colour_name': 'Dive In 4'}, {'hex_value': '#f2d7d7', 'colour_name': 'Pink Chocolate 1'}, {'hex_value': '#8d5649', 'colour_name': 'Pink Chocolate 2'}, {'hex_value': '#c28c90', 'colour_name': 'Pink Chocolate 3'}, {'hex_value': '#634a42', 'colour_name': 'Pink Chocolate 4'}, {'hex_value': '#d0d0d3', 'colour_name': 'Smoke and Mirrors 1'}, {'hex_value': '#5d5d65', 'colour_name': 'Smoke and Mirrors 2'}, {'hex_value': '#2d2d2e', 'colour_name': 'Smoke and Mirrors 3'}, {'hex_value': '#111111', 'colour_name': 'Smoke and Mirrors 4'}, {'hex_value': '#f3d4ca', 'colour_name': 'Morning Java 1'}, {'hex_value': '#784a4a', 'colour_name': 'Morning Java 1'}, {'hex_value': '#f3d4ca', 'colour_name': 'Morning Java 1'}, {'hex_value': '#784a4a', 'colour_name': 'Morning Java 2'}, {'hex_value': '#aa753d', 'colour_name': 'Morning Java 3'}, {'hex_value': '#553240', 'colour_name': 'Morning Java 4'}, {'hex_value': '#f7f2cd', 'colour_name': 'On Safari 1'}, {'hex_value': '#6b765c', 'colour_name': 'On Safari 2'}, {'hex_value': '#978a4e', 'colour_name': 'On Safari 3'}, {'hex_value': '#4a4b38', 'colour_name': 'On Safari 4'}, {'hex_value': '#fde6ee', 'colour_name': 'Going Steady 1'}, {'hex_value': '#643d67', 'colour_name': 'Going Steady 2'}, {'hex_value': '#c3a3ba', 'colour_name': 'Going Steady 3'}, {'hex_value': '#473e4d', 'colour_name': 'Going Steady 4'}, {'hex_value': '#fee6d3', 'colour_name': 'Teddy Bear 1'}, {'hex_value': '#996a57', 'colour_name': 'Teddy Bear 2'}, {'hex_value': '#ae7e65', 'colour_name': 'Teddy Bear 3'}, {'hex_value': '#6b3f22', 'colour_name': 'Teddy Bear 4'}, {'hex_value': '#fbf8f0', 'colour_name': ""Jenna's Essentials 1""}, {'hex_value': '#5b4b3f', 'colour_name': ""Jenna's Essentials 2""}, {'hex_value': '#cfb6a6', 'colour_name': ""Jenna's Essentials 3""}, {'hex_value': '#383838', 'colour_name': ""Jenna's Essentials 4""}]"
+806,clinique,All About Shadow™ Duo,22.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7PWK_181x209.png,https://www.clinique.com/product/1598/27032/makeup/eye-shadows/all-about-shadow-duo,https://www.clinique.com,"Use one shade as a base colour, the other to contour. Crease- and fade-resistant. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact with illustrated how-tos plus a brush/sponge-tip applicator.",,,eyeshadow,[],2017-12-23T23:35:12.387Z,2017-12-23T23:38:41.393Z,http://makeup-api.herokuapp.com/api/v1/products/806.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/806/original/data?1514072321,"[{'hex_value': '#CFB3BC,#A996A8', 'colour_name': 'Twilight Mauve/Brandied Plum'}, {'hex_value': '#d0b8bb,#5c2b2e', 'colour_name': 'Cocktail Hour'}, {'hex_value': '#a6a2c6,#5f6168', 'colour_name': 'Blackberry Frost'}, {'hex_value': '#fcf1dc,#8f6e43', 'colour_name': 'Buttered Toast'}, {'hex_value': '#cfaf98,#7c3900', 'colour_name': 'Day into Date'}, {'hex_value': '#e9d5ca,#896a58', 'colour_name': 'Ivory Bisque/Bronze Satin'}, {'hex_value': '#f2d5db,#5d245a', 'colour_name': ""Jammin'""}, {'hex_value': '#c09371,#753d29', 'colour_name': 'Like Mink'}, {'hex_value': '#e0c4ab,#5f574f', 'colour_name': 'Neutral Territory'}, {'hex_value': '#fae9de,#a66406', 'colour_name': 'Sand Dunes'}, {'hex_value': '#EAC7B7,#47575D', 'colour_name': 'Nightcap'}, {'hex_value': '#e1d9e0,#b18877', 'colour_name': 'Seashell Pink/Fawn Satin'}, {'hex_value': '#d2b9ac,#977d6f', 'colour_name': 'Starlight Starbright'}, {'hex_value': '#dba8ad,#a17664', 'colour_name': 'Strawberry Fudge'}, {'hex_value': '#f7d4d9,#605561', 'colour_name': 'Uptown Downtown'}, {'hex_value': '#c9d4d1,#718b88', 'colour_name': 'Wave after Wave'}, {'hex_value': '#cfb691,#8a697c', 'colour_name': 'Beach Plum'}, {'hex_value': '#D1B1AB', 'colour_name': 'color 1'}, {'hex_value': '#60575D', 'colour_name': 'color 2'}]"
+805,clinique,Clinique + Jonathan Adler: Lid Pop,14.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K2NX10_181x209.png,https://www.clinique.com/product/1598/49854/makeup/eye-shadows/clinique-jonathan-adler-lid-pop,https://www.clinique.com,"Four shades of silky, long-wearing eye shadow with designer details: an exclusive Jonathan Adler geometric print hot-stamped on the lid and pressed into the powder.",,,eyeshadow,[],2017-12-23T23:35:11.909Z,2017-12-23T23:38:41.000Z,http://makeup-api.herokuapp.com/api/v1/products/805.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/805/original/data?1514072320,"[{'hex_value': '#836A42', 'colour_name': 'Willow Pop'}, {'hex_value': '#008B97', 'colour_name': 'Aqua Pop'}, {'hex_value': '#DFA792', 'colour_name': 'Cream Pop'}, {'hex_value': '#916487', 'colour_name': 'Grape Pop'}]"
+804,clinique,Clinique + Jonathan Adler: Limited Edition Chic Colour Kit,27.3,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K2NY01_181x209.png,https://www.clinique.com/product/1598/49855/makeup/eye-shadows/clinique-jonathan-adler-limited-edition-chic-colour-kit,https://www.clinique.com,A refreshingly modern eye shadow clutch in one of designer Jonathan Adler’s signature geometric prints. Includes 13 most-wanted All About Shadow™ shades to inspire your creativity.,,palette,eyeshadow,[],2017-12-23T23:35:11.756Z,2017-12-26T00:36:27.348Z,http://makeup-api.herokuapp.com/api/v1/products/804.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/804/original/open-uri20171223-4-1ljakeo?1514072320,[]
+803,clinique,Cream Shaper™ For Eyes,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6FP2_181x209.png,https://www.clinique.com/product/1597/6140/makeup/eyeliners/cream-shaper-for-eyes,https://www.clinique.com,"Creamy-smooth eyeliner pencil with a hint of shimmer. Shapes and defines with intense, stay-put colour. Non-smudging, water- and transfer-resistant. Easy to sharpen, too. Ophthalmologist tested.",,,eyeliner,[],2017-12-23T23:35:11.232Z,2017-12-23T23:38:40.373Z,http://makeup-api.herokuapp.com/api/v1/products/803.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/803/original/data?1514072320,"[{'hex_value': '#46372b', 'colour_name': 'Egyptian'}, {'hex_value': '#4e2f2d', 'colour_name': 'Chocolate Lustre'}, {'hex_value': '#151e2c', 'colour_name': 'Black Diamond'}]"
+802,clinique,Quickliner™ For Eyes,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_62A405_181x209.png,https://www.clinique.com/product/1597/4770/makeup/eyeliners/quickliner-for-eyes,https://www.clinique.com,Automatic eyeliner pencil twists up. Glides on. Smudges to a smooth blur of colour with the convenient smudge tool on the opposite end. Needs no sharpening.,,,eyeliner,[],2017-12-23T23:35:10.822Z,2017-12-23T23:38:40.164Z,http://makeup-api.herokuapp.com/api/v1/products/802.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/802/original/data?1514072320,"[{'hex_value': '#574E24', 'colour_name': 'True Khaki'}, {'hex_value': '#614843', 'colour_name': 'Roast Coffee'}, {'hex_value': '#5f4d4d', 'colour_name': 'Smoky Brown'}, {'hex_value': '#535a5e', 'colour_name': 'Slate'}, {'hex_value': '#3f3b3f', 'colour_name': 'New Black'}, {'hex_value': '#36251e', 'colour_name': 'Dark Chocolate'}, {'hex_value': '#3d3142', 'colour_name': 'Violet'}, {'hex_value': '#220d00', 'colour_name': 'Black/Brown'}, {'hex_value': '#59556a', 'colour_name': 'Blue Grey'}, {'hex_value': '#492533', 'colour_name': 'Grape'}, {'hex_value': '#0f0b09', 'colour_name': 'Really Black'}]"
+801,clinique,High Impact™ Custom Black Kajal,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZP4R01_181x209.png,https://www.clinique.com/product/1597/41979/makeup/eyeliners/high-impacttm-custom-black-kajal,https://www.clinique.com,"For kicked-up eye drama, go bold and black. Pigment-packed kajal pencil delivers rich, dark colour with 12 hours of staying power. Skip-proof formula resists smudging, sweat and humidity—even water. Ophthalmologist Tested. Appropriate for sensitive eyes and contact lens wearers, too.",,,eyeliner,[],2017-12-23T23:35:10.579Z,2017-12-23T23:38:39.894Z,http://makeup-api.herokuapp.com/api/v1/products/801.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/801/original/data?1514072319,"[{'hex_value': '#0b0004', 'colour_name': 'Blackened Black'}, {'hex_value': '#202318', 'colour_name': 'Blackened Green'}, {'hex_value': '#401917', 'colour_name': 'Blackened Honey'}]"
+800,clinique,Kohl Shaper For Eyes,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6GAP_181x209.png,https://www.clinique.com/product/1597/6150/makeup/eyeliners/kohl-shaper-for-eyes,https://www.clinique.com,"Rich, satiny eyeliner glides on smoky or defined, bold or superfine. Triangular, ergonomic design provides precision control. Sharpener's built into cap. Never be caught with a dull point again. Ophthalmologist tested.",,,eyeliner,[],2017-12-23T23:35:10.267Z,2017-12-23T23:38:39.651Z,http://makeup-api.herokuapp.com/api/v1/products/800.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/800/original/data?1514072319,"[{'hex_value': '#472b2a', 'colour_name': 'Black Coffee'}, {'hex_value': '#000000', 'colour_name': 'Black Kohl'}]"
+799,clinique,Quickliner™ For Eyes Intense,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_75X3_181x209.png,https://www.clinique.com/product/1597/12313/makeup/eyeliners/quickliner-for-eyes-intense,https://www.clinique.com,"No need to be subtle when it's now so easy to move into the deepest, most dramatic range. Find all the intensity of a liquid liner in one simple stroke. Silky formula glides on. Stays on all day. Never needs sharpening. ""Smoke"" with the smudge tip on the opposite end. Ophthalmologist Tested.",,,eyeliner,[],2017-12-23T23:35:09.771Z,2017-12-23T23:38:39.400Z,http://makeup-api.herokuapp.com/api/v1/products/799.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/799/original/data?1514072319,"[{'hex_value': '#523c39', 'colour_name': 'Intense Clove'}, {'hex_value': '#604c1b', 'colour_name': 'Intense Peridot'}, {'hex_value': '#412727', 'colour_name': 'Intense Chocolate'}, {'hex_value': '#303b1d', 'colour_name': 'Intense Ivy'}, {'hex_value': '#353434', 'colour_name': 'Intense Charcoal'}, {'hex_value': '#13253b', 'colour_name': 'Intense Midnight'}, {'hex_value': '#59394F', 'colour_name': 'Intense Amethyst'}, {'hex_value': '#3a1f34', 'colour_name': 'Intense Aubergine'}, {'hex_value': '#352E49', 'colour_name': 'Intense Plum'}, {'hex_value': '#374236', 'colour_name': 'Intense Peacock'}, {'hex_value': '#000000', 'colour_name': 'Intense Ebony '}, {'hex_value': '#16273a', 'colour_name': 'Intense Black'}, {'hex_value': '#9E8577', 'colour_name': 'Intense Truffle'}, {'hex_value': '#4E2C1C', 'colour_name': 'Intense Sable'}, {'hex_value': '#2C425C', 'colour_name': 'Intense Cobalt'}]"
+798,clinique,Brush-On Cream Liner,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6H3F_181x209.png,https://www.clinique.com/product/1597/5363/makeup/eyeliners/brush-on-cream-liner,https://www.clinique.com,"Creamy eyeliner brushes on deep, smoky, eye-defining colour. Long-wearing, waterproof formula comes complete with a mini Eye Liner Brush. Ophthalmologist tested.",,,eyeliner,[],2017-12-23T23:35:09.613Z,2017-12-23T23:38:39.140Z,http://makeup-api.herokuapp.com/api/v1/products/798.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/798/original/data?1514072318,"[{'hex_value': '#000000', 'colour_name': 'True Black'}]"
+797,clinique,Water-Resistant Eyeliner,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6337_181x209.png,https://www.clinique.com/product/1597/4985/makeup/eyeliners/water-resistant-eyeliner,https://www.clinique.com,"The cake eyeliner that stays, won't run away. Resists smudging, smearing. Depth of colour can be adjusted with water. Comes with precision brush. Ideal for sensitive eyes. Ophthalmologist tested.",,,eyeliner,[],2017-12-23T23:35:09.279Z,2017-12-23T23:38:38.142Z,http://makeup-api.herokuapp.com/api/v1/products/797.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/797/original/data?1514072317,"[{'hex_value': '#242424', 'colour_name': 'Natural Black'}, {'hex_value': '#402323', 'colour_name': 'Muted Brown'}]"
+796,clinique,Clinique Skinny Stick™,17.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZHK411_181x209.png,https://www.clinique.com/product/1597/36517/makeup/eyeliners/clinique-skinny-stick,https://www.clinique.com,Ultra-fine yet rich colour glides on smoothly to create natural-looking definition as close to the lashline as possible. A precise tip every time–no sharpening required. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.,,,eyeliner,[],2017-12-23T23:35:08.894Z,2017-12-23T23:38:36.781Z,http://makeup-api.herokuapp.com/api/v1/products/796.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/796/original/data?1514072316,"[{'hex_value': '#51543c', 'colour_name': 'Mini Moss'}, {'hex_value': '#4F331A', 'colour_name': 'Slim Sable'}, {'hex_value': '#311d40', 'colour_name': 'Demi-grape'}, {'hex_value': '#806A3D', 'colour_name': 'Olive-tini'}, {'hex_value': '#62975c', 'colour_name': 'Thin Mint'}, {'hex_value': '#2E5E5D', 'colour_name': 'Lanky Lapis'}, {'hex_value': '#FCF9F4', 'colour_name': 'Angel Hair'}]"
+795,clinique,Pretty Easy™ Liquid Eyelining Pen,21.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGC001_181x209.png,https://www.clinique.com/product/1597/36520/makeup/eyeliners/pretty-easytm-liquid-eyelining-pen,https://www.clinique.com,"Clinique's mistake-proof pen creates a clean line in one steady sweep. Tapered, precision brush paints on pure, deep colour from thin to thick. 24-hour smudge and budge-resistant wear. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.",,,eyeliner,[],2017-12-23T23:35:08.723Z,2017-12-23T23:38:36.459Z,http://makeup-api.herokuapp.com/api/v1/products/795.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/795/original/data?1514072316,"[{'hex_value': '#2d2a29', 'colour_name': 'Black'}, {'hex_value': '#452a29', 'colour_name': 'Brown'}]"
+794,clinique,Instant Lift For Brows,9.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_71FJ02_181x209.png,https://www.clinique.com/product/1595/8417/makeup/brows/instant-lift-for-brows,https://www.clinique.com,"Two-in-one automatic brow pencil and pearlized highlighter duo creates a contrast and definition that give eyes a virtual lift. First, fill in and shape brows with long-wearing natural-looking pencil. Then optically 'boost' brow arches with universal highlighter shade just below brow hairs.",,,eyebrow,[],2017-12-23T23:35:08.235Z,2017-12-23T23:38:36.195Z,http://makeup-api.herokuapp.com/api/v1/products/794.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/794/original/data?1514072316,"[{'hex_value': '#57462b,#ecb892', 'colour_name': ''}, {'hex_value': '#4d3729,#ecb892', 'colour_name': 'Black Brown'}, {'hex_value': '#ad8b70,#ecb89f', 'colour_name': 'Soft Blonde'}, {'hex_value': '#71523b,#ecb89f', 'colour_name': 'Soft Brown'}, {'hex_value': '#5f401e,#ecb89d', 'colour_name': 'Deep Brown'}]"
+793,clinique,Superfine Liner For Brows,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_68A9_181x209.png,https://www.clinique.com/product/1595/6332/makeup/brows/superfine-liner-for-brows,https://www.clinique.com,"Convenient pencil creates perfectly defined, natural-looking brows. Ultra-fine tip fills even the smallest gaps with precise, hair-like strokes. Automatically self-sharpens; glides on without skipping or tugging. Colour lasts all day.",,,eyebrow,[],2017-12-23T23:35:07.968Z,2017-12-23T23:38:35.945Z,http://makeup-api.herokuapp.com/api/v1/products/793.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/793/original/data?1514072315,"[{'hex_value': '#B68761', 'colour_name': 'Soft Blonde'}, {'hex_value': '#71553e', 'colour_name': 'Soft Brown'}, {'hex_value': '#311b12', 'colour_name': 'Black/Brown'}, {'hex_value': '#533316', 'colour_name': 'Deep Brown'}, {'hex_value': '#94512f', 'colour_name': 'Soft Auburn'}]"
+792,clinique,Pretty Easy Brow Palette,34.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZJPG01_181x209.png,https://www.clinique.com/product/1595/38685/makeup/brows/pretty-easy-brow-palette,https://www.clinique.com,"Deluxe brow kit features natural-looking brow powder, powder highlighter, tinted brow fixative plus 4 applicator tips for a precise touch. Includes easy-to-follow illustrated how-tos.",,,eyebrow,[],2017-12-23T23:35:07.881Z,2017-12-23T23:38:35.648Z,http://makeup-api.herokuapp.com/api/v1/products/792.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/792/original/data?1514072315,[]
+791,clinique,Brow Keeper,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGHJ01_181x209.png,https://www.clinique.com/product/1595/37422/makeup/brows/brow-keeper,https://www.clinique.com,"A two-in-one tool for perfectly arched brows. Pencil end shades and shapes with a creamy formula that goes on, holds on. At the other end, a fine-tuned brush keeps brows impeccably groomed. Apply lightly for a natural look. Go heavier for pure glam.",,,eyebrow,[],2017-12-23T23:35:07.754Z,2017-12-23T23:38:34.985Z,http://makeup-api.herokuapp.com/api/v1/products/791.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/791/original/data?1514072314,"[{'hex_value': '#88553f', 'colour_name': 'Warm Brown'}, {'hex_value': '#aa8d77', 'colour_name': 'Honey'}]"
+790,clinique,Just Browsing Brush-On Styling Mousse,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH501_181x209.png,https://www.clinique.com/product/1595/36585/makeup/brows/just-browsing-brush-on-styling-mousse,https://www.clinique.com,"24-hour long-wearing brow mousse tints, tames, fills-in even the sparsest brows. Mini applicator brushes on natural-looking colour that resists smudging, sweat and humidity. Water-resistant, too. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.",,,eyebrow,[],2017-12-23T23:35:07.581Z,2017-12-23T23:38:34.607Z,http://makeup-api.herokuapp.com/api/v1/products/790.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/790/original/data?1514072314,"[{'hex_value': '#957E64', 'colour_name': 'Blonde'}, {'hex_value': '#74523c', 'colour_name': 'Light Brown'}, {'hex_value': '#533d2a', 'colour_name': 'Deep Brown'}, {'hex_value': '#3e382e', 'colour_name': 'Black/Brown'}]"
+789,clinique,Brow Shaper,18.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6346_181x209.png,https://www.clinique.com/product/1595/5634/makeup/brows/brow-shaper,https://www.clinique.com,"Fine pressed powder, special brush. Soft, natural colours fill in and perfect brows with no harsh lines.",,,eyebrow,[],2017-12-23T23:35:07.288Z,2017-12-23T23:38:34.017Z,http://makeup-api.herokuapp.com/api/v1/products/789.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/789/original/data?1514072313,"[{'hex_value': '#b1896d', 'colour_name': 'Soft Brown'}, {'hex_value': '#ffbd8d', 'colour_name': 'Wheat'}, {'hex_value': '#896a5f', 'colour_name': 'Charcoaled'}, {'hex_value': '#7b5e48', 'colour_name': 'Shaping Taupe'}]"
+788,clinique,Chubby Stick™ Sculpting Highlight,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZA1N01_181x209.png,https://www.clinique.com/product/14346/34748/makeup/contouring/chubby-stick-sculpting-highlight,https://www.clinique.com,"Luminous cream highlighting stick with light-reflecting optics brings your best features forward. Long-wearing, oil-free.",,contour,foundation,[],2017-12-23T23:35:06.969Z,2017-12-23T23:38:33.306Z,http://makeup-api.herokuapp.com/api/v1/products/788.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/788/original/data?1514072313,"[{'hex_value': '#f5c5b4', 'colour_name': 'Hefty Highlight'}]"
+787,clinique,Chubby Stick™ Sculpting Contour,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZCP701_181x209.png,https://www.clinique.com/product/14346/34749/makeup/contouring/chubby-stick-sculpting-contour,https://www.clinique.com,"Creamy contouring stick creates the illusion of depth; makes areas appear to recede. Long-wearing, oil-free.",,contour,foundation,[],2017-12-23T23:35:06.871Z,2017-12-23T23:38:32.856Z,http://makeup-api.herokuapp.com/api/v1/products/787.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/787/original/data?1514072312,"[{'hex_value': '#995239', 'colour_name': 'Curvy Contour'}]"
+786,clinique,Limited Edition Highlighting Kit,39.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K2MG80_181x209.png,https://www.clinique.com/product/14346/51296/makeup/contouring/limited-edition-highlighting-kit,https://www.clinique.com,,,contour,foundation,[],2017-12-23T23:35:06.486Z,2017-12-23T23:38:32.270Z,http://makeup-api.herokuapp.com/api/v1/products/786.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/786/original/data?1514072312,[]
+785,clinique,Blended Face Powder and Brush,26.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6362_181x209.png,https://www.clinique.com/product/1594/6271/makeup/bronzers/blended-face-powder-and-brush,https://www.clinique.com,"Clinique's signature blended powder. Loose, lightweight texture is right for every type of skin. Sets and perfects makeup, makes pores seem to disappear. Airy, skin-hugging formula delivers a reliably flawless finish.",,,bronzer,[],2017-12-23T23:35:05.726Z,2017-12-23T23:38:31.747Z,http://makeup-api.herokuapp.com/api/v1/products/785.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/785/original/data?1514072311,"[{'hex_value': '#E1D6CC', 'colour_name': 'Invisible Blend'}, {'hex_value': '#E9CEB9', 'colour_name': 'Transparency Neutral'}, {'hex_value': '#E6C8B9', 'colour_name': 'Transparency 2'}, {'hex_value': '#DBBCA4', 'colour_name': 'Transparency 3'}, {'hex_value': '#D2AC97', 'colour_name': 'Transparency 4'}, {'hex_value': '#BA927A', 'colour_name': 'Transparency 4 Plus'}, {'hex_value': '#BB9280', 'colour_name': 'Transparency Bronze'}, {'hex_value': '#AE846A', 'colour_name': 'Transparency 5'}]"
+784,clinique,Up-lighting™ Liquid Illuminator,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6L1X_181x209.png,https://www.clinique.com/product/1594/6429/makeup/bronzers/up-lighting-liquid-illuminator,https://www.clinique.com,"Sheer, lightweight liquid instantly illuminates skin. Highlights and contours cheeks, brow bones, or gives face an allover glow. Glides on to create a natural-looking luminosity. Perfect for all skin types and tones. Oil-free.",,,bronzer,[],2017-12-23T23:35:05.467Z,2017-12-23T23:38:56.973Z,http://makeup-api.herokuapp.com/api/v1/products/784.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/784/original/data?1514072336,"[{'hex_value': '#E9B180', 'colour_name': 'Natural'}]"
+783,clinique,True Bronze™ Pressed Powder Bronzer,27.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6FW2_181x209.png,https://www.clinique.com/product/1594/5737/makeup/bronzers/true-bronze-pressed-powder-bronzer,https://www.clinique.com,"Lightweight powder bronzer creates a natural-looking, sun-kissed radiance. Blends, builds easily to your desired level of bronze. Perfect for on-the-go glow. Long-wearing. Oil-free.",,,bronzer,[],2017-12-23T23:35:05.311Z,2017-12-23T23:38:56.560Z,http://makeup-api.herokuapp.com/api/v1/products/783.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/783/original/open-uri20171223-4-1mjyhnf?1514072336,"[{'hex_value': '#C68C63', 'colour_name': 'Sunswept'}, {'hex_value': '#CE8963', 'colour_name': 'Sunblushed'}, {'hex_value': '#DA9475', 'colour_name': 'Sunkissed'}]"
+782,clinique,Uplighting Illuminating Powder,27.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZEFR01_181x209.png,https://www.clinique.com/product/1594/42256/makeup/bronzers/uplighting-illuminating-powder,https://www.clinique.com,"This sheer illuminating powder with soft-focus pigments flatters skin with a candle-lit glow of radiance. Wear it alone, as a finishing powder after foundation, or as a highlighter only where you want it. In 3 luminous shades.",,,bronzer,[],2017-12-23T23:35:05.079Z,2017-12-23T23:38:56.196Z,http://makeup-api.herokuapp.com/api/v1/products/782.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/782/original/open-uri20171223-4-16kl0fz?1514072336,"[{'hex_value': '#f1bfa0', 'colour_name': 'Nude Glow'}, {'hex_value': '#e29c74', 'colour_name': 'Golden Glow'}, {'hex_value': '#bb6f4a', 'colour_name': 'Bronze Glow'}]"
+781,clinique,Sun-Kissed Face Gelee Complexion Multitasker,28.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZMAT01_181x209.png,https://www.clinique.com/product/1594/41442/makeup/bronzers/sun-kissed-face-gelee-complexion-multitasker,https://www.clinique.com,"An instant pick-me-up for skin. Sheer, oil-free gel creates a warm, healthy glow. Appropriate for all skin types and tones. Ophthalmologist Tested.",,,bronzer,[],2017-12-23T23:35:04.889Z,2017-12-23T23:38:55.821Z,http://makeup-api.herokuapp.com/api/v1/products/781.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/781/original/data?1514072335,"[{'hex_value': '#bb7859', 'colour_name': 'Universal Glow'}]"
+780,fenty,PRO FILT'R - Soft Matte Longwear Foundation,34.0,$,USD,https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw6a5f14c4/hi-res/FB30006_FB0320.jpg?sw=550 550w,https://www.fentybeauty.com/pro-filtr/soft-matte-longwear-foundation/FB30006.html,https://www.fentybeauty.com,"A soft matte, longwear foundation with buildable, medium to full coverage, in a boundary-breaking range of 40 shades.",,,foundation,[],2017-12-23T22:44:31.330Z,2017-12-25T23:55:18.683Z,http://makeup-api.herokuapp.com/api/v1/products/780.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/780/original/open-uri20171223-4-13jsgyc?1514069071,"[{'hex_value': '#FDE9DE', 'colour_name': '100 Neutral'}, {'hex_value': '#F0D4BA', 'colour_name': '150 Neutral'}, {'hex_value': '#EABE9C', 'colour_name': '200 Cool'}, {'hex_value': '#E5AD7E', 'colour_name': '250 Warm Peach'}, {'hex_value': '#CC9363', 'colour_name': '300 Neutral'}, {'hex_value': '#B97948', 'colour_name': '350 Neutral'}, {'hex_value': '#A75F24', 'colour_name': '400 Warm'}, {'hex_value': '#845031', 'colour_name': '450 Warm'}, {'hex_value': '#F2D3B2', 'colour_name': '130 Warm'}, {'hex_value': '#F9D5B8', 'colour_name': '180 Warm'}, {'hex_value': '#DFAD8A', 'colour_name': '230 Neutral'}, {'hex_value': '#E6AD85', 'colour_name': '280 Warm Peach'}, {'hex_value': '#D39157', 'colour_name': '330 Warm'}, {'hex_value': '#C9875A', 'colour_name': '380 Cool'}, {'hex_value': '#8A512A', 'colour_name': '430 Neutral'}, {'hex_value': '#693B21', 'colour_name': '480 Neutral'}, {'hex_value': '#FDE7DA', 'colour_name': '110 Cool'}, {'hex_value': '#F5CDAA', 'colour_name': '160 Warm Peach'}, {'hex_value': '#E2AD85', 'colour_name': '210 Neutral'}, {'hex_value': '#DCA77D', 'colour_name': '260 Neutral'}, {'hex_value': '#D39059', 'colour_name': '310 Warm'}, {'hex_value': '#BE7B46', 'colour_name': '360 Neutral Olive'}, {'hex_value': '#9E5D2D', 'colour_name': '410 Cool'}, {'hex_value': '#7E462D', 'colour_name': '460 Cool'}, {'hex_value': '#FBE1C6', 'colour_name': '140 Warm'}, {'hex_value': '#EAC3A0', 'colour_name': '190 Neutral'}, {'hex_value': '#D9A57D', 'colour_name': '240 Warm'}, {'hex_value': '#DCB07D', 'colour_name': '290 Neutral Olive'}, {'hex_value': '#AC7652', 'colour_name': '340 Cool'}, {'hex_value': '#A86B3F', 'colour_name': '390 Warm'}, {'hex_value': '#995933', 'colour_name': '440 Cool'}, {'hex_value': '#583218', 'colour_name': '490 Cool'}, {'hex_value': '#FEE3CC', 'colour_name': '120 Neutral'}, {'hex_value': '#E8BFA3', 'colour_name': '170 Cool'}, {'hex_value': '#F0BD96', 'colour_name': '220 Warm Peach'}, {'hex_value': '#D49C6D', 'colour_name': '270 Warm'}, {'hex_value': '#D49164', 'colour_name': '320 Warm Peach'}, {'hex_value': '#CB8458', 'colour_name': '370 Warm'}, {'hex_value': '#AC6A3A', 'colour_name': '420 Neutral'}, {'hex_value': '#6B391E', 'colour_name': '470 Neutral'}]"
+778,clinique,Sculptionary™ Cheek Contouring Palette,34.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZAMN_181x209.png,https://www.clinique.com/product/1593/34892/makeup/blushers/sculptionary-cheek-contouring-palette,https://www.clinique.com,"Versatile cheek sculpting compact with natural-looking shades that blend and build beautifully. Use each separately to colour, contour, highlight. Or swirl them together for a quick easy glow. Use mid-toned shade as a blush, deep-toned shade to contour, lightest shade to highlight. For a quick, easy glow swirl brush over entire palette and dust over apples of cheeks. Long-wearing, oil-free. ",,,blush,[],2017-12-23T17:09:13.451Z,2017-12-23T23:43:26.248Z,http://makeup-api.herokuapp.com/api/v1/products/778.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/778/original/data?1514072606,"[{'hex_value': '#f5cdc4,#f4b6a6,#ef8c85', 'colour_name': 'Defining Nectars'}, {'hex_value': '#fbd5db,#c57c82,#925058', 'colour_name': 'Defining Berries'}, {'hex_value': '#f5cdd0,#f58589,#9a5f62', 'colour_name': 'Defining Roses'}, {'hex_value': '#facebe,#e3a99f,#bf6f5c', 'colour_name': 'Defining Nudes'}, {'hex_value': '#e5e1cd,#d6b7c3,#a8b2d5', 'colour_name': 'Defining Sugars'}, {'hex_value': '#fce5e7,#deb5bd,#d36686', 'colour_name': 'Defining Pinks'}]"
+777,clinique,Blushing Blush™ Powder Blush,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6FLK_181x209.png,https://www.clinique.com/product/1593/5265/makeup/blushers/blushing-blush-powder-blush,https://www.clinique.com,"Silky formula sweeps effortlessly over cheekbones to create a natural look. Fresh, jet-milled colour builds and blends beautifully to desired intensity with custom sculpting brush. Long-wearing, colour-true. Oil-free.",,,blush,[],2017-12-23T17:09:12.709Z,2017-12-23T23:43:25.653Z,http://makeup-api.herokuapp.com/api/v1/products/777.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/777/original/open-uri20171223-4-v4q2w6?1514072605,"[{'hex_value': '#f18f94', 'colour_name': 'Cupid'}, {'hex_value': '#c0705d', 'colour_name': 'Aglow'}, {'hex_value': '#e98c86', 'colour_name': 'Sunset Glow'}, {'hex_value': '#da8b92', 'colour_name': 'Smoldering Plum'}, {'hex_value': '#f397a4', 'colour_name': 'Iced Lotus'}, {'hex_value': '#f59494', 'colour_name': 'Precious Posy'}, {'hex_value': '#d78281', 'colour_name': 'Berry Delight'}, {'hex_value': '#b05762', 'colour_name': 'Spiced Wine'}]"
+776,clinique,Cheek Pop™,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7THL_181x209.png,https://www.clinique.com/product/1593/29770/makeup/blushers/cheek-pop,https://www.clinique.com,"Vibrant yet natural-looking cheek colour that looks virtually powderless. In a silky smooth, stay-true formula with shades for every skin tone. That just-pinched look, simply effortless.",,,blush,[],2017-12-23T17:09:11.983Z,2017-12-23T23:43:25.003Z,http://makeup-api.herokuapp.com/api/v1/products/776.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/776/original/open-uri20171223-4-122ljen?1514072604,"[{'hex_value': '#cf5d5d', 'colour_name': 'Peach Pop'}, {'hex_value': '#aa514a', 'colour_name': 'Black Honey Pop '}, {'hex_value': '#e79da4', 'colour_name': 'Pink Honey'}, {'hex_value': '#cd698d', 'colour_name': 'Plum Pop'}, {'hex_value': '#db8669', 'colour_name': 'Nude Pop'}, {'hex_value': '#de7a7b', 'colour_name': 'Pink Pop'}, {'hex_value': '#c75c69', 'colour_name': 'Rosy Pop'}, {'hex_value': '#ab6266', 'colour_name': 'Heather Pop'}, {'hex_value': '#f29686', 'colour_name': 'Melon Pop'}, {'hex_value': '#b55241', 'colour_name': 'Fig Pop'}, {'hex_value': '#b54d70', 'colour_name': 'Berry Pop'}, {'hex_value': '#a06b89', 'colour_name': 'Pansy Pop'}, {'hex_value': '#ad5753', 'colour_name': 'Ginger Pop'}, {'hex_value': '#641009', 'colour_name': 'Cola Pop'}]"
+775,clinique,Clinique + Jonathan Adler: Cheek Pop,18.9,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K22102_181x209.png,https://www.clinique.com/product/1593/50730/makeup/blushers/clinique-jonathan-adler-cheek-pop,https://www.clinique.com,,,,blush,[],2017-12-23T17:09:11.684Z,2017-12-23T23:43:24.611Z,http://makeup-api.herokuapp.com/api/v1/products/775.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/775/original/open-uri20171223-4-1170sei?1514072604,"[{'hex_value': '#cf5e5e', 'colour_name': 'Clinique + Jonathan Adler: Cheek Pop in Peach Pop'}, {'hex_value': '#cd698d', 'colour_name': 'Clinique + Jonathan Adler: Cheek Pop in Plum Pop'}]"
+774,clinique,Soft-Pressed Powder Blusher,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_618J_181x209.png,https://www.clinique.com/product/1593/5164/makeup/blushers/soft-pressed-powder-blusher,https://www.clinique.com,"Warm, natural-looking powder blush for all skins. Sheer, buildable colour gives cheeks a radiant glow. Silky, fresh finish, too. Wide range of shades, from subtle to vibrant. Comes with brush applicator.",,,blush,[],2017-12-23T17:09:11.200Z,2017-12-23T23:43:24.192Z,http://makeup-api.herokuapp.com/api/v1/products/774.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/774/original/open-uri20171223-4-1oqk5jn?1514072604,"[{'hex_value': '#cc897d', 'colour_name': 'Honey Blush'}, {'hex_value': '#ca8c8c', 'colour_name': 'Pink Blush'}, {'hex_value': '#b97b81', 'colour_name': 'New Clover'}, {'hex_value': '#bb8376', 'colour_name': 'Chestnut Blush'}, {'hex_value': '#b6847a', 'colour_name': 'Mocha Pink'}, {'hex_value': '#ac7f79', 'colour_name': 'Plum Gorgeous'}, {'hex_value': '#b1706a', 'colour_name': 'Fig'}, {'hex_value': '#b08176', 'colour_name': 'Totally Tawny'}]"
+773,clinique,Chubby Stick™ Cheek Colour Balm,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_Z47M_181x209.png,https://www.clinique.com/product/1593/30944/makeup/blushers/chubby-stick-cheek-colour-balm,https://www.clinique.com,"Creamy, mistake-proof cheek colour creates a healthy-looking glow in an instant. Oil-free.",,,blush,[],2017-12-23T17:09:10.711Z,2017-12-23T23:43:23.728Z,http://makeup-api.herokuapp.com/api/v1/products/773.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/773/original/data?1514072603,"[{'hex_value': '#f87467', 'colour_name': 'Robust Rhubarb'}, {'hex_value': '#cf5d5d', 'colour_name': ""Amp'd Up Apple""}, {'hex_value': '#d55f5f', 'colour_name': 'Roly Poly Rosy'}, {'hex_value': '#b46368', 'colour_name': 'Plumped Up Peony'}]"
+772,clinique,Clinique Pop™ Oil Lip & Cheek Glow,,,,https://www.clinique.com/media/export/cms/products/181x209/clq_ZKJM01_181x209.png,https://www.clinique.com/product/1593/40007/makeup/blushers/clinique-pop-oil-lip-cheek-glow,https://www.clinique.com,,,,blush,[],2017-12-23T16:36:59.931Z,2017-12-23T23:43:27.021Z,http://makeup-api.herokuapp.com/api/v1/products/772.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/772/original/data?1514072606,"[{'hex_value': '#BC2F28', 'colour_name': None}]"
+771,clinique,CliniqueFIT™ Lip + Cheek Flush,23.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K5GX01_181x209.png,https://www.clinique.com/product/1593/50978/makeup/blushers/cliniquefittm-lip-cheek-flush,https://www.clinique.com,It’s like a post-workout glow without the workout. Sheer gel adds a healthy-looking touch of colour to lips and cheeks. Fade resistant. Oil-free.,,,blush,[],2017-12-23T16:36:59.707Z,2017-12-23T23:43:23.354Z,http://makeup-api.herokuapp.com/api/v1/products/771.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/771/original/data?1514072603,"[{'hex_value': '#C82062', 'colour_name': 'Pink in Motion'}]"
+770,clinique,Chubby™ Plump & Shine Liquid Lip Plumping Gloss,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZWP101_181x209.png,https://www.clinique.com/product/1603/45451/makeup/lip-glosses/chubby-plump-shine-liquid-lip-plumping-gloss,https://www.clinique.com,"This light-reflecting, high-shine gloss enhances the appearance of lips, making them appear plump and smooth. Moisturizes, wears for hours. Feels refreshing and cool upon application. Dermatologist Tested. Allergy Tested. 100% Fragrance Free.",,lip_gloss,lipstick,[],2017-12-23T16:36:59.232Z,2017-12-23T23:38:52.914Z,http://makeup-api.herokuapp.com/api/v1/products/770.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/770/original/data?1514072332,"[{'hex_value': '#ee8fa8', 'colour_name': 'Pink & Plenty'}, {'hex_value': '#b37366', 'colour_name': 'Normous Nude'}, {'hex_value': '#e76f5f', 'colour_name': 'Portly Peach'}, {'hex_value': '#e28f96', 'colour_name': 'Jumbo Jem'}, {'hex_value': '#cb1b56', 'colour_name': 'Powerhouse Punch'}, {'hex_value': '#973566', 'colour_name': 'Goliath Grape'}, {'hex_value': '#a54a6d', 'colour_name': 'Va Va Va Violet'}, {'hex_value': '#bf133f', 'colour_name': 'Super Scarlet'}]"
+769,clinique,Quickliner™ For Lips,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_61EM_181x209.png,https://www.clinique.com/product/1604/4771/makeup/lip-liner/quickliner-for-lips,https://www.clinique.com,All-day lip liner. Use to line and define lips or smooth all over lips before lipstick application for extended wear. Non-drying formula helps keep lipstick in place. Prevents lipstick from feathering and bleeding. No sharpening required.,,,lip_liner,[],2017-12-23T16:36:58.545Z,2017-12-23T23:38:52.404Z,http://makeup-api.herokuapp.com/api/v1/products/769.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/769/original/data?1514072332,"[{'hex_value': '#7e4542', 'colour_name': 'Lipblush'}, {'hex_value': '#9b4f46', 'colour_name': 'Neutrally'}, {'hex_value': '#98483a', 'colour_name': 'Honeystick'}, {'hex_value': '#934252', 'colour_name': 'Bamboo'}, {'hex_value': '#7f343b', 'colour_name': 'Cocoa Rose'}, {'hex_value': '#b7706b', 'colour_name': 'Baby Buff'}, {'hex_value': '#a9405c', 'colour_name': 'Crushed Berry'}, {'hex_value': '#c76378', 'colour_name': 'Soft Rose'}, {'hex_value': '#831441', 'colour_name': 'Velvet Rose'}, {'hex_value': '#ca5245', 'colour_name': 'Cocoa Peach'}, {'hex_value': '#7b0705', 'colour_name': 'Tawny Tulip'}, {'hex_value': '#b05087', 'colour_name': 'Sky Violet'}, {'hex_value': '#562a41', 'colour_name': 'Plummy'}, {'hex_value': '#490c05', 'colour_name': 'Chocolate Chip'}, {'hex_value': '#733A40', 'colour_name': 'Bon Bon'}, {'hex_value': '#5d0810', 'colour_name': 'Chili'}]"
+768,clinique, Quickliner™ For Lips Intense,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZGGY01_181x209.png,https://www.clinique.com/product/1604/37967/makeup/lip-liner/quickliner-for-lips-intense,https://www.clinique.com,Silky formula glides on and wears all day. Use it to define the lip line or fill in lips pre-lipstick application. Non-drying formula prevents lipstick from feathering and bleeding. No sharpening required.,,,lip_liner,[],2017-12-23T16:36:58.116Z,2017-12-23T23:38:52.062Z,http://makeup-api.herokuapp.com/api/v1/products/768.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/768/original/data?1514072331,"[{'hex_value': '#e76393', 'colour_name': 'Intense Hibiscus'}, {'hex_value': '#c12b73', 'colour_name': 'Intense Punch'}, {'hex_value': '#b51869', 'colour_name': 'Intense Jam'}, {'hex_value': '#941E58', 'colour_name': 'Intense Cosmo'}, {'hex_value': '#99122b', 'colour_name': 'Intense Cranberry'}, {'hex_value': '#ca1238', 'colour_name': 'Intense Passion'}, {'hex_value': '#ad5e51', 'colour_name': 'Intense Blush'}, {'hex_value': '#bb4f40', 'colour_name': 'Intense Cayenne'}, {'hex_value': '#b36d5c', 'colour_name': 'Intense Sassafras'}, {'hex_value': '#924737', 'colour_name': 'Intense Cafe'}, {'hex_value': '#4f1115', 'colour_name': 'Intense Licorice'}, {'hex_value': '#4f1919', 'colour_name': 'Intense Cola'}]"
+767,clinique,Almost Lipstick,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6359_181x209.png,https://www.clinique.com/product/1605/4772/makeup/lipsticks/almost-lipstick,https://www.clinique.com,"Transparent pigment merges with the unique, natural tone of your lips to create something wonderful and yours alone. Sheer, glossy. Emollient-rich and very lightweight.",,lipstick,lipstick,[],2017-12-23T16:36:57.610Z,2017-12-23T23:38:51.437Z,http://makeup-api.herokuapp.com/api/v1/products/767.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/767/original/data?1514072331,"[{'hex_value': '#d15969', 'colour_name': 'Pink Honey'}, {'hex_value': '#4e1d16', 'colour_name': 'Black Honey'}]"
+766,clinique,Butter Shine™ Lipstick,8.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6F8X_181x209.png,https://www.clinique.com/product/1605/5072/makeup/lipsticks/butter-shine-lipstick,https://www.clinique.com,"The creamiest, richest, smoothest lip colour you can imagine. Our revolutionary gel formula delivers the shine of a gloss, the comfort of a lipstick. Drenches lips in moist, lush colour that glides on buttery-soft, feels luxuriously smooth.",,lipstick,lipstick,[],2017-12-23T16:36:57.147Z,2017-12-23T23:38:51.123Z,http://makeup-api.herokuapp.com/api/v1/products/766.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/766/original/data?1514072330,"[{'hex_value': '#BB7267', 'colour_name': 'Delovely'}, {'hex_value': '#D87A73', 'colour_name': 'Adore U'}, {'hex_value': '#E56D75', 'colour_name': 'Pink-a-boo'}, {'hex_value': '#CE6B67', 'colour_name': 'Pink Beach'}, {'hex_value': '#D06A7A', 'colour_name': 'Berry Blush'}, {'hex_value': '#DD777F', 'colour_name': 'Baby Baby'}, {'hex_value': '#BA4A60', 'colour_name': 'Raspberry Rush'}, {'hex_value': '#C0415A', 'colour_name': 'Pink Goddess'}, {'hex_value': '#CA7783', 'colour_name': 'Waterviolet'}, {'hex_value': '#B62841', 'colour_name': 'Apple Brandy'}, {'hex_value': '#CB224E', 'colour_name': 'Fresh Watermelon'}, {'hex_value': '#B80036', 'colour_name': 'Cranberry Cream'}, {'hex_value': '#EE4F49', 'colour_name': 'Ambrosia'}]"
+765,clinique,High Impact™ Lip Colour,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6LX5_181x209.png,https://www.clinique.com/product/1605/5778/makeup/lipsticks/high-impact-lip-colour,https://www.clinique.com,,,lipstick,lipstick,[],2017-12-23T16:36:56.751Z,2017-12-23T23:38:50.795Z,http://makeup-api.herokuapp.com/api/v1/products/765.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/765/original/data?1514072330,"[{'hex_value': '#aa443b', 'colour_name': 'Peach Pop'}, {'hex_value': '#b1455a', 'colour_name': 'Extreme Pink '}, {'hex_value': '#913b35', 'colour_name': 'Go Fig'}, {'hex_value': '#D17C76', 'colour_name': 'Nude Beach'}, {'hex_value': '#DC7A75', 'colour_name': 'Nearly Violet'}, {'hex_value': '#E17770', 'colour_name': 'Honey Blush'}, {'hex_value': '#E87785', 'colour_name': 'Very Currant'}, {'hex_value': '#D96A6D', 'colour_name': 'Toasted Rose'}, {'hex_value': '#B3505D', 'colour_name': 'Rose Spectrum'}, {'hex_value': '#C02C29', 'colour_name': 'Sassy Spice'}, {'hex_value': '#853439', 'colour_name': 'Cider Berry'}, {'hex_value': '#CD5247', 'colour_name': 'Pure Posh'}, {'hex_value': '#a9434b', 'colour_name': 'Rosette'}, {'hex_value': '#CC5268', 'colour_name': 'After Party'}, {'hex_value': '#af2033', 'colour_name': 'Red-y To Wear'}]"
+764,clinique,Chubby Stick Intense™ Moisturizing Lip Colour Balm,17.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_7THM03_181x209.png,https://www.clinique.com/product/1605/24146/makeup/lipsticks/chubby-stick-intense-moisturizing-lip-colour-balm,https://www.clinique.com,"Tempt lips with a soft cushion of colour that's not quite sheer, not quite opaque-just the perfect happy medium. Loaded with mango and shea butters so lips feel comfortably soft and smooth. Ten vibrant shades in all.",,lipstick,lipstick,[],2017-12-23T16:36:56.340Z,2017-12-23T23:38:50.481Z,http://makeup-api.herokuapp.com/api/v1/products/764.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/764/original/data?1514072330,"[{'hex_value': '#792d39', 'colour_name': 'Roundest Raspberry'}, {'hex_value': '#a95c61', 'colour_name': 'Curviest Caramel'}, {'hex_value': '#ab383f', 'colour_name': 'Chunkiest Chili'}, {'hex_value': '#b5003d', 'colour_name': 'Mightiest Maraschino'}, {'hex_value': '#bd3637', 'colour_name': 'Heftiest Hibiscus'}, {'hex_value': '#a51743', 'colour_name': 'Plushest Punch'}, {'hex_value': '#831344', 'colour_name': 'Roomiest Rose'}, {'hex_value': '#76303e', 'colour_name': 'Broadest Berry'}, {'hex_value': '#771835', 'colour_name': 'Grandest Grape'}]"
+763,clinique,Long Last Soft Matte Lipstick,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_6280_181x209.png,https://www.clinique.com/product/1605/31112/makeup/lipsticks/long-last-soft-matte-lipstick,https://www.clinique.com,"Long-wearing formula keeps its just-applied look for hours. Non-drying, non-feathering. Full coverage, velvety, soft matte finish.",,lipstick,lipstick,[],2017-12-23T16:36:56.106Z,2017-12-23T23:38:49.795Z,http://makeup-api.herokuapp.com/api/v1/products/763.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/763/original/data?1514072329,"[{'hex_value': '#cd5a64', 'colour_name': 'Matte Beauty'}, {'hex_value': '#ad276a', 'colour_name': 'Matte Plum'}, {'hex_value': '#cc0631', 'colour_name': 'Matte Crimson'}]"
+762,clinique,Long Last Lipstick,17.0,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_63N2_181x209.png,https://www.clinique.com/product/1605/5404/makeup/lipsticks/long-last-lipstick,https://www.clinique.com,"Longest-wearing formula. Keeps its just-applied look for hours. Won't feather, creep, stain or dry out.",,lipstick,lipstick,[],2017-12-23T16:36:55.332Z,2017-12-23T23:38:49.415Z,http://makeup-api.herokuapp.com/api/v1/products/762.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/762/original/data?1514072329,"[{'hex_value': '#F85856', 'colour_name': 'Will You?'}, {'hex_value': '#BF4559', 'colour_name': 'I Do!'}, {'hex_value': '#d97a96', 'colour_name': 'Silvery Moon'}, {'hex_value': '#C96E5A', 'colour_name': 'Honeymoon'}, {'hex_value': '#ba4a58', 'colour_name': 'Violet Berry'}, {'hex_value': '#cc486a', 'colour_name': 'Watermelon'}, {'hex_value': '#c9253e', 'colour_name': 'Ginger Flower'}, {'hex_value': '#e64e51', 'colour_name': 'Runway Coral'}, {'hex_value': '#af5965', 'colour_name': 'Twilight Nude'}, {'hex_value': '#af675d', 'colour_name': 'Creamy Nude'}, {'hex_value': '#a75155', 'colour_name': 'Baby Kiss'}, {'hex_value': '#ad3836', 'colour_name': 'Berry Freeze'}, {'hex_value': '#A8005B', 'colour_name': 'Rose Shimmer'}, {'hex_value': '#b35060', 'colour_name': 'Beauty'}, {'hex_value': '#a44242', 'colour_name': 'All Heart'}, {'hex_value': '#b32127', 'colour_name': 'Red Red Red'}, {'hex_value': '#be453e', 'colour_name': 'Golden Brandy'}, {'hex_value': '#a75258', 'colour_name': 'Pink Spice '}, {'hex_value': '#6c2a2d', 'colour_name': 'Black Violet'}, {'hex_value': '#a95554', 'colour_name': 'Blushing Nude'}, {'hex_value': '#a95c5b', 'colour_name': 'Sugared Maple'}, {'hex_value': '#8f212e', 'colour_name': 'Merlot'}, {'hex_value': '#a96361', 'colour_name': 'Bamboo Pink'}, {'hex_value': '#874f58', 'colour_name': 'Heather Moon'}, {'hex_value': '#a52b25', 'colour_name': 'Dubonnet'}, {'hex_value': '#a7413d', 'colour_name': 'Pink Chocolate'}]"
+761,clinique,Clinique Pop Liquid™ Matte Lip Colour + Primer,18.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPM01_181x209.png,https://www.clinique.com/product/1605/42886/makeup/lipsticks/clinique-pop-liquidtm-matte-lip-colour-primer,https://www.clinique.com,"Lightweight liquid lipstick covers lips with lush pigment and a modern matte finish. Wears all day. Moisturizing formula with built-in primer provides a smooth, even glide so lips feel as fresh as they look.",,lipstick,lipstick,[],2017-12-23T16:36:54.947Z,2017-12-23T23:38:49.044Z,http://makeup-api.herokuapp.com/api/v1/products/761.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/761/original/data?1514072328,"[{'hex_value': '#e86ba5', 'colour_name': 'Petal Pop'}, {'hex_value': '#841544', 'colour_name': 'Boom Pop'}, {'hex_value': '#da7d7e', 'colour_name': 'Cake Pop'}, {'hex_value': '#c8093a', 'colour_name': 'Flame Pop'}, {'hex_value': '#ef3232', 'colour_name': 'Ripe Pop'}, {'hex_value': '#9e1b56', 'colour_name': 'Sweetheart Pop'}, {'hex_value': '#790126', 'colour_name': 'Candied Apple Pop'}, {'hex_value': '#5e072f', 'colour_name': 'Black Licorice Pop'}]"
+760,clinique,Chubby Stick Baby Tint™ Moisturizing Lip Colour Balm,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_Z4CF_181x209.png,https://www.clinique.com/product/1605/30955/makeup/lipsticks/chubby-stick-baby-tint-moisturizing-lip-colour-balm,https://www.clinique.com,"A bit of colour, a hefty helping of moisture. These sheers bloom on contact to bring out your lips' natural tone. The colour is different for everyone.",,lipstick,lipstick,[],2017-12-23T16:36:54.729Z,2017-12-23T23:38:48.703Z,http://makeup-api.herokuapp.com/api/v1/products/760.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/760/original/data?1514072328,"[{'hex_value': '#ff8fb2', 'colour_name': 'Budding Blossom'}, {'hex_value': '#e35773', 'colour_name': 'Coming Up Rosy'}, {'hex_value': '#f26a6f', 'colour_name': ""Poppin' Poppy""}, {'hex_value': '#783e5b', 'colour_name': 'Flowering Freesia'}]"
+759,clinique,Clinique + Jonathan Adler: Pop Lip Colour + Primer,15.4,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_K22002_181x209.png,https://www.clinique.com/product/1605/49842/makeup/lipsticks/clinique-jonathan-adler-pop-lip-colour-primer,https://www.clinique.com,"An exclusive collection of luminous Clinique Pop™ lipsticks by Jonathan Adler. Includes 3 limited-edition shades inspired by his favorite destinations: Palm Beach Pop, Capri Pop and Santorini Pop. Jewel-like lipsticks in bold, saturated colors look as pretty on your lips as they do on your vanity. “The domes of Lucite are inspired by my Globo collection—glowing and glamorous. Just like Lip Pop,” says Adler.",,lipstick,lipstick,[],2017-12-23T16:36:54.212Z,2017-12-23T23:38:48.387Z,http://makeup-api.herokuapp.com/api/v1/products/759.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/759/original/data?1514072328,"[{'hex_value': '#AD384A', 'colour_name': 'Love Pop'}, {'hex_value': '#EA2C51', 'colour_name': 'Palm Beach Pop'}, {'hex_value': '#7b3636', 'colour_name': 'Cola Pop'}, {'hex_value': '#f45a3b', 'colour_name': 'Melon Pop'}, {'hex_value': '#CC756C', 'colour_name': 'Beige Pop'}, {'hex_value': '#E51E4F', 'colour_name': 'Capri Pop '}, {'hex_value': '#FB8187', 'colour_name': 'Fab Pop'}, {'hex_value': '#C86464', 'colour_name': 'Bare Pop'}, {'hex_value': '#cd1859', 'colour_name': 'Cherry Pop'}, {'hex_value': '#F83A3C', 'colour_name': 'Poppy Pop'}, {'hex_value': '#AE266B', 'colour_name': 'Santorini Pop'}]"
+758,clinique,Different Lipstick,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_617G_181x209.png,https://www.clinique.com/product/1605/5887/makeup/lipsticks/different-lipstick,https://www.clinique.com,"Different because of its smooth, comfortable feel. Moderate coverage in a remarkable range of shades, from cream to pearl. Every one packed with rich emollients.",,lipstick,lipstick,[],2017-12-23T16:36:53.475Z,2017-12-23T23:38:48.027Z,http://makeup-api.herokuapp.com/api/v1/products/758.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/758/original/data?1514072327,"[{'hex_value': '#8c3050', 'colour_name': 'A Different Grape'}, {'hex_value': '#e26872', 'colour_name': 'Sugared Grapefruit'}, {'hex_value': '#b96565', 'colour_name': 'Think Bronze'}, {'hex_value': '#B76E74', 'colour_name': 'Guava Stain'}, {'hex_value': '#DC555E', 'colour_name': 'Sweet Honey'}, {'hex_value': '#9f3245', 'colour_name': 'Plum Brandy'}, {'hex_value': '#8f4a4e', 'colour_name': 'Surprise'}, {'hex_value': '#a44155', 'colour_name': 'Shy'}, {'hex_value': '#9c0b2d', 'colour_name': 'Angel Red'}, {'hex_value': '#ab455e', 'colour_name': 'Raspberry Glace'}, {'hex_value': '#CC364C', 'colour_name': 'Ripe Raisin'}, {'hex_value': '#A3555D', 'colour_name': 'Spiced Apple'}, {'hex_value': '#984a37', 'colour_name': 'Tenderheart'}, {'hex_value': '#dd587c', 'colour_name': 'Glazed Berry'}, {'hex_value': '#AD665D', 'colour_name': 'Bronze Leaf'}]"
+757,clinique,Clinique Pop™ Lacquer Lip Colour + Primer ,18.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPR_181x209.png,https://www.clinique.com/product/1605/39139/makeup/lipsticks/clinique-poptm-lacquer-lip-colour-primer,https://www.clinique.com,,,lipstick,lipstick,[],2017-12-23T16:36:52.785Z,2017-12-23T23:38:47.732Z,http://makeup-api.herokuapp.com/api/v1/products/757.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/757/original/data?1514072327,"[{'hex_value': '#d88282', 'colour_name': 'Nude Pop'}, {'hex_value': '#d7142e', 'colour_name': 'Lava Pop'}, {'hex_value': '#cc6674', 'colour_name': 'Sugar Pop'}, {'hex_value': '#a65957', 'colour_name': 'Cocoa Pop'}, {'hex_value': '#ff1e5a', 'colour_name': 'Sweetie Pop'}, {'hex_value': '#6a1144', 'colour_name': 'Peace Pop'}, {'hex_value': '#ec878d', 'colour_name': 'Wink Pop'}, {'hex_value': '#ef005f', 'colour_name': 'Go-Go Pop'}, {'hex_value': '#924257', 'colour_name': 'Love Pop'}, {'hex_value': '#ff3d3c', 'colour_name': 'Happy Pop'}]"
+756,clinique,Clinique Pop Glaze™ Sheer Lip Colour + Primer,18.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPR02_181x209.png,https://www.clinique.com/product/1605/39138/makeup/lipsticks/clinique-pop-glaze-sheer-lip-colour-primer,https://www.clinique.com,,,lipstick,lipstick,[],2017-12-23T16:36:51.913Z,2017-12-23T23:38:47.271Z,http://makeup-api.herokuapp.com/api/v1/products/756.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/756/original/data?1514072327,"[{'hex_value': '#f276a2', 'colour_name': 'Bubblegum Pop'}, {'hex_value': '#c05c67', 'colour_name': 'Sugar Plum Pop'}, {'hex_value': '#cc376a', 'colour_name': 'Sprinkle Pop'}, {'hex_value': '#c12838', 'colour_name': 'Fireball Pop'}, {'hex_value': '#f45c5f', 'colour_name': 'Melon Drop Pop'}, {'hex_value': '#731e3b', 'colour_name': 'Licorice Pop'}]"
+755,clinique,Chubby Stick™ Moisturizing Lip Colour Balm,17.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_749K01_181x209.png,https://www.clinique.com/product/1605/15520/makeup/lipsticks/chubby-stick-moisturizing-lip-colour-balm,https://www.clinique.com,"Super-nourishing balm is loaded with mango and shea butters. Just what dry, delicate lips need to feel comfortably soft and smooth. Natural-looking lip tints have a subtle sheen.",,lipstick,lipstick,[],2017-12-23T16:36:50.153Z,2017-12-23T23:38:46.729Z,http://makeup-api.herokuapp.com/api/v1/products/755.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/755/original/data?1514072326,"[{'hex_value': '#b1515d', 'colour_name': 'Super Strawberry'}, {'hex_value': '#b76f69', 'colour_name': 'Heaping Hazelnut'}, {'hex_value': '#954b57', 'colour_name': 'Graped-Up'}, {'hex_value': '#af6262', 'colour_name': 'Whole Lotta Honey'}, {'hex_value': '#9b4344', 'colour_name': 'Fuller Fig'}, {'hex_value': '#853f36', 'colour_name': 'Richer Raisin'}, {'hex_value': '#ce1f1d', 'colour_name': 'Two Ton Tomato'}, {'hex_value': '#c45a5b', 'colour_name': 'Mega Melon'}, {'hex_value': '#f66366', 'colour_name': 'Oversized Orange'}, {'hex_value': '#c04156', 'colour_name': 'Chunky Cherry'}, {'hex_value': '#b11f60', 'colour_name': 'Pudgy Peony'}, {'hex_value': '#e17587', 'colour_name': ""Woppin' Watermelon""}, {'hex_value': '#984d50', 'colour_name': 'Bountiful Blush'}, {'hex_value': '#e76477', 'colour_name': 'Curvy Candy'}, {'hex_value': '#e3727c', 'colour_name': 'Mighty Mimosa'}, {'hex_value': '#8f3851', 'colour_name': 'Voluptuous Violet'}, {'hex_value': '#f7659e', 'colour_name': 'Plumped Up Pink'}, {'hex_value': '#f09495', 'colour_name': 'Supreme Sorbet'}, {'hex_value': '#a7354b', 'colour_name': 'Jumbo Jasmine'}]"
+754,clinique,Clinique Pop™ Matte Lip Colour + Primer,18.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZTPH01_181x209.png,https://www.clinique.com/product/1605/42767/makeup/lipsticks/clinique-poptm-matte-lip-colour-primer,https://www.clinique.com,"Weightless yet pigment-saturated formula hugs lips with 8 hours of creamy matte comfort. Built-in primer helps smooth lips for an easy, even glide every time.",,lipstick,lipstick,[],2017-12-23T16:36:49.019Z,2017-12-23T23:38:51.741Z,http://makeup-api.herokuapp.com/api/v1/products/754.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/754/original/data?1514072331,"[{'hex_value': '#4a1323', 'colour_name': 'Bold Pop'}, {'hex_value': '#a8100b', 'colour_name': 'Ruby Pop'}, {'hex_value': '#961741', 'colour_name': 'Rose Pop'}, {'hex_value': '#7f2d55', 'colour_name': 'Pow Pop'}, {'hex_value': '#cc0d49', 'colour_name': 'Graffiti Pop'}, {'hex_value': '#592a26', 'colour_name': 'Clove Pop'}, {'hex_value': '#a80028', 'colour_name': 'Peppermint Pop'}, {'hex_value': '#a54b60', 'colour_name': 'Cute Pop'}, {'hex_value': '#af1a58', 'colour_name': 'Shock Pop'}, {'hex_value': '#d3313f', 'colour_name': 'Coral Pop'}, {'hex_value': '#de387d', 'colour_name': 'Mod Pop'}, {'hex_value': '#900925', 'colour_name': 'Icon Pop'}, {'hex_value': '#dc7587', 'colour_name': 'Peony Pop'}, {'hex_value': '#9f5859', 'colour_name': 'Blushing Pop'}, {'hex_value': '#301018', 'colour_name': 'Avant Garde Pop'}, {'hex_value': '#8e4546', 'colour_name': 'Beach Pop'}]"
+753,clinique,Clinique Pop™ Lip Colour + Primer,18.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZEK2_181x209.png,https://www.clinique.com/product/1605/35082/makeup/lipsticks/clinique-pop-lip-colour-primer,https://www.clinique.com,"Luxurious yet weightless formula merges bold, saturated colour with a smoothing primer. Glides on effortlessly to a modern-velvet finish. Colour stays true, keeps lips comfortably moisturized for 8 hours. Allergy Tested. 100% Fragrance Free.",,lipstick,lipstick,[],2017-12-23T16:36:48.276Z,2017-12-23T23:38:46.398Z,http://makeup-api.herokuapp.com/api/v1/products/753.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/753/original/data?1514072326,"[{'hex_value': '#d3796e', 'colour_name': 'Nude Pop'}, {'hex_value': '#f37e91', 'colour_name': 'Fab Pop'}, {'hex_value': '#e08e7f', 'colour_name': 'Beige Pop'}, {'hex_value': '#f47b74', 'colour_name': 'Melon Pop'}, {'hex_value': '#b75c54', 'colour_name': 'Bare Pop'}, {'hex_value': '#eb6b8a', 'colour_name': 'Sweet Pop'}, {'hex_value': '#ef5498', 'colour_name': 'Wow Pop'}, {'hex_value': '#974b6a', 'colour_name': 'Grape Pop'}, {'hex_value': '#eb4944', 'colour_name': 'Poppy Pop'}, {'hex_value': '#b45865', 'colour_name': 'Plum Pop'}, {'hex_value': '#cb254c', 'colour_name': 'Punch Pop'}, {'hex_value': '#b90e26', 'colour_name': 'Cherry Pop'}, {'hex_value': '#8d3949', 'colour_name': 'Love Pop'}, {'hex_value': '#750d15', 'colour_name': 'Passion Pop'}, {'hex_value': '#641126', 'colour_name': 'Berry Pop'}, {'hex_value': '#5a1e1b', 'colour_name': 'Cola Pop'}]"
+752,clinique,Clinique Pop™ Lip Shadow Cushion Matte Lip Powder,19.5,$,USD,https://www.clinique.com/media/export/cms/products/181x209/clq_ZXH101_181x209.png,https://www.clinique.com/product/1605/45673/makeup/lipsticks/clinique-pop-lip-shadow-cushion-matte-lip-powder,https://www.clinique.com,"Clinique Pop™ Lip Shadow is a weightless matte powder that delivers bold, highly pigmented lip color.",,lipstick,lipstick,[],2017-12-23T16:36:47.459Z,2017-12-23T23:38:45.437Z,http://makeup-api.herokuapp.com/api/v1/products/752.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/752/original/data?1514072325,"[{'hex_value': '#BB5974', 'colour_name': 'Blossom Pop'}, {'hex_value': '#9F6469', 'colour_name': 'Dune Pop'}, {'hex_value': '#C91C67', 'colour_name': 'Fuchsia Pop'}, {'hex_value': '#A82F5B', 'colour_name': 'Fiesta Pop'}, {'hex_value': '#C02840', 'colour_name': 'Crimson Pop'}, {'hex_value': '#C6243C', 'colour_name': 'Bright Pop'}, {'hex_value': '#83403C', 'colour_name': 'Brown Sugar Pop'}, {'hex_value': '#713547', 'colour_name': 'Fun Pop'}]"
+740,dior,"
+ Junon
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/v6_packshots_sku_pdg%252FPDG_Y0002959-F000355494.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0002959_f000355494-couture-colour-gel-shine-long-wear.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.,,,nail_polish,[],2017-12-03T23:24:03.403Z,2017-12-23T20:59:02.537Z,http://makeup-api.herokuapp.com/api/v1/products/740.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/740/original/data?1514062742,"[{'hex_value': '#FCD9CB', 'colour_name': '108 Muguet'}, {'hex_value': '#EA4D54', 'colour_name': '445 Coral Crush'}, {'hex_value': '#F9C8C8', 'colour_name': '155 Tra-la-la'}, {'hex_value': '#F7B6B6', 'colour_name': '268 Ruban'}, {'hex_value': '#B63853', 'colour_name': '785 Cosmopolite'}, {'hex_value': '#952D73', 'colour_name': '338 Mirage'}, {'hex_value': '#A3948B', 'colour_name': '306 Trianon'}, {'hex_value': '#977D7B', 'colour_name': '403 Palais Royal'}, {'hex_value': '#D2A896', 'colour_name': '413 Grège'}, {'hex_value': '#617686', 'colour_name': '494 Junon'}, {'hex_value': '#E73326', 'colour_name': '537 Riviera'}, {'hex_value': '#E61E32', 'colour_name': '551 Aventure'}, {'hex_value': '#E83B53', 'colour_name': '575 Wonderland'}, {'hex_value': '#E40040', 'colour_name': '659 Lucky'}, {'hex_value': '#E40B6E', 'colour_name': '661 Bonheur'}, {'hex_value': '#DB1057', 'colour_name': '669 Fizz Pink'}, {'hex_value': '#C90206', 'colour_name': '754 Pandore'}, {'hex_value': '#C60F54', 'colour_name': '769 Front Row'}, {'hex_value': '#780C18', 'colour_name': '853 Massaï'}, {'hex_value': '#340000', 'colour_name': '970 Nuit 1947'}, {'hex_value': '#A10705', 'colour_name': '999 Rouge 999'}]"
+730,dior,"
+ Matte
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/v6_packshots_sku_pdg%252FPDG_Y0002959-F000355999.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003759_f000375999-couture-colour-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.,,,nail_polish,[],2017-12-03T23:23:26.195Z,2017-12-23T20:59:00.800Z,http://makeup-api.herokuapp.com/api/v1/products/730.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/730/original/data?1514062740,"[{'hex_value': '#F39994', 'colour_name': '162 Miss Satin'}, {'hex_value': '#C78377', 'colour_name': '614 Jungle Matte'}, {'hex_value': '#6D1724', 'colour_name': '979 Poison Metal'}, {'hex_value': '#A50809', 'colour_name': '999 Matte'}]"
+729,dior,"
+ Poison Metal
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003559_F000355979.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003759_f000355979-couture-colour-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.,,,nail_polish,[],2017-12-03T23:23:25.096Z,2017-12-23T20:59:00.613Z,http://makeup-api.herokuapp.com/api/v1/products/729.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/729/original/data?1514062740,"[{'hex_value': '#F39994', 'colour_name': '162 Miss Satin'}, {'hex_value': '#C78377', 'colour_name': '614 Jungle Matte'}, {'hex_value': '#6D1724', 'colour_name': '979 Poison Metal'}, {'hex_value': '#A50809', 'colour_name': '999 Matte'}]"
+728,dior,"
+ Jungle Matte
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003759_F000355614.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003759_f000355614-couture-colour-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.,,,nail_polish,[],2017-12-03T23:23:24.181Z,2017-12-23T20:59:00.023Z,http://makeup-api.herokuapp.com/api/v1/products/728.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/728/original/data?1514062739,"[{'hex_value': '#F39994', 'colour_name': '162 Miss Satin'}, {'hex_value': '#C78377', 'colour_name': '614 Jungle Matte'}, {'hex_value': '#6D1724', 'colour_name': '979 Poison Metal'}, {'hex_value': '#A50809', 'colour_name': '999 Matte'}]"
+727,dior,"
+ Miss Satin
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003759_F000355162.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003759_f000355162-couture-colour-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.,,,nail_polish,[],2017-12-03T23:23:23.157Z,2017-12-23T20:58:59.809Z,http://makeup-api.herokuapp.com/api/v1/products/727.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/727/original/data?1514062739,"[{'hex_value': '#F39994', 'colour_name': '162 Miss Satin'}, {'hex_value': '#C78377', 'colour_name': '614 Jungle Matte'}, {'hex_value': '#6D1724', 'colour_name': '979 Poison Metal'}, {'hex_value': '#A50809', 'colour_name': '999 Matte'}]"
+726,dior,"
+ Mineral
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003567_F000355201.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003567_f000355201-true-colour-ultra-shiny-long-wear.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.,,,nail_polish,[],2017-12-03T23:23:22.803Z,2017-12-23T20:58:59.358Z,http://makeup-api.herokuapp.com/api/v1/products/726.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/726/original/data?1514062739,"[{'hex_value': '#C0CAB7', 'colour_name': '201 Mineral'}]"
+725,dior,"
+ Sauvage
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880924.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003565_f000355924-couture-colour-gel-shine-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.,,,nail_polish,[],2017-12-03T23:23:21.844Z,2017-12-23T20:58:59.148Z,http://makeup-api.herokuapp.com/api/v1/products/725.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/725/original/data?1514062739,"[{'hex_value': '#ED7C90', 'colour_name': '550 Tease'}, {'hex_value': '#EA508D', 'colour_name': '684 Diabolo'}, {'hex_value': '#481B2A', 'colour_name': '924 Sauvage'}]"
+724,dior,"
+ Diabolo
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880684.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003565_f000355684-couture-colour-gel-shine-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.,,,nail_polish,[],2017-12-03T23:23:21.228Z,2017-12-23T20:58:58.888Z,http://makeup-api.herokuapp.com/api/v1/products/724.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/724/original/data?1514062738,"[{'hex_value': '#ED7C90', 'colour_name': '550 Tease'}, {'hex_value': '#EA508D', 'colour_name': '684 Diabolo'}, {'hex_value': '#481B2A', 'colour_name': '924 Sauvage'}]"
+723,dior,"
+ Tease
+ ",20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880550.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/nails/nail-lacquers/pr-naillacquers-y0003565_f000355550-couture-colour-gel-shine-long-wear-nail-lacquer.html,https://www.dior.com,Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.,,,nail_polish,[],2017-12-03T23:23:20.423Z,2017-12-23T20:58:58.761Z,http://makeup-api.herokuapp.com/api/v1/products/723.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/723/original/data?1514062738,"[{'hex_value': '#ED7C90', 'colour_name': '550 Tease'}, {'hex_value': '#EA508D', 'colour_name': '684 Diabolo'}, {'hex_value': '#481B2A', 'colour_name': '924 Sauvage'}]"
+722,dior,"
+ Precious Rocks
+ ",20.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002880_F000288001.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0002880_f000288001-nail-liner-shine-precision.html,https://www.dior.com,"Diorific reveals a nail liner designed to decorate your nails like gemstones with festive shades. In one ultra-precise golden stroke, Dior Vernis Liner delivers a clear varnish strewn with gold, platinum, and silver glitter in various sizes, showering nails with countless little gems.",,,nail_polish,[],2017-12-03T23:23:19.614Z,2017-12-23T20:58:58.620Z,http://makeup-api.herokuapp.com/api/v1/products/722.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/722/original/data?1514062738,"[{'hex_value': '#CAAB54', 'colour_name': '001 Precious Rocks'}]"
+721,dior,"
+ Amethyst
+ ",20.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298998.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0002986_f000298998-couture-colour-gel-shine-long-wear.html,https://www.dior.com,"The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",,,nail_polish,[],2017-12-03T23:23:18.553Z,2017-12-23T20:58:58.443Z,http://makeup-api.herokuapp.com/api/v1/products/721.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/721/original/data?1514062738,"[{'hex_value': '#BC2D48', 'colour_name': '673 Ruby'}, {'hex_value': '#970530', 'colour_name': '745 Grenat'}, {'hex_value': '#006D66', 'colour_name': '809 Emerald'}, {'hex_value': '#511B38', 'colour_name': '998 Amethyst'}]"
+720,dior,"
+ Emerald
+ ",20.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298809.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0002986_f000298809-couture-colour-gel-shine-long-wear.html,https://www.dior.com,"The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",,,nail_polish,[],2017-12-03T23:23:17.565Z,2017-12-23T20:58:58.230Z,http://makeup-api.herokuapp.com/api/v1/products/720.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/720/original/data?1514062738,"[{'hex_value': '#BC2D48', 'colour_name': '673 Ruby'}, {'hex_value': '#970530', 'colour_name': '745 Grenat'}, {'hex_value': '#006D66', 'colour_name': '809 Emerald'}, {'hex_value': '#511B38', 'colour_name': '998 Amethyst'}]"
+719,dior,"
+ Grenat
+ ",0.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298745.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0002986_f000298745-couture-colour-gel-shine-long-wear.html,https://www.dior.com,"The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",,,nail_polish,[],2017-12-03T23:23:16.306Z,2017-12-23T20:58:57.984Z,http://makeup-api.herokuapp.com/api/v1/products/719.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/719/original/data?1514062737,"[{'hex_value': '#BC2D48', 'colour_name': '673 Ruby'}, {'hex_value': '#970530', 'colour_name': '745 Grenat'}, {'hex_value': '#006D66', 'colour_name': '809 Emerald'}, {'hex_value': '#511B38', 'colour_name': '998 Amethyst'}]"
+718,dior,"
+ Ruby
+ ",20.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298673.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0002986_f000298673-couture-colour-gel-shine-long-wear.html,https://www.dior.com,"The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",,,nail_polish,[],2017-12-03T23:23:15.101Z,2017-12-23T20:58:57.852Z,http://makeup-api.herokuapp.com/api/v1/products/718.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/718/original/data?1514062737,"[{'hex_value': '#BC2D48', 'colour_name': '673 Ruby'}, {'hex_value': '#970530', 'colour_name': '745 Grenat'}, {'hex_value': '#006D66', 'colour_name': '809 Emerald'}, {'hex_value': '#511B38', 'colour_name': '998 Amethyst'}]"
+717,dior,All-In-Brow 3D,43.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0929580_f092958001.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyebrows/pr-eyebrows-y0929580_f092958001-long-wear-brow-contour-kit.html,https://www.dior.com,"Inspired by the expert techniques of professional fashion show makeup artists, Dior presents its first eyebrow kit, which includes:",,,eyebrow,[],2017-12-03T23:23:13.659Z,2017-12-23T20:58:57.681Z,http://makeup-api.herokuapp.com/api/v1/products/717.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/717/original/open-uri20171223-4-k72ych?1514062737,"[{'hex_value': '#786557', 'colour_name': '001 Brown'}]"
+716,dior,Sourcils Poudre,20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0746300.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyebrows/pr-eyebrows-y0746300_f074630093-powder-eyebrow-pencil-with-a-brush-and-sharpener.html,https://www.dior.com,The finish of a powder combined with the powerful definition of a wax in a professional pencil that gives a denser shape to the brow line for a naturally structured effect.,,,eyebrow,[],2017-12-03T23:23:12.519Z,2017-12-23T20:58:57.438Z,http://makeup-api.herokuapp.com/api/v1/products/716.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/716/original/open-uri20171223-4-lr6t41?1514062737,"[{'hex_value': '#37342C', 'colour_name': '093 Black'}, {'hex_value': '#8A6B55', 'colour_name': '433 Ash Blonde'}, {'hex_value': '#583D2F', 'colour_name': '453 Soft Brown'}, {'hex_value': '#68403E', 'colour_name': '593 Brown'}, {'hex_value': '#A0795F', 'colour_name': '653 Blonde'}, {'hex_value': '#614D42', 'colour_name': '693 Dark Brown'}]"
+715,dior,DIORSHOW BROW STYLER,20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0726130.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyebrows/pr-eyebrows-y0726130_f072613001-ultra-fine-precision-brow-pencil.html,https://www.dior.com,This ultra-fine retractable pencil naturally fills in brows and helps shape with precision. ,,,eyebrow,[],2017-12-03T23:23:11.420Z,2017-12-23T20:58:57.208Z,http://makeup-api.herokuapp.com/api/v1/products/715.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/715/original/data?1514062737,"[{'hex_value': '#685656', 'colour_name': '001 Universal Brown'}, {'hex_value': '#6D5B42', 'colour_name': '002 Universal Dark Brown'}, {'hex_value': '#683E28', 'colour_name': '003 Auburn'}, {'hex_value': '#92673F', 'colour_name': '021 Chestnut'}]"
+714,dior,DIORSHOW BOLD BROW - Christmas 2017 Limited Edition,22.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929631_F092963004.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0929631_f092963004-brow-mascara-structure-shine-gold-edition.html,https://www.dior.com,"This winter, Diorshow Bold Brow has all the sheer shine of gold. A striking little detail to create a bold beauty look or subtly enhance natural makeup.",,,eyebrow,[],2017-12-03T23:23:10.728Z,2017-12-23T20:58:56.795Z,http://makeup-api.herokuapp.com/api/v1/products/714.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/714/original/open-uri20171223-4-1c1cqh2?1514062736,"[{'hex_value': '#D2AF75', 'colour_name': '004 Gold'}]"
+713,dior,DIORSHOW BOLD BROW,22.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929630.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/metallics-collection/pr-metallicslook-y0929630_f092963002-instant-volumizing-brow-mascara.html,https://www.dior.com,"Immediately achieve lush, full, groomed brows.",,,eyebrow,[],2017-12-03T23:23:10.007Z,2017-12-23T20:58:56.344Z,http://makeup-api.herokuapp.com/api/v1/products/713.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/713/original/open-uri20171223-4-1gf1ey3?1514062736,"[{'hex_value': '#6F5246', 'colour_name': '002 Dark'}, {'hex_value': '#A07B66', 'colour_name': '011 Light'}, {'hex_value': '#8C5F3D', 'colour_name': '021 Medium'}]"
+712,dior,Diorshow Art Pen,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775300.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0775300_f077530095-intense-professional-felt-tip-eyeliner-long-lasting-wear.html,https://www.dior.com,"A high-precision felt-tip applicator with a deep black stroke to create all the catwalk styles, from the most natural to the utterly show-stopping. Easy to remove with warm water or makeup remover.",,,eyeliner,[],2017-12-03T23:23:08.733Z,2017-12-23T20:58:56.190Z,http://makeup-api.herokuapp.com/api/v1/products/712.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/712/original/open-uri20171223-4-h1615c?1514062736,"[{'hex_value': 'gray6', 'colour_name': '095 Catwalk Black'}]"
+711,dior,Diorliner,27.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775101.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0775101_f077510098-precision-eyeliner.html,https://www.dior.com,Click-pen eyeliner that delivers precise contouring and a flawlessly clean line. Diorliner deposits just the right amount of liner with a single click.,,,eyeliner,[],2017-12-03T23:23:07.851Z,2017-12-23T20:58:55.708Z,http://makeup-api.herokuapp.com/api/v1/products/711.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/711/original/open-uri20171223-4-1x93p9h?1514062735,"[{'hex_value': 'black', 'colour_name': '098 Black'}, {'hex_value': '#7E5F5C', 'colour_name': '798 Brown'}]"
+710,dior,Dior Addict It-Line,26.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0777200.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0777200_f077720099-liquid-eyeliner-fabulous-line-and-vibrant-colour.html,https://www.dior.com,Fashionable eyes with fabulous line and vibrant colour.,,,eyeliner,[],2017-12-03T23:23:07.026Z,2017-12-23T20:58:55.447Z,http://makeup-api.herokuapp.com/api/v1/products/710.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/710/original/open-uri20171223-4-1pbovdl?1514062735,"[{'hex_value': 'gray8', 'colour_name': '099 It-Black'}]"
+709,dior,Eyeliner Waterproof,20.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0803050.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0803050_f080305594-long-wear-waterproof-eyeliner-pencil.html,https://www.dior.com,"The essential pencil for a perfectly soft, blended line with extra-long wear.",,,eyeliner,[],2017-12-03T23:23:06.058Z,2017-12-23T20:58:55.182Z,http://makeup-api.herokuapp.com/api/v1/products/709.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/709/original/open-uri20171223-4-lpewoq?1514062735,"[{'hex_value': '#533638', 'colour_name': '594 Intense Brown'}, {'hex_value': 'gray9', 'colour_name': '094 Trinidad Black'}, {'hex_value': '#456C89', 'colour_name': '254 Captivating Blue'}]"
+708,dior,DIORSHOW KHÔL,19.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0739300_F073930009.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0739300_f073930099-high-intensity-pencil-waterproof-hold-with-blending-tip-and-sharpener.html,https://www.dior.com,"With its highly pigmented formula, the Diorshow Khôl pencil has a creamy texture that provides precise application and easy blending at the lashline and the water line.",,,eyeliner,[],2017-12-03T23:23:05.058Z,2017-12-23T20:58:54.931Z,http://makeup-api.herokuapp.com/api/v1/products/708.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/708/original/data?1514062734,"[{'hex_value': '#282828', 'colour_name': '099 Black Khôl'}, {'hex_value': '#F2F3EF', 'colour_name': '009 White Khôl'}, {'hex_value': '#F8D9BF', 'colour_name': '529 Beige Khôl'}]"
+707,dior,Diorshow Pro Liner Waterproof,20.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775350.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/liners/pr-liners-y0775350_f077535062-bevel-tip-eyeliner-long-lasting-spectacular-line.html,https://www.dior.com,The breakthrough Diorshow Pro Line Waterproof teams the easy application of a pencil with the glide and intensity of a liquid liner.,,,eyeliner,[],2017-12-03T23:23:03.384Z,2017-12-23T20:58:54.439Z,http://makeup-api.herokuapp.com/api/v1/products/707.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/707/original/open-uri20171223-4-1b0dpkg?1514062734,"[{'hex_value': '#7A6B64', 'colour_name': '062 Pro Grege'}, {'hex_value': 'gray50', 'colour_name': '042 PRO GREY'}, {'hex_value': '#3D474A', 'colour_name': '082 Pro Anthracite'}, {'hex_value': '#2F2F34', 'colour_name': '092 PRO BLACK'}, {'hex_value': '#534862', 'colour_name': '182 PRO PURPLE'}, {'hex_value': '#354862', 'colour_name': '272 PRO BLUE'}, {'hex_value': '#323B57', 'colour_name': '282 Pro Navy'}, {'hex_value': '#60683D', 'colour_name': '472 PRO KHAKI'}, {'hex_value': '#5A4545', 'colour_name': '582 PRO BROWN'}, {'hex_value': '#55343D', 'colour_name': '772 Pro Mahogany'}]"
+706,dior,Diorshow Iconic,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0696100.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0696100-high-definition-lash-curler-mascara.html,https://www.dior.com,The first lash-lifting mascara by Dior.,,,mascara,[],2017-12-03T23:23:01.795Z,2017-12-23T20:58:54.054Z,http://makeup-api.herokuapp.com/api/v1/products/706.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/706/original/open-uri20171223-4-kkri6q?1514062733,"[{'hex_value': '#0A0C0D', 'colour_name': '090 Black'}, {'hex_value': '#4D6895', 'colour_name': '268 Navy'}, {'hex_value': '#5A413D', 'colour_name': '698 Chestnut'}]"
+705,dior,Diorshow Iconic Overcurl,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697170.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0697170-spectacular-volume-and-curl-professional-mascara.html,https://www.dior.com,Diorshow Iconic Overcurl pushes the limits of curl to the extreme.,,,mascara,[],2017-12-03T23:23:00.835Z,2017-12-23T20:58:53.809Z,http://makeup-api.herokuapp.com/api/v1/products/705.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/705/original/open-uri20171223-4-w711ik?1514062733,"[{'hex_value': 'gray2', 'colour_name': '090 Over Black'}, {'hex_value': '#20214E', 'colour_name': '264 Over Blue'}, {'hex_value': '#43332B', 'colour_name': '694 Over Brown'}]"
+704,dior,Dior Addict It-Lash,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0698100_v2.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0698100-fabulous-impact-vibrant-colour-volume-length-mascara.html,https://www.dior.com,"Dior Addict It-lash can transform the eyes in a single flourish for a fabulous impact, as if by magic. Volume, length and the most extraordinary stylistic effects come together to achieve a fashion-forward, modern-day doe-eyed look. With unconditional hold, easy to apply and easy to remove, it is the ideal mascara for women who want it all, and want it now.",,,mascara,[],2017-12-03T23:23:00.160Z,2017-12-23T20:58:53.372Z,http://makeup-api.herokuapp.com/api/v1/products/704.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/704/original/open-uri20171223-4-1543imh?1514062733,"[{'hex_value': 'black', 'colour_name': '092 It-Black'}]"
+703,dior,Diorshow New Look,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697100.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0697100-lash-multiplying-effect-volume-care.html,https://www.dior.com,Breathtaking eyes by Diorshow.,,,mascara,[],2017-12-03T23:22:59.125Z,2017-12-23T20:58:53.080Z,http://makeup-api.herokuapp.com/api/v1/products/703.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/703/original/open-uri20171223-4-19fm0l4?1514062732,"[{'hex_value': '#0A0C0D', 'colour_name': '090 New Look Black'}, {'hex_value': '#00011F', 'colour_name': '264 New Look Blue'}, {'hex_value': '#301800', 'colour_name': '694 New Look Brown'}]"
+702,dior,Diorshow Black Out,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0726100.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0726100-spectacular-volume-intense-black-khol-mascara.html,https://www.dior.com,Like kohl for the lashes. Diorshow Black Out recreates the captivating effect of kohl in a mascara for extreme volume with a charcoal-like finish.,,,mascara,[],2017-12-03T23:22:58.486Z,2017-12-23T20:58:52.891Z,http://makeup-api.herokuapp.com/api/v1/products/702.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/702/original/open-uri20171223-4-u6a3sc?1514062732,"[{'hex_value': '#0A0C0D', 'colour_name': '099 Kohl Black'}]"
+701,dior,DIORSHOW,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697400.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0697400-lash-extension-effect-volume-mascara.html,https://www.dior.com,"In 2015, Diorshow, the professional Dior Backstage mascara, is being renewed. Its new-generation formula enriched with microfibres optically reproduces the effect of lash extensions used by runway makeup artists.",,,mascara,[],2017-12-03T23:22:56.643Z,2017-12-23T20:58:43.998Z,http://makeup-api.herokuapp.com/api/v1/products/701.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/701/original/open-uri20171223-4-1o3625w?1514062723,"[{'hex_value': '#3D474A', 'colour_name': '088 Pro Anthracite'}, {'hex_value': '#020202', 'colour_name': '090 PRO BLACK'}, {'hex_value': '#45306F', 'colour_name': '168 PRO PURPLE'}, {'hex_value': '#071641', 'colour_name': '258 PRO BLUE'}, {'hex_value': '#323B57', 'colour_name': '288 Pro Navy'}, {'hex_value': '#402A14', 'colour_name': '698 PRO BROWN'}, {'hex_value': '#55343D', 'colour_name': '778 Pro Mahogany'}, {'hex_value': '#6E3650', 'colour_name': '868 Pro Magenta'}]"
+700,dior,DIORSHOW PUMP'N'VOLUME,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697600_inter.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/mascaras/pr-mascaras-y0697600-instant-oversize-volume-squeezable-mascara.html,https://www.dior.com,"Dior reinvents volume with Diorshow Pump 'N' Volume, a brand new mascara by the House, for a fringe of XXL lashes. Spectacular from every angle, this new Dior mascara revolutionizes volume-building application. Simply squeeze the flexible mascara tube to soften the ultra-volumizing formula and load the brush with the creamy product. Achieve extreme volume instantly!",,,mascara,[],2017-12-03T23:22:56.212Z,2017-12-23T20:58:43.664Z,http://makeup-api.herokuapp.com/api/v1/products/700.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/700/original/open-uri20171223-4-1vpmsud?1514062723,"[{'hex_value': 'black', 'colour_name': '090 Black Pump'}]"
+699,dior,Diorshow Maximizer 3D,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697970.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyes-primers/pr-eyeprimers-y0697970-triple-volume-plumping-lash-primer.html,https://www.dior.com,The exclusive Dior backstage mascara serum-primer thoroughly plumps lashes.,,,mascara,[],2017-12-03T23:22:55.591Z,2017-12-23T20:58:42.844Z,http://makeup-api.herokuapp.com/api/v1/products/699.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/699/original/open-uri20171223-4-yjxlwa?1514062722,[]
+698,dior,Holiday Diorshow Pump n' Volume Set,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185255_F918525500.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y9185255-oversize-couture-eye-makeup.html,https://www.dior.com,Discover the Couture eye makeup in a set by Dior:,,,eyeshadow,[],2017-12-03T23:22:54.088Z,2017-12-23T20:58:52.692Z,http://makeup-api.herokuapp.com/api/v1/products/698.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/698/original/open-uri20171223-4-t0oodf?1514062732,[]
+697,dior,Couture Colour Wardrobe palette,65.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185280_F918528000.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y9185280-holiday-multi-use-eyes-and-lips-palette.html,https://www.dior.com,"Directly inspired by runway shows, the Couture Colour Wardrobe palette teams fresh and natural colours with vibrant and sophisticated shades to create countless custom makeup looks to suit any moment.",,palette,eyeshadow,[],2017-12-03T23:22:53.414Z,2017-12-26T00:33:00.563Z,http://makeup-api.herokuapp.com/api/v1/products/697.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/697/original/open-uri20171223-4-1tgdgkb?1514062732,"[{'hex_value': '#C48A80', 'colour_name': '000'}]"
+696,dior,Colour Design Eye palette,45.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185290_F918529000.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y9185290-holiday-eyes-palette.html,https://www.dior.com,"Inspired by runway shows, the Colour Design Eye palette mixes glowy and iridescent colours with matte and confident shades, to recreate a natural nude or a sophisiticated glamour version of the catwalk look.",,palette,eyeshadow,[],2017-12-03T23:22:52.788Z,2017-12-26T00:33:00.504Z,http://makeup-api.herokuapp.com/api/v1/products/696.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/696/original/open-uri20171223-4-j71dzh?1514062732,"[{'hex_value': '#A18783', 'colour_name': '000'}]"
+695,dior,Eye Reviver,43.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929540.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/backstage-pros/eyes/pr-eyepros-y0929540-illuminating-neutrals-eye-palette.html,https://www.dior.com,"Dior has created its 1st illuminating palette to brighten the eyes with an instant radiance-boosting effect. Using Glow-MimeticsTM technology, the incredibly luminous universal neutrals recreate the radiance of a flawless eyelid. The shades combine in perfect harmony with the primer and liner to create smooth, even and wider-looking eyes, while adding structure and brightness.",,,eyeshadow,[],2017-12-03T23:22:52.370Z,2017-12-23T20:58:52.094Z,http://makeup-api.herokuapp.com/api/v1/products/695.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/695/original/open-uri20171223-4-a5l25v?1514062732,"[{'hex_value': '#A48473', 'colour_name': '001'}]"
+694,dior,5 COULEURS DESIGNER,45.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148140_f014814208_112016.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0148140-the-makeup-artist-tutorial-palette.html,https://www.dior.com,"Born of Backstage expertise, inspired by professional techniques and textures, 5 COULEURS DESIGNER features an easy, 5-step makeup lesson (base, 2 shadows, highlighter and liner) to bring out the eyes with flawless sculpting and colour gradation.",,,eyeshadow,[],2017-12-03T23:22:50.561Z,2017-12-23T20:58:51.822Z,http://makeup-api.herokuapp.com/api/v1/products/694.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/694/original/open-uri20171223-4-13spuxr?1514062731,"[{'hex_value': '#C1C0BF', 'colour_name': '008 SMOKY DESIGN'}, {'hex_value': '#C5C5CC', 'colour_name': '208 NAVY DESIGN'}, {'hex_value': '#CDC8BD', 'colour_name': '308 KHAKI DESIGN'}, {'hex_value': '#D4C3BD', 'colour_name': '508 NUDE PINK DESIGN'}, {'hex_value': '#D2C2B4', 'colour_name': '708 AMBER DESIGN'}, {'hex_value': '#CDBFB9', 'colour_name': '718 TAUPE DESIGN'}]"
+693,dior,5 COULEURS PRECIOUS ROCKS - Christmas 2017 Limited Edition,43.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148228_F014822857_v2.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0148223-high-fidelity-colours-effects-eyeshadow-palette.html,https://www.dior.com,"Emblematic of Dior eye makeup, this winter, the 5 Couleurs palette has been reinterpreted in two limited editions featuring ruby and emerald tones.",,,eyeshadow,[],2017-12-03T23:22:49.724Z,2017-12-23T20:58:51.579Z,http://makeup-api.herokuapp.com/api/v1/products/693.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/693/original/open-uri20171223-4-1psqtni?1514062731,"[{'hex_value': '#D7D8CC', 'colour_name': '347 Emerald'}, {'hex_value': '#DCC1BF', 'colour_name': '857 Ruby'}]"
+692,dior,5 COULEURS,45.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148410.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0148410-high-fidelity-colours-effects-eyeshadow-palette.html,https://www.dior.com,"An icon of the Dior look and a concentration of expertise in terms of colour and visual effects, the 5 Couleurs palette is reinvented. More creative than ever, with stronger pigments and richer effects, it allows women to explore every facet of colour and express every aspect of their personality. With the 5 Couleurs palette, self-expression is unlimited, creativity is unleashed and colour is more audacious than ever.",,,eyeshadow,[],2017-12-03T23:22:47.200Z,2017-12-23T20:58:51.384Z,http://makeup-api.herokuapp.com/api/v1/products/692.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/692/original/open-uri20171223-4-1ia7ngs?1514062731,"[{'hex_value': '#D9CED4', 'colour_name': '157 Magnify'}, {'hex_value': '#C5C9D1', 'colour_name': '277 Defy'}, {'hex_value': '#CFD1D1', 'colour_name': '357 Electrify'}, {'hex_value': '#E6D8D1', 'colour_name': '537 Touch'}, {'hex_value': '#DACFC9', 'colour_name': '567 Adore'}, {'hex_value': '#DCCBC3', 'colour_name': '647 Undress'}, {'hex_value': '#D8C9BC', 'colour_name': '657 Expose'}, {'hex_value': '#D9CDCE', 'colour_name': '757 Dream'}, {'hex_value': '#E2CCC7', 'colour_name': '767 Inflame'}, {'hex_value': '#E0CBC8', 'colour_name': '777 Exalt'}, {'hex_value': '#D1BFBA', 'colour_name': '797 Feel'}]"
+691,dior,Diorshow Mono,25.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0147160_f014716623.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0147160-professional-eye-shadow-spectacular-effects-long-wear.html,https://www.dior.com,"Diorshow Mono, the eyeshadow used by the Dior makeup artists, was inspired by the fabric textures of the brand's fashions - matte, silky, ultra-glittery and lamé - and features super-saturated hues to deck the eyes in long-lasting colors with radiant finishes.",,,eyeshadow,[],2017-12-03T23:22:42.681Z,2017-12-23T20:58:51.143Z,http://makeup-api.herokuapp.com/api/v1/products/691.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/691/original/open-uri20171223-4-1mp005c?1514062731,"[{'hex_value': '#E8E5DF', 'colour_name': '006 Infinity'}, {'hex_value': '#EED8BE', 'colour_name': '522'}, {'hex_value': '#8F7582', 'colour_name': '060'}, {'hex_value': '#BCBABB', 'colour_name': '026 Techno'}, {'hex_value': '#808285', 'colour_name': '071 Radical'}, {'hex_value': '#5D6265', 'colour_name': '081 Runway'}, {'hex_value': '#676D81', 'colour_name': '094 Gravity'}, {'hex_value': '#7B8094', 'colour_name': '173 Evening'}, {'hex_value': '#8E6688', 'colour_name': '184 Temptation'}, {'hex_value': '#ADB8D2', 'colour_name': '240 Air'}, {'hex_value': '#373C66', 'colour_name': '296 Show'}, {'hex_value': '#B3B478', 'colour_name': '480 Nature'}, {'hex_value': '#EDD8C0', 'colour_name': '516 Delicate'}, {'hex_value': '#E0B798', 'colour_name': '530 Gallery'}, {'hex_value': '#CAB6AB', 'colour_name': '554 Minimalism'}, {'hex_value': '#CFB289', 'colour_name': '564 Fire'}, {'hex_value': '#CDA284', 'colour_name': '573 Mineral'}, {'hex_value': '#7D625A', 'colour_name': '583 Animal'}, {'hex_value': '#F3E0B0', 'colour_name': '616 Pulse'}, {'hex_value': '#F2C9B1', 'colour_name': '623 Feeling'}, {'hex_value': '#D6AF98', 'colour_name': '658 Cosmopolite'}, {'hex_value': '#A77B60', 'colour_name': '684 Reflection'}, {'hex_value': '#A58887', 'colour_name': '756 Front Row'}, {'hex_value': '#DF8772', 'colour_name': '764 Fusion'}, {'hex_value': '#9A716C', 'colour_name': '794 Fever'}, {'hex_value': '#EBC3C9', 'colour_name': '826 Backstage'}, {'hex_value': '#E59EB9', 'colour_name': '848 Focus'}, {'hex_value': '#906B83', 'colour_name': '994 Power'}]"
+690,dior,Diorshow Fusion Mono Matte,0.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148310_F014831761_012016.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0148310-long-wear-professional-eyeshadow.html,https://www.dior.com,"A weightless texture that blends into the skin and dresses the eye in velvety colour. In a single step, it creates an even and intense matte finish for a professional makeup effect.",,,eyeshadow,[],2017-12-03T23:22:41.944Z,2017-12-23T20:58:50.955Z,http://makeup-api.herokuapp.com/api/v1/products/690.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/690/original/open-uri20171223-4-13ulolv?1514062730,"[{'hex_value': '#363A3E', 'colour_name': '091 Nocturne'}, {'hex_value': '#E5BAA8', 'colour_name': '721 Songe'}]"
+689,dior,Diorshow Fusion Mono,25.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148300_F014830821_012016.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0148300-long-wear-professional-mirror-shine-eyeshadow.html,https://www.dior.com,"A weightless texture that blends into the skin and dresses the eye in velvety colour. In a single step, it creates an even and intense matte finish for a professional makeup effect.",,,eyeshadow,[],2017-12-03T23:22:40.725Z,2017-12-23T20:58:50.521Z,http://makeup-api.herokuapp.com/api/v1/products/689.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/689/original/open-uri20171223-4-b1imkg?1514062730,"[{'hex_value': '#EDE9E6', 'colour_name': '001 Lune'}, {'hex_value': '#93867A', 'colour_name': '381 Millenium'}, {'hex_value': '#BD9171', 'colour_name': '661 Météore'}, {'hex_value': '#BD9E9B', 'colour_name': '771'}, {'hex_value': '#826A73', 'colour_name': '881 Hypnotique'}, {'hex_value': '#8B4E78', 'colour_name': '981'}]"
+688,dior,Backstage Eye Prime,22.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0146000_032016.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/eyes/eyeshadows/pr-eyeshadows-y0146000-10h-color-locking-and-crease-preventing-eyelid-primer.html,https://www.dior.com,The first eye primer from Dior Backstage. Its smoothing and unifying action immediately corrects and prepares the eyelid for maximum colour intensity.,,,eyeshadow,[],2017-12-03T23:22:40.273Z,2017-12-23T20:58:50.046Z,http://makeup-api.herokuapp.com/api/v1/products/688.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/688/original/open-uri20171223-4-1krajzv?1514062729,[]
+687,dior,Diorskin Rosy Glow,32.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715100.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/blush/pr-blush-y0715100_f071510001-healthy-glow-booster-blush.html,https://www.dior.com,"Rosy Glow reacts to the moisture in the skin to bring a delicate flush of colour to the cheeks. The fresh and luminous color upon application develops into a rosy blush to suit each individual complexion for an incredibly natural, custom healthy glow that lasts all day.",,,blush,[],2017-12-03T23:22:37.243Z,2017-12-23T20:58:49.221Z,http://makeup-api.herokuapp.com/api/v1/products/687.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/687/original/open-uri20171223-4-vrtkii?1514062729,"[{'hex_value': '#F1C0D7', 'colour_name': '001 Petal'}]"
+686,dior,DIORBLUSH PRECIOUS ROCKS - Christmas 2017 Limited Edition,0.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715928_F071592864.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0715928_f071592864-vibrant-colour-powderblush.html,https://www.dior.com,"The new limited-edition Diorblush showcases every facet of the Precious Rocks collection. Printed with a prismatic motif that reflects that of a precious stone, its sheer, peach colour blends seamlessly with your skin to deliver a fresh, crystal-clear complexion.",,,blush,[],2017-12-03T23:22:36.467Z,2017-12-23T20:58:48.998Z,http://makeup-api.herokuapp.com/api/v1/products/686.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/686/original/open-uri20171223-4-msf54n?1514062728,"[{'hex_value': '#EF8687', 'colour_name': '864 Precious Rocks'}]"
+685,dior,Diorblush Sculpt,32.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0716250.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/blush/pr-blush-y0716250_f071625001-professional-contouring-powder-blush.html,https://www.dior.com,"The first contouring blush by Dior, Diorblush Sculpt allows you to easily redefine the face’s structure and volumes with the precision of a makeup artist thanks to its two contrasting shades.",,,blush,[],2017-12-03T23:22:35.267Z,2017-12-23T20:58:48.814Z,http://makeup-api.herokuapp.com/api/v1/products/685.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/685/original/open-uri20171223-4-1p1tlsw?1514062728,"[{'hex_value': '#DA9A8E', 'colour_name': '001 Pink Shape'}, {'hex_value': '#D6A086', 'colour_name': '002 Coral Shape'}, {'hex_value': '#D3A895', 'colour_name': '003 Beige Contour'}, {'hex_value': '#C69E8A', 'colour_name': '004 Brown Contour'}]"
+684,dior,Diorblush,32.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715255.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/blush/pr-blush-y0715255_f071525556-vibrant-colour-powder-blush.html,https://www.dior.com,The iconic blush from the House of Dior: the new colour accessory for face makeup with style.,,,blush,[],2017-12-03T23:22:32.065Z,2017-12-23T20:58:48.374Z,http://makeup-api.herokuapp.com/api/v1/products/684.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/684/original/open-uri20171223-4-14490w0?1514062728,"[{'hex_value': '#EA8166', 'colour_name': '556 Amber Show'}, {'hex_value': '#E17D70', 'colour_name': '553 Cocktail Peach'}, {'hex_value': '#AB6F70', 'colour_name': '566 Brown Milly'}, {'hex_value': '#EF7A5B', 'colour_name': '586 Orange Riviera'}, {'hex_value': '#ED7167', 'colour_name': '676 Coral Cruise'}, {'hex_value': '#E6A397', 'colour_name': '746 Beige Nude'}, {'hex_value': '#EB8881', 'colour_name': '756 Rose Chérie'}, {'hex_value': '#F09BA1', 'colour_name': '829 Miss Pink'}, {'hex_value': '#C17E6A', 'colour_name': '849 Mimi Bronze'}, {'hex_value': '#EB81A5', 'colour_name': '861 Rose Darling'}, {'hex_value': '#EF7B88', 'colour_name': '876 Happy Cherry'}, {'hex_value': '#EB5E6D', 'colour_name': '889 New Red'}, {'hex_value': '#EB5C54', 'colour_name': '896 Redissimo'}, {'hex_value': '#D88D8C', 'colour_name': '939 Rose Libertine'}]"
+683,dior,Diorskin Nude Air Tan,36.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0712400.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/healthy-glow-makeup/pr-sunmakeup-y0712400_f071240001-healthy-glow-sun-powder.html,https://www.dior.com,"Diorskin Nude Air bronzing powders warm the original skin tone and let the skin breathe for the continual radiant beauty of a sun-kissed healthy glow. Choose the perfect shade of tan, in matte or satiny.",,,bronzer,[],2017-12-03T23:22:30.765Z,2017-12-23T20:58:49.791Z,http://makeup-api.herokuapp.com/api/v1/products/683.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/683/original/open-uri20171223-4-1nzl361?1514062729,"[{'hex_value': '#CD9163', 'colour_name': '001 Golden Honey'}, {'hex_value': '#CD9068', 'colour_name': '002 Amber'}, {'hex_value': '#D8996C', 'colour_name': '003 Cinnamon'}, {'hex_value': '#B17252', 'colour_name': '035 Matte Cinnamon'}]"
+682,dior,Diorskin Nude Air Glow Powder,39.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0778920.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/powders/pr-powders-y0778920_f077892001-healthy-glow-radiance-powder.html,https://www.dior.com,"A precursor in the art of natural, for beauty that grows more radiant with each day, Dior broadens its nude makeup expertise with the innovation of Diorskin Nude Air Glow Powder: a luminous powder as weightless and beneficial as a breath of fresh air that revives and illuminates the complexion's original colour and lets the skin breathe for a continuously healthy glow.",,powder,foundation,[],2017-12-03T23:22:29.631Z,2017-12-23T20:58:48.109Z,http://makeup-api.herokuapp.com/api/v1/products/682.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/682/original/open-uri20171223-4-1q5xbnc?1514062728,"[{'hex_value': '#D59A72', 'colour_name': '001 Fresh Tan'}, {'hex_value': '#D69D7B', 'colour_name': '002 Fresh Light'}, {'hex_value': '#DB9781', 'colour_name': '004 Warm Light'}]"
+681,dior,Diorskin Nude Air loose powder,36.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0720350.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/powders/pr-powders-y0720350_f072035010-healthy-glow-invisible-loose-powder.html,https://www.dior.com,"The ultimate finishing touch, impressively lightweight Diorskin Nude Air loose and compact powders maintain the illusion of a fresh and radiant face.",,powder,foundation,[],2017-12-03T23:22:28.576Z,2017-12-23T20:58:47.830Z,http://makeup-api.herokuapp.com/api/v1/products/681.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/681/original/open-uri20171223-4-1p8wv?1514062727,"[{'hex_value': '#FEE6CF', 'colour_name': '010 Ivory'}, {'hex_value': '#FCDEDD', 'colour_name': '012 Pink'}, {'hex_value': '#EFCEB0', 'colour_name': '020 Light Beige'}, {'hex_value': '#E8BA92', 'colour_name': '030 Medium Beige'}]"
+680,dior,Diorskin nude air powder,36.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0332400.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/powders/pr-powders-y0332400_f033240020-healthy-glow-invisible-powder.html,https://www.dior.com,"The ultimate finishing touch, impressively lightweight Diorskin Nude Air loose and compact powders maintain the illusion of a fresh and radiant face.",,powder,foundation,[],2017-12-03T23:22:27.744Z,2017-12-23T20:58:47.453Z,http://makeup-api.herokuapp.com/api/v1/products/680.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/680/original/open-uri20171223-4-qtckl4?1514062727,"[{'hex_value': '#E7BEA0', 'colour_name': '020 Light Beige'}, {'hex_value': '#DDAD84', 'colour_name': '030 Medium Beige'}]"
+679,dior,DIORIFIC PRECIOUS ROCKS - Christmas 2017 Limited Edition,40.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0719390_F071939001_v2.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0719390_f071939001-golden-glow-loose-powder.html,https://www.dior.com,"Diorific unveils a limited-edition gold loose powder. The finishing touch, Diorific Precious Rocks bathes your skin in a delicate glow and sculpts with a subtle, golden shimmer.",,powder,foundation,[],2017-12-03T23:22:26.968Z,2017-12-23T20:58:47.039Z,http://makeup-api.herokuapp.com/api/v1/products/679.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/679/original/open-uri20171223-4-fl8mwn?1514062726,"[{'hex_value': '#F3D7B2', 'colour_name': '001 Precious Rocks'}]"
+678,dior,Diorskin Forever & Ever Control Loose Powder,36.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0720700.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/powders/pr-powders-y0720700_f072070001-extreme-perfection-matte-finish-loose-powder.html,https://www.dior.com,"As a finishing touch, Diorskin Forever & Ever Control loose powder guarantees a long-lasting matte result. Its air-whipped texture in a universal shade leaves a weightless finish on the skin.",,powder,foundation,[],2017-12-03T23:22:26.353Z,2017-12-23T20:58:46.582Z,http://makeup-api.herokuapp.com/api/v1/products/678.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/678/original/open-uri20171223-4-1w1wmuf?1514062726,"[{'hex_value': '#E7D6CA', 'colour_name': '001'}]"
+677,dior,Fix It Colour,23.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929603_f092960100.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/primers/pr-primers-y0929603_f092960100-2-in-1-prime-colour-correct-face-eyes-lips.html,https://www.dior.com,"Inspired by Backstage makeup techniques, Dior invents its first multipurpose colour concealer: 1 stick, 2 textures, 3 application areas, 4 expert shades to target and neutralize the colour imperfections of the complexion and around the eye and lip contours.",,concealer,foundation,[],2017-12-03T23:22:24.860Z,2017-12-23T20:58:46.299Z,http://makeup-api.herokuapp.com/api/v1/products/677.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/677/original/open-uri20171223-4-16x99yk?1514062726,"[{'hex_value': '#D1D4E3', 'colour_name': '100 Blue'}, {'hex_value': '#EEC8B9', 'colour_name': '200 Apricot'}, {'hex_value': '#EBDBB9', 'colour_name': '300 Yellow'}, {'hex_value': '#CEDFC6', 'colour_name': '400 Green'}]"
+676,dior,Diorskin Forever Undercover,21.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0339200.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/concealers/pr-concealers-y0339200_f033920010-one-coat-camouflage-everlasting-concealer-waterproof.html,https://www.dior.com,"A veritable concentrate of Dior laboratories' expertise, this intuitive formula isn't afraid of a challenge: with a single stroke it provides instant camouflage for imperfections, water resistance and 8-hour** wear.",,concealer,foundation,[],2017-12-03T23:22:22.682Z,2017-12-23T20:58:46.032Z,http://makeup-api.herokuapp.com/api/v1/products/676.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/676/original/open-uri20171223-4-m191xo?1514062725,"[{'hex_value': '#E3CAB3', 'colour_name': '010 Ivory'}, {'hex_value': '#E8D1B7', 'colour_name': '011 Creme'}, {'hex_value': '#DCBDA1', 'colour_name': '020 Light Beige'}, {'hex_value': '#E8CBAC', 'colour_name': '021 Linen'}, {'hex_value': '#E4C5B1', 'colour_name': '022 Cameo'}, {'hex_value': '#D5B292', 'colour_name': '030 Medium Beige'}, {'hex_value': '#E7C4A1', 'colour_name': '031 Sand'}, {'hex_value': '#DFB693', 'colour_name': '033 Apricot Beige'}, {'hex_value': '#D0A783', 'colour_name': '040 Honey Beige'}, {'hex_value': '#C99364', 'colour_name': '050 Dark Beige'}, {'hex_value': '#B27854', 'colour_name': '060 Light Mocha'}]"
+675,dior,FIX IT,23.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929570.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/backstage-pros/complexion/pr-complexionpros-y0929570_f092957001-2-in-1-prime-conceal-face-eyes-lips.html,https://www.dior.com,"1 stick, 2 textures, 3 application areas.",,concealer,foundation,[],2017-12-03T23:22:21.441Z,2017-12-23T20:58:42.480Z,http://makeup-api.herokuapp.com/api/v1/products/675.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/675/original/open-uri20171223-4-vr9zss?1514062722,"[{'hex_value': '#F0D9C6', 'colour_name': '001 Light'}, {'hex_value': '#F0D4C2', 'colour_name': '002 Medium'}, {'hex_value': '#E4C4AD', 'colour_name': '003 Dark'}, {'hex_value': '#DEBEA3', 'colour_name': '025 Medium Beige'}]"
+674,dior,FLASH LUMINIZER,29.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0883558_F088075002.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/face/concealers/pr-concealers-y0883558_f088075500-radiance-booster-pen.html,https://www.dior.com,"Inspired by the lighting techniques used by Backstage makeup artists, Dior has created Flash Luminizer, the illuminator brush that enhances the complexion in a single click, for professional radiance.",,highlighter,foundation,[],2017-12-03T23:22:20.685Z,2017-12-23T20:59:04.893Z,http://makeup-api.herokuapp.com/api/v1/products/674.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/674/original/open-uri20171223-4-1wtdzyq?1514062744,"[{'hex_value': '#EAC4A6', 'colour_name': '500 Pearly Vanilla'}, {'hex_value': '#FACBBD', 'colour_name': '800 Pearly Pink'}]"
+673,dior,Dior Addict Lip Maximizer,25.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028670.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/gloss/pr-gloss-y0028670_f002867001-collagen-active-lip-gloss.html,https://www.dior.com,The first instant-volume gloss from Dior Backstage.,,lip_gloss,lipstick,[],2017-12-03T23:22:18.123Z,2017-12-23T20:58:45.684Z,http://makeup-api.herokuapp.com/api/v1/products/673.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/673/original/open-uri20171223-4-sia3yz?1514062725,"[{'hex_value': '#FADCDC', 'colour_name': '001 Pink'}, {'hex_value': '#F4C4C8', 'colour_name': '003 Sparkling'}]"
+672,dior,Dior Addict Ultra-Gloss,24.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0285300.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/gloss/pr-gloss-y0285300_f028530004-sensational-mirror-shine-hydra-plumping-volume.html,https://www.dior.com,"More than just a gloss, Dior Addict Ultra-Gloss is a lip plumper and gloss all in one.",,lip_gloss,lipstick,[],2017-12-03T23:22:12.664Z,2017-12-23T20:58:45.455Z,http://makeup-api.herokuapp.com/api/v1/products/672.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/672/original/open-uri20171223-4-1jr6g64?1514062725,"[{'hex_value': '#E0E4EA', 'colour_name': '004 Tiara'}, {'hex_value': '#E7CDB2', 'colour_name': '013 Mise en Dior'}, {'hex_value': '#D9B6AB', 'colour_name': '211'}, {'hex_value': '#F4A9A9', 'colour_name': '267 So Real'}, {'hex_value': '#F4A2A3', 'colour_name': '363 Nude'}, {'hex_value': '#EF9EB1', 'colour_name': '453 Sideral'}, {'hex_value': '#EDA5B9', 'colour_name': '465 Shock'}, {'hex_value': '#F0889D', 'colour_name': '553 Princess'}, {'hex_value': '#B87569', 'colour_name': '629 Mirrored'}, {'hex_value': '#E14148', 'colour_name': '643 Everdior'}, {'hex_value': '#EF7472', 'colour_name': '649 Nova'}, {'hex_value': '#EC7A86', 'colour_name': '653 Sequins'}, {'hex_value': '#F07B83', 'colour_name': '656 Cosmic'}, {'hex_value': '#DF445B', 'colour_name': '662 Diorling'}, {'hex_value': '#EA5071', 'colour_name': '664 New Wave'}, {'hex_value': '#DA5E6D', 'colour_name': '669'}, {'hex_value': '#E84280', 'colour_name': '673'}, {'hex_value': '#FE54A9', 'colour_name': '676 Cruise'}, {'hex_value': '#E15F7B', 'colour_name': '683 Chromic'}, {'hex_value': '#D04971', 'colour_name': '686 Fancy'}, {'hex_value': '#DB2B5D', 'colour_name': '765 Ultradior'}, {'hex_value': '#AD6164', 'colour_name': '785 Diorama'}]"
+671,dior,Cheek & Lip Glow,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0880550_112016.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/backstage-pros/lips/pr-lipspros-y0880550_f088055001-instant-blushing-rosy-tint.html,https://www.dior.com,Dior creates its first cheek and lip blush to create a flush of pink on the skin.,,,blush,[],2017-12-03T23:22:11.460Z,2017-12-23T20:58:49.448Z,http://makeup-api.herokuapp.com/api/v1/products/671.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/671/original/open-uri20171223-4-4vqvon?1514062729,"[{'hex_value': '#E1000F', 'colour_name': '001'}]"
+670,dior,DIORIFIC MATTE FLUID - Christmas Look 2017 Limited Edition,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0278001_F027800006_v2.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0278001_f027800005-lip-cheek-velvet-colour.html,https://www.dior.com,"A Dior essential, Diorific Matte Fluid tinges lips and cheeks with a matte texture in four exclusive shades.",,lipstick,lipstick,[],2017-12-03T23:22:10.711Z,2017-12-23T20:58:45.146Z,http://makeup-api.herokuapp.com/api/v1/products/670.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/670/original/open-uri20171223-4-f0oedq?1514062725,"[{'hex_value': '#AA6565', 'colour_name': '005 Charm'}, {'hex_value': '#910924', 'colour_name': '006 Glory'}]"
+669,dior,DIORIFIC KHÔL,29.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027647_F002764751.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0027647_f002764341-powder-lipstick-ultra-pigmented-long-wear-intensity.html,https://www.dior.com,"For the first time at Dior, Diorific is now available as Lip Khôl designed to adorn your lips in intense colour with a powdery, matte finish.",,lipstick,lipstick,[],2017-12-03T23:22:09.776Z,2017-12-23T20:58:44.968Z,http://makeup-api.herokuapp.com/api/v1/products/669.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/669/original/open-uri20171223-4-1r1wmbn?1514062724,"[{'hex_value': '#E17D79', 'colour_name': '341 Pure Topaz'}, {'hex_value': '#C95B86', 'colour_name': '671 Vibrant Tourmaline'}, {'hex_value': '#864640', 'colour_name': '741 Deep Ruby'}, {'hex_value': '#CD2E3A', 'colour_name': '751 Intense Garnet'}, {'hex_value': '#604751', 'colour_name': '991 Bold Amethyst'}]"
+668,dior,Diorific,29.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027600.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0027600_f002760005-haute-couture-long-wearing-lipstick.html,https://www.dior.com,"Diorific, the legendary lip accessory with an Haute Couture finish, holds the signature of Dior glamour in its jewel-like gold case.",,lipstick,lipstick,[],2017-12-03T23:22:07.996Z,2017-12-23T20:58:44.805Z,http://makeup-api.herokuapp.com/api/v1/products/668.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/668/original/open-uri20171223-4-19lz1tl?1514062724,"[{'hex_value': '#B55758', 'colour_name': '005 Glory'}, {'hex_value': '#C56C72', 'colour_name': '008 Mitzah'}, {'hex_value': '#E1857A', 'colour_name': '009 Award'}, {'hex_value': '#D00040', 'colour_name': '013 Ange Bleu'}, {'hex_value': '#E30F25', 'colour_name': '014 Dolce Vita'}, {'hex_value': '#A27977', 'colour_name': '015 Broadway'}, {'hex_value': '#CE3C2F', 'colour_name': '021 Icône'}, {'hex_value': '#D55B74', 'colour_name': '023 Diorella'}, {'hex_value': '#CE6063', 'colour_name': '024 Liz'}, {'hex_value': '#E87379', 'colour_name': '025 Diorissimo'}]"
+667,dior,Dior Addict Lipstick - Limited Edition,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028752.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0028752_f002875465-hydra-gel-core-mirror-shine.html,https://www.dior.com,Dior ushers in a new era in lip makeup with the breakthrough creation of a lipstick that boasts a hydra-gel core with a top coat effect for sensational mirror shine.,,lipstick,lipstick,[],2017-12-03T23:22:05.679Z,2017-12-23T20:58:44.647Z,http://makeup-api.herokuapp.com/api/v1/products/667.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/667/original/open-uri20171223-4-azwrgu?1514062724,"[{'hex_value': '#DC8E74', 'colour_name': '423 Minimal'}, {'hex_value': '#E2122D', 'colour_name': '853 Hype'}, {'hex_value': '#DC2144', 'colour_name': '875 Beverly Pink'}, {'hex_value': '#410000', 'colour_name': '955 Excessive'}, {'hex_value': '#EF768F', 'colour_name': '465 Cruise'}]"
+666,dior,Dior Addict Lipstick,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0028757_F002875435.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0028757_f002875435-hydra-gel-core-mirror-shine.html,https://www.dior.com,Dior ushers in a new era in lip makeup with the breakthrough creation of a lipstick that boasts a hydra-gel core with a top coat effect for sensational mirror shine.,,lipstick,lipstick,[],2017-12-03T23:22:00.358Z,2017-12-23T20:58:44.371Z,http://makeup-api.herokuapp.com/api/v1/products/666.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/666/original/open-uri20171223-4-ndh6nv?1514062724,"[{'hex_value': '#E32A67', 'colour_name': '885 Artsy'}, {'hex_value': '#C0011F', 'colour_name': '951 Too Much'}, {'hex_value': '#7A2335', 'colour_name': '967 Gotha'}, {'hex_value': '#CB0428', 'colour_name': '974 Rebellious'}, {'hex_value': '#F49E90', 'colour_name': '138 Purity'}, {'hex_value': '#D48A86', 'colour_name': '260 Bright'}, {'hex_value': '#F28F9B', 'colour_name': '266 Delight'}, {'hex_value': '#EF7775', 'colour_name': '334 Happy'}, {'hex_value': '#DB7F72', 'colour_name': '343 Spring Ball'}, {'hex_value': '#F07C6E', 'colour_name': '441 Frimousse'}, {'hex_value': '#EF7771', 'colour_name': '451 Tribale'}, {'hex_value': '#EB553E', 'colour_name': '532 So Electric'}, {'hex_value': '#C1807A', 'colour_name': '535 Tailleur Bar'}, {'hex_value': '#DD2B47', 'colour_name': '536 Lucky'}, {'hex_value': '#E98693', 'colour_name': '553 Smile'}, {'hex_value': '#E8485D', 'colour_name': '554 It Pink'}, {'hex_value': '#F18592', 'colour_name': '561 Wonderful'}, {'hex_value': '#DC485F', 'colour_name': '578 Diorkiss'}, {'hex_value': '#DF525F', 'colour_name': '579 Must-Have'}, {'hex_value': '#8F534E', 'colour_name': '612 City Lights'}, {'hex_value': '#9F4F4D', 'colour_name': '623 Not Shy'}, {'hex_value': '#EA4A44', 'colour_name': '639 Riviera'}, {'hex_value': '#E64B55', 'colour_name': '655 Mutine'}, {'hex_value': '#BC425F', 'colour_name': '680 After Party'}, {'hex_value': '#E9437C', 'colour_name': '685 Oversize'}, {'hex_value': '#E15F86', 'colour_name': '686 Fantasy'}, {'hex_value': '#AA5D57', 'colour_name': '722 True'}, {'hex_value': '#D30C19', 'colour_name': '745 New Look'}, {'hex_value': '#D50F38', 'colour_name': ""750 Rock'n Roll""}, {'hex_value': '#E83144', 'colour_name': '871 Power'}, {'hex_value': '#961D4B', 'colour_name': '881 Fashion Night'}, {'hex_value': '#C01552', 'colour_name': '976 Be Dior'}, {'hex_value': '#AC2B56', 'colour_name': '983 Insoumise'}, {'hex_value': '#3E0013', 'colour_name': '987 Black Tie'}, {'hex_value': '#F295A2', 'colour_name': '435 Dreamy'}]"
+665,dior,DIOR ADDICT LACQUER STICK,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028808.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0028808_f002880344-liquified-shine-saturated-lip-colour-weightless-wear.html,https://www.dior.com,"Try Dior Addict Lacquer Stick, the new-generation lacquer stick by Dior, as easy to apply as it is to wear. A stick with a ""lip fondant"" effect that liberates all the colour and shine of a lacquer, plus the comfort of a balm, with 6 hours* of wear and unrivaled texture.",,lipstick,lipstick,[],2017-12-03T23:21:56.663Z,2017-12-23T20:58:43.466Z,http://makeup-api.herokuapp.com/api/v1/products/665.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/665/original/open-uri20171223-4-tcsi74?1514062723,"[{'hex_value': '#F19183', 'colour_name': '344 Rolling'}, {'hex_value': '#A15C61', 'colour_name': '420 Underground'}, {'hex_value': '#EB636B', 'colour_name': '457 Palm Beach'}, {'hex_value': '#EB5C97', 'colour_name': '487 Bubble'}, {'hex_value': '#E47082', 'colour_name': '550 Tease'}, {'hex_value': '#EA5344', 'colour_name': '554 West Coast'}, {'hex_value': '#9E3F48', 'colour_name': '570 LA Pink'}, {'hex_value': '#C86378', 'colour_name': '577 Lazy'}, {'hex_value': '#8C3D3C', 'colour_name': '620 Poisonous'}, {'hex_value': '#D5305F', 'colour_name': '674 K-Kiss'}, {'hex_value': '#E60760', 'colour_name': '684 Diabolo'}, {'hex_value': '#902215', 'colour_name': '740 Club'}, {'hex_value': '#E51E1A', 'colour_name': '744 Party Red'}, {'hex_value': '#C20516', 'colour_name': '757 American Girl'}, {'hex_value': '#A01314', 'colour_name': '857 Hollywood Red'}, {'hex_value': '#C4032B', 'colour_name': '877 Turn Me Dior'}, {'hex_value': '#BB0E63', 'colour_name': '882 Sassy'}, {'hex_value': '#391E1C', 'colour_name': '904 Black Coffee'}, {'hex_value': '#602127', 'colour_name': '924 Sauvage'}, {'hex_value': '#751E41', 'colour_name': '984 Dark Flower'}]"
+664,dior,DIOR ADDICT LIP TATTOO,25.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0028967_v4.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0028967_f002896421-coloured-tint-bare-lip-sensation-extreme-weightless-wear.html,https://www.dior.com,"Dior Addict Lip Tattoo, the first long wear lip tint by Dior, is about to shake up your makeup routine. With its 10-hour hold*, comfortable formula and weightless ""no transfer"" finish, the colour fuses to the lips like a tattoo just seconds after application.",,lip_gloss,lipstick,[],2017-12-03T23:21:54.822Z,2017-12-23T20:58:45.860Z,http://makeup-api.herokuapp.com/api/v1/products/664.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/664/original/open-uri20171223-4-1mdas12?1514062725,"[{'hex_value': '#AD5F56', 'colour_name': '421 Natural Beige'}, {'hex_value': '#E55461', 'colour_name': '451 Natural Coral'}, {'hex_value': '#A76165', 'colour_name': '491 Natural Rosewood'}, {'hex_value': '#E13D5D', 'colour_name': '761 Natural Cherry'}, {'hex_value': '#974249', 'colour_name': '771 Natural Berry'}, {'hex_value': '#EC6292', 'colour_name': '881 Natural Pink'}]"
+663,dior,ROUGE DIOR COLLECTION COUTURE - Christmas Look 2017 Limited Edition,29.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027859_F002785999.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/precious-rocks-collection/pr-preciousrockslook-y0027859_f002785999-jewel-lipstick-couture-colour-comfort-wear.html,https://www.dior.com,"The must-have of the collection, Rouge Dior has been reinterpreted for the holiday season, with the Bijou edition of the 999 Matte shade featuring a faceted cannage band.",,lipstick,lipstick,[],2017-12-03T23:21:53.603Z,2017-12-23T20:58:43.097Z,http://makeup-api.herokuapp.com/api/v1/products/663.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/663/original/open-uri20171223-4-sznyox?1514062723,"[{'hex_value': '#BA1B2B', 'colour_name': '999 Matte'}]"
+662,dior,Dior Holiday Couture Collection,77.0,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185275_F918527500.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y9185275_f918527500-rouge-dior-colour-lipstick-trio.html,https://www.dior.com,"A couture makeup bag with a selection of three iconic Rouge Dior lipsticks to suit any occasion: two different rosy shades with a satiny finish for a romantic look, and the matte version of the famous 999 for flamboyant lips.",,lipstick,lipstick,[],2017-12-03T23:21:53.130Z,2017-12-23T20:58:42.309Z,http://makeup-api.herokuapp.com/api/v1/products/662.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/662/original/open-uri20171223-4-b9oitk?1514062722,[]
+661,dior,ROUGE DIOR - Fall 2017 Limited Edition,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027837.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/look-exclusives/metallics-collection/pr-metallicslook-y0027837_f002784426-couture-colour-lipstick-comfort-wear.html,https://www.dior.com,"Designed by Peter Philips to combine with the opulent hues and metallic effects on the eyes, face and nails, the six new Rouge Dior shades for fall 2017 flaunt strong beauty with a distinguished chic style. Its iconic formula offering 16 hours of comfort* ensures that women feel good, regardless of the colour or finish chosen.",,lipstick,lipstick,[],2017-12-03T23:21:52.127Z,2017-12-23T20:58:42.069Z,http://makeup-api.herokuapp.com/api/v1/products/661.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/661/original/open-uri20171223-4-10ntph3?1514062721,"[{'hex_value': '#D58F7F', 'colour_name': '426 Sensual Matte'}, {'hex_value': '#B76566', 'colour_name': '481 Hypnotic Matte'}, {'hex_value': '#B52237', 'colour_name': '861 Sophisticated Matte '}, {'hex_value': '#A82628', 'colour_name': '999 Metallic'}]"
+660,dior,Rouge Dior,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027830.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0027830_f002783028-couture-colour-from-satin-to-matte-comfort-wear.html,https://www.dior.com,"With Rouge Dior and its 16h* comfort cult formula, women feel good, no matter the colour, no matter the satin or matte finish.",,lipstick,lipstick,[],2017-12-03T23:21:45.703Z,2017-12-23T20:58:41.827Z,http://makeup-api.herokuapp.com/api/v1/products/660.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/660/original/open-uri20171223-4-19og9mv?1514062721,"[{'hex_value': '#E83F4A', 'colour_name': '028 Actrice'}, {'hex_value': '#E40068', 'colour_name': '047 Miss'}, {'hex_value': '#D36179', 'colour_name': '060 Première'}, {'hex_value': '#D91920', 'colour_name': '080 Red Smile'}, {'hex_value': '#BBC3C2', 'colour_name': '207 Montaigne Matte'}, {'hex_value': '#D07866', 'colour_name': '219 Rose Montaigne'}, {'hex_value': '#DB7096', 'colour_name': '277 Osée'}, {'hex_value': '#E06E6D', 'colour_name': '365 New World'}, {'hex_value': '#CA6863', 'colour_name': '414 Saint Germain'}, {'hex_value': '#AD5E56', 'colour_name': '434 Promenade'}, {'hex_value': '#C15961', 'colour_name': '458 Paris'}, {'hex_value': '#E4003E', 'colour_name': '520 Feel Good'}, {'hex_value': '#2E4763', 'colour_name': '602 Visionary Matte'}, {'hex_value': '#EB5959', 'colour_name': '634 Strong Matte'}, {'hex_value': '#EA5156', 'colour_name': '642 Ready'}, {'hex_value': '#E84618', 'colour_name': '643 Stand Out'}, {'hex_value': '#B73E42', 'colour_name': '644 Sydney'}, {'hex_value': '#ED6C7E', 'colour_name': '652 Euphoric Matte'}, {'hex_value': '#D0546B', 'colour_name': '663 Désir'}, {'hex_value': '#CC4A6B', 'colour_name': '678 Culte'}, {'hex_value': '#BC5553', 'colour_name': '683 Rendez-Vous'}, {'hex_value': '#A41220', 'colour_name': '743 Rouge Zinnia'}, {'hex_value': '#CF1D58', 'colour_name': '766 Rose Harpers'}, {'hex_value': '#E96C81', 'colour_name': '771 Radiant Matte'}, {'hex_value': '#CB7A84', 'colour_name': '772 Classic Matte'}, {'hex_value': '#E1244B', 'colour_name': '775 Darling'}, {'hex_value': '#E6699D', 'colour_name': '787 Exuberant Matte'}, {'hex_value': '#96518F', 'colour_name': '789 Superstitious Matte'}, {'hex_value': '#E0262F', 'colour_name': '844 Trafalgar'}, {'hex_value': '#AD0F1C', 'colour_name': '872 Victoire'}, {'hex_value': '#BC4B76', 'colour_name': '897 Mysterious Matte'}, {'hex_value': '#86556D', 'colour_name': '962 Poison Matte'}, {'hex_value': '#A05357', 'colour_name': '964 Ambitious Matte'}, {'hex_value': '#BE030E', 'colour_name': '999'}, {'hex_value': '#CC424D', 'colour_name': '999 Matte'}, {'hex_value': '#DB6F6D', 'colour_name': '343 Panaréa'}]"
+659,dior,Rouge Dior Double Rouge,27.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027279.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0027279_f002727288-matte-metal-colour-couture-contour-lipstick.html,https://www.dior.com,"Inspired by professional techniques, Double Rouge combines two makeup trends: matte and metal.",,lipstick,lipstick,[],2017-12-03T23:21:43.664Z,2017-12-23T20:58:41.645Z,http://makeup-api.herokuapp.com/api/v1/products/659.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/659/original/open-uri20171223-4-14wnn4c?1514062721,"[{'hex_value': '#F09E94', 'colour_name': '288 MISS CRUSH'}, {'hex_value': '#B48D86', 'colour_name': '510 JUNGLE BEIGE'}, {'hex_value': '#E97048', 'colour_name': '534 TEMPTING TANGERINE'}, {'hex_value': '#DD7F9C', 'colour_name': '582 SPICY SWEET'}, {'hex_value': '#925970', 'colour_name': '992 POISON PURPLE'}, {'hex_value': '#BD3C3C', 'colour_name': '999 MATTE METAL'}]"
+658,dior,Rouge Dior Liquid,26.5,£,GBP,https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027269.jpg,https://www.dior.com/beauty/en_gb/fragrance-beauty/makeup/lips/lipsticks/pr-lipsticks-y0027269_f002726162-liquid-lip-stain.-intense-couture-colour.-extreme-long-wear.-3-effects-matte-metal-satin.html,https://www.dior.com,"Rouge Dior has yet again been reinvented with the first liquid lipstick formula by Dior with multiple effects and surprising colour impact. Coverage, 12h* long wear and comfort: a true gem available in 3 vibrant finishes – matte, metal and satin.",,lipstick,lipstick,[],2017-12-03T23:07:49.795Z,2017-12-23T20:58:41.306Z,http://makeup-api.herokuapp.com/api/v1/products/658.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/658/original/open-uri20171223-4-1c7npm6?1514062721,"[{'hex_value': '#F08885', 'colour_name': '162 MISS SATIN'}, {'hex_value': '#C27F75', 'colour_name': '221 CHIC MATTE'}, {'hex_value': '#DA6272', 'colour_name': '265 FURY MATTE'}, {'hex_value': '#D17B67', 'colour_name': '334 VIBRANT METAL'}, {'hex_value': '#CB657E', 'colour_name': '375 SPICY METAL'}, {'hex_value': '#C16863', 'colour_name': '427 DELICATE SATIN'}, {'hex_value': '#E2544C', 'colour_name': '442 IMPETUOUS SATIN'}, {'hex_value': '#925738', 'colour_name': '515 SCANDALOUS METAL'}, {'hex_value': '#AA584E', 'colour_name': '527 RECKLESS MATTE'}, {'hex_value': '#CE354A', 'colour_name': '565 VERSATILE SATIN'}, {'hex_value': '#AB5E6A', 'colour_name': '574 LIVELY MATTE'}, {'hex_value': '#D3CFD2', 'colour_name': '601 HOLOGLAM'}, {'hex_value': '#AF695C', 'colour_name': '614 JUNGLE MATTE'}, {'hex_value': '#914047', 'colour_name': '625 MYSTERIOUS MATTE'}, {'hex_value': '#E43F1E', 'colour_name': '658 EXTREME MATTE'}, {'hex_value': '#CC4735', 'colour_name': ""751 ROCK'N'METAL""}, {'hex_value': '#D32759', 'colour_name': '788 FRENETIC SATIN'}, {'hex_value': '#A50C46', 'colour_name': '797 SAVAGE MATTE'}, {'hex_value': '#6F0F2B', 'colour_name': '862 HECTIC MATTE'}, {'hex_value': '#652832', 'colour_name': '895 FAB SATIN'}, {'hex_value': '#3B2427', 'colour_name': '901 OXBLOOD MATTE'}, {'hex_value': '#292324', 'colour_name': '908 BLACK MATTE'}, {'hex_value': '#791D26', 'colour_name': '979 POISON METAL'}, {'hex_value': '#C51215', 'colour_name': '999 MATTE'}]"
+657,iman,Cover Cream Clay Medium Deep,,,,http://imancosmetics.com/resources/uploads/product_colors/bf6fb914366ec31a747de52909cfcadb.jpg,http://imancosmetics.com/shop/products/face/cover-cream/clay-medium-deep,http://imancosmetics.com/,"0.1 oz (3g) Flawless-finish concealer camouflages under-eye circles, blemishes and skin tone imperfections. ",,cream,foundation,[],2016-10-03T14:05:54.117Z,2017-12-23T21:08:12.239Z,http://makeup-api.herokuapp.com/api/v1/products/657.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/657/original/open-uri20171223-4-18jjmxw?1514063292,"[{'hex_value': '#e5ae86', 'colour_name': 'Sand Medium'}, {'hex_value': '#ac703d', 'colour_name': 'Clay Medium'}, {'hex_value': '#9e6209', 'colour_name': 'Clay Medium Deep'}, {'hex_value': '#793f0d', 'colour_name': 'Earth Medium'}, {'hex_value': '#64300a', 'colour_name': 'Earth Deep'}]"
+656,iman,Corrective Concealer Clay,,,,http://imancosmetics.com/resources/uploads/product_colors/85a2fea7e732950138372ef267748a36.jpg,http://imancosmetics.com/shop/products/face/corrective-concealer/clay,http://imancosmetics.com/,"0.17 oz Silky and creamy formula smoothes on, covering dark circles, and tiny imperfections. ",,concealer,foundation,[],2016-10-03T14:05:47.976Z,2017-12-23T21:08:06.217Z,http://makeup-api.herokuapp.com/api/v1/products/656.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/656/original/open-uri20171223-4-1ud5zs?1514063286,"[{'hex_value': '#c47b4d', 'colour_name': 'Clay'}, {'hex_value': '#8f5628', 'colour_name': 'Earth'}]"
+655,iman,CC Correct & Cover Clay Medium Deep,,,,http://imancosmetics.com/resources/uploads/product_colors/CC_Creme-Medium-Deep_Ecom.jpg,http://imancosmetics.com/shop/products/skincare/cc-creme/clay-medium-deep,http://imancosmetics.com/,"0.14oz Transforms from powder to cream and corrects with Skin Tone Evener complex, extracts and vitamins. ",,bb_cc,foundation,[],2016-10-03T14:05:41.669Z,2017-12-23T21:08:06.038Z,http://makeup-api.herokuapp.com/api/v1/products/655.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/655/original/open-uri20171223-4-1hvtjel?1514063285,"[{'hex_value': '#e9b88b', 'colour_name': 'Sand Medium'}, {'hex_value': '#cea176', 'colour_name': 'Clay Medium'}, {'hex_value': '#a0672e', 'colour_name': 'Clay Medium Deep'}, {'hex_value': '#9c6018', 'colour_name': 'Earth Medium'}, {'hex_value': '#784311', 'colour_name': 'Earth Deep'}]"
+654,iman,Luxury Blushing Powder Posh,,,,http://imancosmetics.com/resources/uploads/product_colors/786cee296437aad03a74bba37a11f2a2.jpg,http://imancosmetics.com/shop/products/face/blush/posh,http://imancosmetics.com/,"0.11oz (3g) Silky powder blush that provides true color with a natural looking, long-lasting finish. Made in China. ",,powder,blush,[],2016-10-03T14:05:36.814Z,2017-12-23T21:08:03.598Z,http://makeup-api.herokuapp.com/api/v1/products/654.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/654/original/open-uri20171223-4-zp7vbi?1514063283,"[{'hex_value': '#d55c67', 'colour_name': 'Posh'}, {'hex_value': '#ad444a', 'colour_name': 'Peace'}, {'hex_value': '#e38069', 'colour_name': 'Allure'}, {'hex_value': '#b06037', 'colour_name': 'Sunlit Copper'}, {'hex_value': '#6e3b18', 'colour_name': 'Sable'}]"
+653,iman,Skin Tone Evener BB Crème Clay Medium,,,,https://s3.amazonaws.com/imancosmetics.com/resources/uploads/product_colors/a35f689153e4120726821fc42e27a2cc.jpg,http://imancosmetics.com/shop/products/skincare/bb-creme/clay-medium,http://imancosmetics.com/,"1.0 fl oz Skin tone evening Beauty Balm combines skin care and a sheer hint of color that compliments the natural tones of Women with Skin of Color. IMAN Skin Tone Evener Complex, Licorice, Grape Seed, Kokum, Almond, Aloe and Vitamins A,E & C. ",,bb_cc,foundation,[],2016-10-03T14:05:32.141Z,2017-12-23T21:05:06.234Z,http://makeup-api.herokuapp.com/api/v1/products/653.json,/images/original/missing.png,"[{'hex_value': '#F2B791', 'colour_name': 'Sand Light'}, {'hex_value': '#ECAD79', 'colour_name': 'Sand Medium'}, {'hex_value': '#DD925F', 'colour_name': 'Clay Medium'}, {'hex_value': '#C77E4D', 'colour_name': 'Clay Medium Deep'}, {'hex_value': '#965831', 'colour_name': 'Earth Medium'}, {'hex_value': '#7C4B2D', 'colour_name': 'Earth Deep'}]"
+652,iman,Perfect Eye Pencil Deception,,,,http://imancosmetics.com/resources/uploads/product_colors/EyeshadowPencil_Deception1.jpg,http://imancosmetics.com/shop/products/eyes/eyeshadow-pencil/deception,http://imancosmetics.com/,12 oz (3.4 g) Color your way to beautiful with New IMAN luxury eye shadow pencils. Long wearing eye shadow. Ease of a pencil. Made in China. ,,pencil,eyeshadow,[],2016-10-03T14:05:27.197Z,2017-12-23T20:51:32.548Z,http://makeup-api.herokuapp.com/api/v1/products/652.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/652/original/open-uri20171223-4-7ukmnr?1514062292,"[{'hex_value': '#F1C6A7', 'colour_name': 'Intrigue'}, {'hex_value': '#C88242', 'colour_name': 'Desire'}, {'hex_value': '#00594F', 'colour_name': 'Deception'}, {'hex_value': '#003865', 'colour_name': 'Forbidden'}, {'hex_value': '#3F2A56', 'colour_name': 'Seduction'}, {'hex_value': '#1D252D', 'colour_name': 'Mystery'}]"
+651,iman,Volumize Mascara Black Ink,,,,http://imancosmetics.com/resources/uploads/product_colors/53e470d05bb1531b758c4ed0f6063812.jpg,http://imancosmetics.com/shop/products/eyes/volumize-mascara/black-ink,http://imancosmetics.com/,"24 oz (7 g) Thick, provocative lashes for a full and sexy flutter. Enhanced with Jojoba and Vitamin E for rich, luscious conditioning. ",,,mascara,[],2016-10-03T14:05:21.976Z,2017-12-23T20:51:31.915Z,http://makeup-api.herokuapp.com/api/v1/products/651.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/651/original/open-uri20171223-4-u1qkzm?1514062291,[]
+650,iman,Perfect Mascara Black,,,,http://imancosmetics.com/resources/uploads/product_colors/708992b9f3326d3565424001d44af67d.jpg,http://imancosmetics.com/shop/products/eyes/perfect-mascara/black,http://imancosmetics.com/,"0.3oz (8g) Thickens, lengthens and separates lashes ",,,mascara,[],2016-10-03T14:05:16.516Z,2017-12-23T20:51:29.342Z,http://makeup-api.herokuapp.com/api/v1/products/650.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/650/original/open-uri20171223-4-ml7tt0?1514062289,[]
+649,iman,Amplify Mascara Black Ink,,,,http://imancosmetics.com/resources/uploads/product_colors/081fb8969ded21fd9beda8000e61c460.jpg,http://imancosmetics.com/shop/products/eyes/amplify-mascara/black-ink,http://imancosmetics.com/,"24oz (7g) Thickens, lengthens & separates lashes. Extends and amplifies each lash, so even the tiniest lashes will not be denied. ",,,mascara,[],2016-10-03T14:05:11.236Z,2017-12-23T20:51:28.535Z,http://makeup-api.herokuapp.com/api/v1/products/649.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/649/original/open-uri20171223-4-10cz7j2?1514062288,[]
+648,iman,Perfect Eyebrow Pencil Blackest Brown,,,,http://imancosmetics.com/resources/uploads/product_colors/1a62206fbf4800fd0cc9e6690ae7aa9d.jpg,http://imancosmetics.com/shop/products/eyes/browpencil/blackest-brown,http://imancosmetics.com/,0.05oz (1.5g) Versatile new product that combines the precise definition of an eye liner and the silky application of an eye shadow and the pearlescent finish of a shimmer powder. Made in China. ,,,eyebrow,[],2016-10-03T14:05:06.144Z,2017-12-23T20:51:28.352Z,http://makeup-api.herokuapp.com/api/v1/products/648.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/648/original/open-uri20171223-4-1tf53ma?1514062288,[]
+647,iman,Perfect Eye Pencil Ebony,,,,http://imancosmetics.com/resources/uploads/product_colors/EyePencil_Ebony.jpg,http://imancosmetics.com/shop/products/eyes/eyepencil/ebony,http://imancosmetics.com/,0.05oz (1.5g) Expertly defines & lines eyes. Made in USA. ,,pencil,eyeliner,[],2016-10-03T14:05:00.721Z,2017-12-23T20:51:24.963Z,http://makeup-api.herokuapp.com/api/v1/products/647.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/647/original/open-uri20171223-4-1glzvo5?1514062284,"[{'hex_value': '#283434', 'colour_name': 'Black Shimmer'}, {'hex_value': '#583939', 'colour_name': 'Nut Bush'}, {'hex_value': '#000000', 'colour_name': 'Jet Black'}]"
+646,iman,Luxury Moisturizing Lipstick IMAN Nude,,,,http://imancosmetics.com/resources/uploads/product_colors/d7bbcae0b6eff8013fda0a15280037c4.jpg,http://imancosmetics.com/shop/products/lips/lipstick/iman-nude,http://imancosmetics.com/,"13oz (3.7g) Luscious creamy, semi-matte lip color for full coverage and a long-lasting smooth finish. Made in China. ",,lipstick,lipstick,[],2016-10-03T14:04:54.792Z,2017-12-23T20:51:22.894Z,http://makeup-api.herokuapp.com/api/v1/products/646.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/646/original/open-uri20171223-4-nxq9so?1514062282,"[{'hex_value': '#d27d56', 'colour_name': 'NEW IMAN Nude'}, {'hex_value': '#c26256', 'colour_name': 'NEW Baby Doll'}, {'hex_value': '#b5432a', 'colour_name': 'NEW Hipster'}, {'hex_value': '#a43a44', 'colour_name': 'NEW Diva'}, {'hex_value': '#632528', 'colour_name': 'NEW Drama Queen'}, {'hex_value': '#602714', 'colour_name': 'NEW Rebel'}, {'hex_value': '#c47636', 'colour_name': 'Sheer Gold'}, {'hex_value': '#a17e49', 'colour_name': 'Citron'}, {'hex_value': '#ff4814', 'colour_name': 'Hot'}, {'hex_value': '#f4436d', 'colour_name': 'Kinky Pink'}, {'hex_value': '#b15336', 'colour_name': 'Paprika'}, {'hex_value': '#d71d32', 'colour_name': 'Iman Red'}, {'hex_value': '#af0061', 'colour_name': 'Flirtatious'}, {'hex_value': '#a32136', 'colour_name': 'Scandalous'}, {'hex_value': '#874e41', 'colour_name': 'Sheer Ice Tea'}, {'hex_value': '#6a494c', 'colour_name': 'Opal'}, {'hex_value': '#73308b', 'colour_name': 'Taboo'}, {'hex_value': '#734942', 'colour_name': 'Jaguar'}, {'hex_value': '#651738', 'colour_name': 'Wild Thing'}, {'hex_value': '#52182c', 'colour_name': 'Black Brandy'}]"
+645,iman,Luxury Eye Shadow Bejeweled,,,,http://imancosmetics.com/resources/uploads/product_colors/EyeShadow_Bejeweled.jpg,http://imancosmetics.com/shop/products/eyes/eyeshadow/bejeweled,http://imancosmetics.com/,"0.05oz (1.42g) Silky, long-lasting crease-resistant formula crease resistant wear in true-color mattes, and low luster pearls. Made in China. ",,,eyeshadow,[],2016-10-03T14:04:49.180Z,2017-12-23T20:51:19.960Z,http://makeup-api.herokuapp.com/api/v1/products/645.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/645/original/open-uri20171223-4-a3piee?1514062279,"[{'hex_value': '#ffd9ac', 'colour_name': 'White Gold'}, {'hex_value': '#bc8473', 'colour_name': 'Mixed Metal'}, {'hex_value': '#e8e7e3', 'colour_name': 'Mixed Metal'}, {'hex_value': '#6e4e40', 'colour_name': 'Hot Chocolate'}, {'hex_value': '#dbbdb4', 'colour_name': 'Hot Chocolate'}, {'hex_value': '#874d25', 'colour_name': 'Bejeweled'}, {'hex_value': '#de9d7c', 'colour_name': 'Bejeweled'}, {'hex_value': '#99978d', 'colour_name': 'Pewter'}, {'hex_value': '#a05d42', 'colour_name': 'Nutmeg'}, {'hex_value': '#9a6758', 'colour_name': 'Tiger Eye'}, {'hex_value': '#543227', 'colour_name': 'Bronze Goddess'}, {'hex_value': '#b27866', 'colour_name': 'Bronze Goddess'}, {'hex_value': '#7c735b', 'colour_name': 'Safari'}, {'hex_value': '#6b5a73', 'colour_name': 'African Violet'}]"
+644,benefit,the POREfessional: agent zero shine,39.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/porefessional-agent-zero-shine-component0.png?itok=hs_TMG5b,https://www.benefitcosmetics.com/ca/en-gb/product/porefessional-agent-zero-shine,https://www.benefitcosmetics.com,shine-vanishing PRO powder,,powder,foundation,[],2016-10-02T11:37:27.772Z,2017-12-23T20:42:45.094Z,http://makeup-api.herokuapp.com/api/v1/products/644.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/644/original/open-uri20171223-4-1864ho4?1514061765,[]
+643,benefit,hello flawless! powder foundation,44.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hello-flawless-component0_2.png?itok=uXFWqH_i,https://www.benefitcosmetics.com/ca/en-gb/product/hello-flawless,https://www.benefitcosmetics.com,custom powder cover-up,,powder,foundation,[],2016-10-02T11:37:27.384Z,2017-12-23T20:42:44.866Z,http://makeup-api.herokuapp.com/api/v1/products/643.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/643/original/open-uri20171223-4-16i2mi8?1514061764,"[{'hex_value': '#f4dac4', 'colour_name': 'ivory'}, {'hex_value': '#f1d3b5', 'colour_name': 'petal'}, {'hex_value': '#f9d9be', 'colour_name': 'champagne'}, {'hex_value': '#f4d4bb', 'colour_name': 'honey'}, {'hex_value': '#ecba97', 'colour_name': 'beige'}, {'hex_value': '#f9be8a', 'colour_name': 'toasted beige'}, {'hex_value': '#fbb171', 'colour_name': 'amber'}, {'hex_value': '#dc8e5a', 'colour_name': 'hazelnut'}, {'hex_value': '#cf743b', 'colour_name': 'nutmeg'}]"
+641,benefit,dallas dusty rose face powder,36.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dallas-component2.png?itok=faVNQISZ,https://www.benefitcosmetics.com/ca/en-gb/product/dallas,https://www.benefitcosmetics.com,an outdoor glow for an indoor gal face powder,,,bronzer,[],2016-10-02T11:37:26.889Z,2017-12-23T20:42:44.364Z,http://makeup-api.herokuapp.com/api/v1/products/641.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/641/original/open-uri20171223-4-1yca462?1514061764,"[{'hex_value': '#CE9990', 'colour_name': None}]"
+640,benefit,rockateur,36.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/rockateur-component0_0.png?itok=v8BJdMkW,https://www.benefitcosmetics.com/ca/en-gb/product/rockateur,https://www.benefitcosmetics.com,famously provocative cheek powder,,,bronzer,[],2016-10-02T11:37:26.651Z,2017-12-23T20:42:44.129Z,http://makeup-api.herokuapp.com/api/v1/products/640.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/640/original/open-uri20171223-4-11ws6ld?1514061764,[]
+639,benefit,cheekathon bronzer & blush palette,75.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/cheekathon-blush-kit-component.png?itok=6ih0smf9,https://www.benefitcosmetics.com/ca/en-gb/product/cheekathon,https://www.benefitcosmetics.com,“kick up your cheeks” blush kit,,,bronzer,[],2016-10-02T11:37:26.478Z,2017-12-23T20:42:43.806Z,http://makeup-api.herokuapp.com/api/v1/products/639.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/639/original/open-uri20171223-4-1uw9qxu?1514061763,[]
+638,benefit,hoola matte bronzer travel size mini,20.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-bop-travel-size-mini-component.png?itok=LKwNE-XE,https://www.benefitcosmetics.com/ca/en-gb/product/hoola-travel-size-mini,https://www.benefitcosmetics.com,bronzing powder,,,bronzer,[],2016-10-02T11:37:26.224Z,2017-12-23T20:42:43.525Z,http://makeup-api.herokuapp.com/api/v1/products/638.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/638/original/open-uri20171223-4-6yj6jk?1514061763,[]
+637,benefit,dew the hoola liquid bronzer,36.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dew-the-hoola-component.png?itok=gu3O77Hr,https://www.benefitcosmetics.com/ca/en-gb/product/dew-the-hoola,https://www.benefitcosmetics.com,soft-matte liquid bronzer for face,,,bronzer,[],2016-10-02T11:37:25.992Z,2017-12-23T20:42:43.271Z,http://makeup-api.herokuapp.com/api/v1/products/637.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/637/original/open-uri20171223-4-egj5ho?1514061763,[]
+636,benefit,hoola matte bronzer ,36.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-component0_0.png?itok=C1YPXstp,https://www.benefitcosmetics.com/ca/en-gb/product/hoola,https://www.benefitcosmetics.com,bronzing powder,,,bronzer,[],2016-10-02T11:37:25.612Z,2017-12-23T20:42:43.032Z,http://makeup-api.herokuapp.com/api/v1/products/636.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/636/original/open-uri20171223-4-1ueeqbp?1514061762,"[{'hex_value': '#DEB094', 'colour_name': None}]"
+635,benefit,high brow glow brow highlighter ,29.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1high-brow-glow-component_0.png?itok=9l5JyWCo,https://www.benefitcosmetics.com/ca/en-gb/product/high-brow-glow-new,https://www.benefitcosmetics.com,luminous brow highlighting pencil,,,eyebrow,[],2016-10-02T11:37:25.311Z,2017-12-23T20:42:42.804Z,http://makeup-api.herokuapp.com/api/v1/products/635.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/635/original/open-uri20171223-4-ymwj34?1514061762,[]
+634,benefit,high brow eyebrow highlighter ,29.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1high-brow-component_0.png?itok=XpUgoe35,https://www.benefitcosmetics.com/ca/en-gb/product/high-brow-new,https://www.benefitcosmetics.com,creamy brow highlighting pencil,,,eyebrow,[],2016-10-02T11:37:25.045Z,2017-12-23T20:42:42.579Z,http://makeup-api.herokuapp.com/api/v1/products/634.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/634/original/open-uri20171223-4-xq5rvq?1514061762,[]
+633,benefit,brow zings eyebrow shaping kit ,42.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1brow-zings-component_0.png?itok=I0xVlW54,https://www.benefitcosmetics.com/ca/en-gb/product/brow-zings-new,https://www.benefitcosmetics.com,total taming & shaping kit for brows,,,eyebrow,[],2016-10-02T11:37:24.771Z,2017-12-23T20:42:42.321Z,http://makeup-api.herokuapp.com/api/v1/products/633.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/633/original/open-uri20171223-4-76w4zc?1514061762,"[{'hex_value': '#cda885', 'colour_name': '01 - light'}, {'hex_value': '#ab8d7c', 'colour_name': '02 - light'}, {'hex_value': '#967765', 'colour_name': '03 - medium'}, {'hex_value': '#64483c', 'colour_name': '04 - medium'}, {'hex_value': '#5c4743', 'colour_name': '05 - deep'}, {'hex_value': '#504b49', 'colour_name': '06 - deep'}]"
+632,benefit,BROWVO! conditioning eyebrow primer ,36.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/browvo-conditioning-primer-component_0.png?itok=PRNTJlTU,https://www.benefitcosmetics.com/ca/en-gb/product/browvo,https://www.benefitcosmetics.com,nutrient-rich primer for fuller-looking brows,,,eyebrow,[],2016-10-02T11:37:24.528Z,2017-12-23T20:42:42.071Z,http://makeup-api.herokuapp.com/api/v1/products/632.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/632/original/open-uri20171223-4-181cbme?1514061761,[]
+631,benefit,"precisely, my brow eyebrow pencil ",30.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/precisely-my-brow-pencil-component_0.png?itok=oOfirtAR,https://www.benefitcosmetics.com/ca/en-gb/product/precisely-my-brow,https://www.benefitcosmetics.com,ultra-fine brow defining pencil,,,eyebrow,[],2016-10-02T11:37:24.189Z,2017-12-23T20:42:41.842Z,http://makeup-api.herokuapp.com/api/v1/products/631.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/631/original/open-uri20171223-4-yeeud8?1514061761,"[{'hex_value': '#cda885', 'colour_name': '01 - light'}, {'hex_value': '#ab8d7c', 'colour_name': '02 - light'}, {'hex_value': '#967765', 'colour_name': '03 - medium'}, {'hex_value': '#64483c', 'colour_name': '04 - medium'}, {'hex_value': '#5c4743', 'colour_name': '05 - deep'}, {'hex_value': '#504b49', 'colour_name': '06 - deep'}]"
+630,benefit,ka-BROW! eyebrow cream-gel color ,30.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/ka-brow-component_new.png?itok=ToSDWDUX,https://www.benefitcosmetics.com/ca/en-gb/product/ka-brow,https://www.benefitcosmetics.com,cream-gel brow colour with brush,,,eyebrow,[],2016-10-02T11:37:23.852Z,2017-12-23T20:42:41.648Z,http://makeup-api.herokuapp.com/api/v1/products/630.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/630/original/open-uri20171223-4-ivog6p?1514061761,"[{'hex_value': '#cda885', 'colour_name': '01 - light'}, {'hex_value': '#ab8d7c', 'colour_name': '02 - light'}, {'hex_value': '#967765', 'colour_name': '03 - medium'}, {'hex_value': '#64483c', 'colour_name': '04 - medium'}, {'hex_value': '#5c4743', 'colour_name': '05 - deep'}, {'hex_value': '#504b49', 'colour_name': '06 - deep'}]"
+629,benefit,goof proof eyebrow pencil ,30.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/goof-proof-pencil-component_0.png?itok=djbpd-ut,https://www.benefitcosmetics.com/ca/en-gb/product/goof-proof,https://www.benefitcosmetics.com,super easy brow-filling & shaping pencil,,,eyebrow,[],2016-10-02T11:37:23.560Z,2017-12-23T20:42:41.450Z,http://makeup-api.herokuapp.com/api/v1/products/629.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/629/original/open-uri20171223-4-jn7l55?1514061761,"[{'hex_value': '#cda885', 'colour_name': '01 - light'}, {'hex_value': '#ab8d7c', 'colour_name': '02 - light'}, {'hex_value': '#967765', 'colour_name': '03 - medium'}, {'hex_value': '#64483c', 'colour_name': '04 - medium'}, {'hex_value': '#5c4743', 'colour_name': '05 - deep'}, {'hex_value': '#504b49', 'colour_name': '06 - deep'}]"
+628,benefit,gimme brow volumizing eyebrow gel,30.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/gimme-brow-component_new_0.png?itok=Yl4Nqi2O,https://www.benefitcosmetics.com/ca/en-gb/product/gimme-brow-new,https://www.benefitcosmetics.com,brow-volumising fibre gel,,,eyebrow,[],2016-10-02T11:37:23.334Z,2017-12-23T20:42:41.223Z,http://makeup-api.herokuapp.com/api/v1/products/628.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/628/original/open-uri20171223-4-1hz1xyp?1514061761,"[{'hex_value': '#cda885', 'colour_name': '01 - light'}, {'hex_value': '#967765', 'colour_name': '03 - medium'}, {'hex_value': '#504b49', 'colour_name': '05 - deep'}]"
+627,benefit,bigger & bolder brows kit,44.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/bigger-and-bolder-brows-kit-component_0.png?itok=MzPgohjf,https://www.benefitcosmetics.com/ca/en-gb/product/bigger-bolder-brows-kit,https://www.benefitcosmetics.com,buildable-colour kit for dramatic brows,,,eyebrow,[],2016-10-02T11:37:23.123Z,2017-12-23T20:42:40.910Z,http://makeup-api.herokuapp.com/api/v1/products/627.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/627/original/open-uri20171223-4-152fbjz?1514061760,"[{'hex_value': '#cda885', 'colour_name': 'light'}, {'hex_value': '#5c4743', 'colour_name': 'deep'}, {'hex_value': '#967765', 'colour_name': 'medium'}]"
+626,benefit,defined & refined brows kit,44.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/defined-and-refined-brows-kit-component_0.png?itok=vzyOChYY,https://www.benefitcosmetics.com/ca/en-gb/product/defined-refined-brows-kit,https://www.benefitcosmetics.com,precision kit for expertly defined brows,,,eyebrow,[],2016-10-02T11:37:22.926Z,2017-12-23T20:42:40.630Z,http://makeup-api.herokuapp.com/api/v1/products/626.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/626/original/open-uri20171223-4-1pl1f9a?1514061760,"[{'hex_value': '#ab8d7c', 'colour_name': 'light'}, {'hex_value': '#967765', 'colour_name': 'medium'}, {'hex_value': '#504b49', 'colour_name': 'deep'}]"
+625,benefit,soft & natural brows kit,44.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/soft-and-natural-brows-kit-component_0.png?itok=wJqiVHDe,https://www.benefitcosmetics.com/ca/en-gb/product/soft-natural-brows-kit,https://www.benefitcosmetics.com,goof-proof kit for natural-looking brows,,,eyebrow,[],2016-10-02T11:37:22.718Z,2017-12-23T20:42:40.404Z,http://makeup-api.herokuapp.com/api/v1/products/625.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/625/original/open-uri20171223-4-m5burj?1514061760,"[{'hex_value': '#ab8d7c', 'colour_name': 'light'}, {'hex_value': '#967765', 'colour_name': 'medium'}, {'hex_value': '#504b49', 'colour_name': 'deep'}]"
+624,benefit,hydra-smooth lip color,23.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hydra-smooth-lip-color-component_0.png?itok=GGUNA2l1,https://www.benefitcosmetics.com/ca/en-gb/product/hydra-smooth-lip-color,https://www.benefitcosmetics.com,lip color,,lipstick,lipstick,[],2016-10-02T11:37:22.208Z,2017-12-23T20:42:40.183Z,http://makeup-api.herokuapp.com/api/v1/products/624.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/624/original/open-uri20171223-4-12tcoyi?1514061760,"[{'hex_value': '#d14146', 'colour_name': 'juicy details'}, {'hex_value': '#f3576c', 'colour_name': 'air kiss'}, {'hex_value': '#963a38', 'colour_name': 'nice 'n teasy'}, {'hex_value': '#712f29', 'colour_name': 'frisky business'}, {'hex_value': '#d64d3e', 'colour_name': 'lip service'}, {'hex_value': '#ff5864', 'colour_name': 'tutti-cutie'}, {'hex_value': '#8a3850', 'colour_name': 'talk flirty'}, {'hex_value': '#7d2034', 'colour_name': 'fling thing'}, {'hex_value': '#b80229', 'colour_name': 'dare me'}, {'hex_value': '#ad3b33', 'colour_name': 'wing woman'}]"
+623,benefit,BIG sexy lipstick set,38.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-big-sexy-lip-kit-component_0.png?itok=1CmB3i_p,https://www.benefitcosmetics.com/ca/en-gb/product/big-sexy-lipstick-set,https://www.benefitcosmetics.com,4 all-in-one lipstick and liners,,lipstick,lipstick,[],2016-10-02T11:37:21.916Z,2017-12-23T20:42:39.960Z,http://makeup-api.herokuapp.com/api/v1/products/623.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/623/original/open-uri20171223-4-15ajw4w?1514061759,[]
+622,benefit,ultra plush lip gloss,19.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/ultra-plush-lip-gloss-component_0.png?itok=nE6ZOF2q,https://www.benefitcosmetics.com/ca/en-gb/product/ultra-plush-lip-gloss,https://www.benefitcosmetics.com,smooth & luscious lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:20.799Z,2017-12-23T20:42:39.621Z,http://makeup-api.herokuapp.com/api/v1/products/622.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/622/original/open-uri20171223-4-1c5ch8u?1514061759,"[{'hex_value': '#fc4c88', 'colour_name': 'lollibop'}, {'hex_value': '#d0609d', 'colour_name': 'kiss you'}, {'hex_value': '#f6f6f6', 'colour_name': 'icebreaker'}, {'hex_value': '#d55862', 'colour_name': 'fauxmance'}, {'hex_value': '#fb908a', 'colour_name': 'A-lister'}, {'hex_value': '#ff4c4e', 'colour_name': 'poutrageous!'}]"
+621,benefit,hoola ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-ultra-plush-component0.png?itok=jqBC3b39,https://www.benefitcosmetics.com/ca/en-gb/product/hoola-ultra-plush,https://www.benefitcosmetics.com,shimmering golden nude lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:20.619Z,2017-12-23T20:42:39.404Z,http://makeup-api.herokuapp.com/api/v1/products/621.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/621/original/open-uri20171223-4-1l72nxj?1514061759,[]
+620,benefit,CORALista ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/coralista-ultra-plush-component0.png?itok=S2p8Q27d,https://www.benefitcosmetics.com/ca/en-gb/product/coralista-ultra-plush,https://www.benefitcosmetics.com,sheer coral lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:20.403Z,2017-12-23T20:42:39.137Z,http://makeup-api.herokuapp.com/api/v1/products/620.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/620/original/open-uri20171223-4-1rloh6o?1514061759,[]
+619,benefit,rockateur ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/rockateur-ultra-plush-component1_0.png?itok=SqcjeObE,https://www.benefitcosmetics.com/ca/en-gb/product/rockateur-ultra-plush,https://www.benefitcosmetics.com,soft rose gold lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:20.235Z,2017-12-23T20:42:38.913Z,http://makeup-api.herokuapp.com/api/v1/products/619.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/619/original/open-uri20171223-4-1a52xvo?1514061758,[]
+618,benefit,hervana ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hervana-ultra-plush-component1_0.png?itok=mXZqkMhX,https://www.benefitcosmetics.com/ca/en-gb/product/hervana-ultra-plush,https://www.benefitcosmetics.com,berry pink lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:20.028Z,2017-12-23T20:42:38.676Z,http://makeup-api.herokuapp.com/api/v1/products/618.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/618/original/open-uri20171223-4-1kdyf02?1514061758,[]
+617,benefit,dandelion ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dandelion-ultra-plush-component0.png?itok=VUqn4q2i,https://www.benefitcosmetics.com/ca/en-gb/product/dandelion-ultra-plush,https://www.benefitcosmetics.com,soft pearly pink lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:19.875Z,2017-12-23T20:42:38.405Z,http://makeup-api.herokuapp.com/api/v1/products/617.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/617/original/open-uri20171223-4-9ylmgx?1514061758,[]
+616,benefit,sugarbomb ultra plush,21.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/sugarbomb-ultra-plush-component0.png?itok=LovnHt5G,https://www.benefitcosmetics.com/ca/en-gb/product/sugarbomb-ultra-plush,https://www.benefitcosmetics.com,shimmering pinky nude lip gloss,,lip_gloss,lipstick,[],2016-10-02T11:37:19.674Z,2017-12-23T20:42:38.180Z,http://makeup-api.herokuapp.com/api/v1/products/616.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/616/original/open-uri20171223-4-os3kc?1514061758,[]
+615,benefit,lollibalm,23.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/lollibalm-component0.png?itok=_RkBaJKu,https://www.benefitcosmetics.com/ca/en-gb/product/lollibalm,https://www.benefitcosmetics.com,hydrating tinted lip balm,,lip_gloss,lipstick,[],2016-10-02T11:37:19.465Z,2017-12-23T20:42:37.954Z,http://makeup-api.herokuapp.com/api/v1/products/615.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/615/original/open-uri20171223-4-1tvj5bs?1514061757,[]
+614,benefit,chachabalm,23.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/chachabalm-component0.png?itok=F10VJpJ8,https://www.benefitcosmetics.com/ca/en-gb/product/chachabalm,https://www.benefitcosmetics.com,hydrating tinted lip balm,,lip_gloss,lipstick,[],2016-10-02T11:37:19.276Z,2017-12-23T20:42:37.772Z,http://makeup-api.herokuapp.com/api/v1/products/614.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/614/original/open-uri20171223-4-1ouwppd?1514061757,[]
+613,benefit,posiebalm,23.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/posiebalm-component0.png?itok=uj9d8EN0,https://www.benefitcosmetics.com/ca/en-gb/product/posiebalm,https://www.benefitcosmetics.com,hydrating tinted lip balm,,lip_gloss,lipstick,[],2016-10-02T11:37:19.096Z,2017-12-23T20:42:37.507Z,http://makeup-api.herokuapp.com/api/v1/products/613.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/613/original/open-uri20171223-4-13bs4e0?1514061757,[]
+612,benefit,benebalm,23.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/benebalm-component0.png?itok=CnuRI5tn,https://www.benefitcosmetics.com/ca/en-gb/product/benebalm,https://www.benefitcosmetics.com,hydrating tinted lip balm,,lip_gloss,lipstick,[],2016-10-02T11:37:18.755Z,2017-12-23T20:42:37.318Z,http://makeup-api.herokuapp.com/api/v1/products/612.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/612/original/open-uri20171223-4-tnj626?1514061757,[]
+611,benefit,BADgal waterproof mascara,26.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-waterproof-mascara-component2.png?itok=g5fmS1l0,https://www.benefitcosmetics.com/ca/en-gb/product/badgal-waterproof-mascara,https://www.benefitcosmetics.com,waterproof mascara,,,mascara,[],2016-10-02T11:37:17.060Z,2017-12-23T20:42:37.113Z,http://makeup-api.herokuapp.com/api/v1/products/611.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/611/original/open-uri20171223-4-unl1gu?1514061757,[]
+610,benefit,they're real! lengthening mascara mini,16.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-mascara-deluxe-sample-retail-component0.png?itok=JAWnw4xM,https://www.benefitcosmetics.com/ca/en-gb/product/theyre-real-mascara-travel-size-mini,https://www.benefitcosmetics.com,beyond mascara mini,,,mascara,[],2016-10-02T11:37:16.882Z,2017-12-23T20:42:36.853Z,http://makeup-api.herokuapp.com/api/v1/products/610.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/610/original/open-uri20171223-4-4g4ths?1514061756,[]
+609,benefit,BADgal lash volumizing mascara,26.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-lash-mascara-component2.png?itok=BMvTkD5q,https://www.benefitcosmetics.com/ca/en-gb/product/badgal-lash-mascara,https://www.benefitcosmetics.com,volumizing mascara,,,mascara,[],2016-10-02T11:37:16.520Z,2017-12-23T20:42:36.522Z,http://makeup-api.herokuapp.com/api/v1/products/609.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/609/original/open-uri20171223-4-gud74n?1514061756,[]
+608,benefit,roller lash curling mascara ,31.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/roller-lash-component.png?itok=WykBVxJg,https://www.benefitcosmetics.com/ca/en-gb/product/roller-lash,https://www.benefitcosmetics.com,super-curling & lifting mascara,,,mascara,[],2016-10-02T11:37:16.231Z,2017-12-23T20:42:36.328Z,http://makeup-api.herokuapp.com/api/v1/products/608.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/608/original/open-uri20171223-4-16dndzy?1514061756,"[{'hex_value': '#000000', 'colour_name': 'black'}, {'hex_value': '#493023', 'colour_name': 'brown'}]"
+607,benefit,they're real! lengthening mascara ,31.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-mascara-component3_1.png?itok=4eQeb-E5,https://www.benefitcosmetics.com/ca/en-gb/product/theyre-real-mascara,https://www.benefitcosmetics.com,beyond mascara,,,mascara,[],2016-10-02T11:37:15.079Z,2017-12-23T20:42:36.139Z,http://makeup-api.herokuapp.com/api/v1/products/607.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/607/original/open-uri20171223-4-rt97dn?1514061756,"[{'hex_value': '#0a070c', 'colour_name': 'jet black'}, {'hex_value': '#64250d', 'colour_name': 'beyond brown'}, {'hex_value': '#01336f', 'colour_name': 'beyond blue'}]"
+606,benefit,they're real! tinted eyelash primer,31.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-tinted-primer-component.png?itok=QQ8ln7QJ,https://www.benefitcosmetics.com/ca/en-gb/product/theyre-real-tinted-eyelash-primer,https://www.benefitcosmetics.com,mink-brown tinted eyelash primer,,,mascara,[],2016-10-02T11:37:14.825Z,2017-12-23T20:42:35.915Z,http://makeup-api.herokuapp.com/api/v1/products/606.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/606/original/open-uri20171223-4-z0abcw?1514061755,[]
+605,benefit,BADgal waterproof eyeliner,26.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-liner-waterproof-component0.png?itok=I2WcFQwj,https://www.benefitcosmetics.com/ca/en-gb/product/badgal-liner-waterproof,https://www.benefitcosmetics.com,waterproof eye pencil,,liquid,eyeliner,[],2016-10-02T11:37:14.438Z,2017-12-23T20:42:35.654Z,http://makeup-api.herokuapp.com/api/v1/products/605.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/605/original/open-uri20171223-4-rn7n7?1514061755,"[{'hex_value': '#181718', 'colour_name': 'black'}, {'hex_value': '#54443f', 'colour_name': 'espresso'}, {'hex_value': '#475157', 'colour_name': 'charcoal'}]"
+604,benefit,creaseless cream eyeshadow,26.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/creaseless-cream-shadow-component_0.png?itok=EhRALVSZ,https://www.benefitcosmetics.com/ca/en-gb/product/creaseless-cream-eyeshadow,https://www.benefitcosmetics.com,cream eyeshadow,,liquid,eyeliner,[],2016-10-02T11:37:14.091Z,2017-12-23T20:42:35.352Z,http://makeup-api.herokuapp.com/api/v1/products/604.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/604/original/open-uri20171223-4-1uiinrx?1514061755,"[{'hex_value': '#fcd1b8', 'colour_name': 'bikini-tini'}, {'hex_value': '#fdd3c8', 'colour_name': 'r.s.v.p.'}, {'hex_value': '#e8c2b1', 'colour_name': 'birthday suit'}, {'hex_value': '#aea2bb', 'colour_name': 'always a bridesmaid'}, {'hex_value': '#dae5e7', 'colour_name': 'blue my mind'}, {'hex_value': '#b38e87', 'colour_name': 'no pressure!'}, {'hex_value': '#dfa486', 'colour_name': 'my two cents'}, {'hex_value': '#694a2c', 'colour_name': 'bronze have more fun'}, {'hex_value': '#8f8377', 'colour_name': 'skinny jeans'}, {'hex_value': '#7f787b', 'colour_name': 'holy smokes!'}]"
+603,benefit,they're real! gel eyeliner pen ,31.0,,,https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-push-liner-component0_1.png?itok=x3Y9-QVl,https://www.benefitcosmetics.com/ca/en-gb/product/theyre-real-gel-eyeliner-pen,https://www.benefitcosmetics.com,lash-hugging gel liner pen,,liquid,eyeliner,[],2016-10-02T11:37:13.613Z,2017-12-23T20:42:35.105Z,http://makeup-api.herokuapp.com/api/v1/products/603.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/603/original/open-uri20171223-4-xcj56b?1514061754,"[{'hex_value': '#0a070c', 'colour_name': 'beyond black'}, {'hex_value': '#5f3687', 'colour_name': 'beyond purple'}, {'hex_value': '#083b7d', 'colour_name': 'beyond blue'}, {'hex_value': '#185c3f', 'colour_name': 'beyond green'}, {'hex_value': '#6b3420', 'colour_name': 'beyond brown'}]"
+560,smashbox,Bronze Lights,34.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_61636_388x396_0.jpg,http://www.smashbox.com/product/17653/34880/Lips-Cheek/Bronzer/Bronze-Lights/NEW,http://www.smashbox.com/,"Pros in our L.A. photo studio created this ultra-fine matte bronzer to add a burst of ""under the West Coast sun"" on set. Now you can get the same look anytime! The formula contains true-color coated pigments that allow your skin’s natural undertones to come through, giving you that fresh, just-hit-the-beach face year-round. It’s also infused with Photoset Mineral Complex for an 8-hour faux glow.Because it is a matte formula, you can use Bronze Lights to contour. Use Fan Brush #22 and sweep bronzer under cheekbones, jawline and along the inner bridge of the nose for a slimming effect.8-hour wearEasily & evenly blends into skinApply to cheeks, temples, nose, or anywhere you want a burst of color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , ZEA MAYS (CORN) STARCH , DIMETHICONE , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL UNSAPONIFIABLES , OCTYLDODECANOL , ALUMINA , HYDROXYAPATITE , SILICA , POLYISOPRENE , BORON NITRIDE , TETRASODIUM EDTA , BHT , POTASSIUM SORBATE , CHLORPHENESIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 30 LAKE (CI 73360) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Pros in our L.A. photo studio created this ultra-fine matte bronzer to add a burst of ""under the West Coast sun"" on set. Now you can get the same look anytime! The formula contains true-color coated pigments that allow your skin’s natural undertones to come through, giving you that fresh, just-hit-the-beach face year-round. It’s also infused with Photoset Mineral Complex for an 8-hour faux glow.Because it is a matte formula, you can use Bronze Lights to contour. Use Fan Brush #22 and sweep bronzer under cheekbones, jawline and along the inner bridge of the nose for a slimming effect.8-hour wearEasily & evenly blends into skinApply to cheeks, temples, nose, or anywhere you want a burst of color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , ZEA MAYS (CORN) STARCH , DIMETHICONE , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL UNSAPONIFIABLES , OCTYLDODECANOL , ALUMINA , HYDROXYAPATITE , SILICA , POLYISOPRENE , BORON NITRIDE , TETRASODIUM EDTA , BHT , POTASSIUM SORBATE , CHLORPHENESIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 30 LAKE (CI 73360) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,bronzer,[],2016-10-02T01:33:01.676Z,2017-12-23T20:49:21.714Z,http://makeup-api.herokuapp.com/api/v1/products/560.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/560/original/open-uri20171223-4-fp6nxj?1514062161,"[{'hex_value': '#be8667', 'colour_name': 'WARM MATTE'}, {'hex_value': '#a8765a', 'colour_name': 'DEEP MATTE'}]"
+559,smashbox,O-Glow ,29.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35746_388x396_0.jpg,http://www.smashbox.com/product/17652/17772/Lips-Cheek/Blush/O-Glow,http://www.smashbox.com/,"Experience instant chemistry as your complexion is transformed from so-so to oh-so-glowing! The clear gel in this intuitive formula reacts with your personal skin chemistry to turn cheeks the color you blush in just seconds! O-GLOW works on every skin tone, from the lightest to the darkest, to give everyone a customized flush of color. Revolutionary silicone-based clear gel is easy to blend Glides on smoothly for a healthy, glowing blush that’s you, only better Fragrance-free Apply on bare skin or over makeup. Watch the reaction as cheeks turn rosy, for a gorgeous blush!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance, Talc & Alcohol.INGREDIENTS: CYCLOPENTASILOXANE , DIMETHICONE CROSSPOLYMER , ISONONYL ISONONANOATE , CARTHAMUS TINCTORIUS (SAFFLOWER) SEED OIL , PUNICA GRANATUM (POMEGRANATE) SEED OIL , GINKGO BILOBA LEAF EXTRACT , LYCIUM BARBARUM FRUIT EXTRACT , PLANKTON EXTRACT , CAPRYLIC/CAPRIC TRIGLYCERIDE , POLYSILICONE-11 , TETRAHEXYLDECYL ASCORBATE , [+/- RED 27 (CI 45410)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Experience instant chemistry as your complexion is transformed from so-so to oh-so-glowing! The clear gel in this intuitive formula reacts with your personal skin chemistry to turn cheeks the color you blush in just seconds! O-GLOW works on every skin tone, from the lightest to the darkest, to give everyone a customized flush of color. Revolutionary silicone-based clear gel is easy to blend Glides on smoothly for a healthy, glowing blush that’s you, only better Fragrance-free Apply on bare skin or over makeup. Watch the reaction as cheeks turn rosy, for a gorgeous blush!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance, Talc & Alcohol.INGREDIENTS: CYCLOPENTASILOXANE , DIMETHICONE CROSSPOLYMER , ISONONYL ISONONANOATE , CARTHAMUS TINCTORIUS (SAFFLOWER) SEED OIL , PUNICA GRANATUM (POMEGRANATE) SEED OIL , GINKGO BILOBA LEAF EXTRACT , LYCIUM BARBARUM FRUIT EXTRACT , PLANKTON EXTRACT , CAPRYLIC/CAPRIC TRIGLYCERIDE , POLYSILICONE-11 , TETRAHEXYLDECYL ASCORBATE , [+/- RED 27 (CI 45410)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,blush,[],2016-10-02T01:33:01.505Z,2017-12-23T20:49:20.484Z,http://makeup-api.herokuapp.com/api/v1/products/559.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/559/original/data?1514062160,[]
+558,smashbox,Baked Fusion Soft Lights,32.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35600_388x396_0.jpg,http://www.smashbox.com/product/17653/17761/Lips-Cheek/Bronzer/Baked-Fusion-Soft-Lights,http://www.smashbox.com/,"Get a gorgeous, lit-from-within glow with this radiant silk-like powder. Our innovative highlighter contains five sunny shades—with a double dose of each one! The baked formula gives you luminous shimmer that you can layer and build upon whenever you need more intensity. You can even dust it on décolleté for a fast, post-vacay glow!Sweep the shades on eyes for a gorgeous, shimmering shadowSwirl the 5 shimmery shades together and dust over cheeks, temples, nose, décolleté, or anywhere you want a boost of soft, radiant color using Face And Cheek Brush #2.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , DIMETHICONE , ZEA MAYS (CORN) STARCH , CETYL DIMETHICONE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SORBITAN SESQUIOLEATE , DEHYDROACETIC ACID , BENZOIC ACID , SORBIC ACID , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Get a gorgeous, lit-from-within glow with this radiant silk-like powder. Our innovative highlighter contains five sunny shades—with a double dose of each one! The baked formula gives you luminous shimmer that you can layer and build upon whenever you need more intensity. You can even dust it on décolleté for a fast, post-vacay glow!Sweep the shades on eyes for a gorgeous, shimmering shadowSwirl the 5 shimmery shades together and dust over cheeks, temples, nose, décolleté, or anywhere you want a boost of soft, radiant color using Face And Cheek Brush #2.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , DIMETHICONE , ZEA MAYS (CORN) STARCH , CETYL DIMETHICONE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SORBITAN SESQUIOLEATE , DEHYDROACETIC ACID , BENZOIC ACID , SORBIC ACID , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,bronzer,[],2016-10-02T01:33:01.340Z,2017-12-23T20:49:21.358Z,http://makeup-api.herokuapp.com/api/v1/products/558.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/558/original/open-uri20171223-4-191gj6v?1514062161,[]
+557,smashbox,L.A. Lights Palette,35.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_69716_388x396_0.jpg,http://www.smashbox.com/product/17652/40409/Lips-Cheek/Blush/LA-Lights-Palette/New,http://www.smashbox.com/,"Pros in our L.A. photo studio bring the sun to the set with this ultra-flattering palette. Two tonal shades of long-wearing, richly pigmented blush team up with a perfectly curated highlighter to recreate naturally diffused light, leaving you with a radiant, lit-from-within West Coast glow. Make the most of your face shape while you adjust rosiness to match any look, occasion or season.""Blush isn’t just about color. I can use this palette to achieve that ultra-flattering L.A. glow and to subtly redefine a face shape"" - Lori Taylor Davis, Global Pro Lead Artist Long wearing, rich blush shades stay true all day Curated highlighter complements blush tones Includes #SHAPEMATTERS how-to’s & tricks with pro tips for 5 different face shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.Blush - Rich Pink, True PinkINGREDIENTS: Talc, Zea Mays (Corn) Starch, Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc Stearate, Helianthus Annuus (Sunflower) Seed Oil Unsaponifiables, Octyldodecanol, Alumina, Hydroxyapatite, Silica, Polyisoprene, Boron Nitride, Tetrasodium EDTA, BHT, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Highlighter - Highlight PinkINGREDIENTS: Talc, Octyldodecyl Stearoyl Stearate, Dimethicone, Zinc Stearate, Nylon-12, Octyldodecanol, Silica, Tin Oxide, Tetrasodium EDTA, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 (CI 15850), Red 30 (CI 73360), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Pros in our L.A. photo studio bring the sun to the set with this ultra-flattering palette. Two tonal shades of long-wearing, richly pigmented blush team up with a perfectly curated highlighter to recreate naturally diffused light, leaving you with a radiant, lit-from-within West Coast glow. Make the most of your face shape while you adjust rosiness to match any look, occasion or season.""Blush isn’t just about color. I can use this palette to achieve that ultra-flattering L.A. glow and to subtly redefine a face shape"" - Lori Taylor Davis, Global Pro Lead Artist Long wearing, rich blush shades stay true all day Curated highlighter complements blush tones Includes #SHAPEMATTERS how-to’s & tricks with pro tips for 5 different face shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.Blush - Rich Pink, True PinkINGREDIENTS: Talc, Zea Mays (Corn) Starch, Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc Stearate, Helianthus Annuus (Sunflower) Seed Oil Unsaponifiables, Octyldodecanol, Alumina, Hydroxyapatite, Silica, Polyisoprene, Boron Nitride, Tetrasodium EDTA, BHT, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Highlighter - Highlight PinkINGREDIENTS: Talc, Octyldodecyl Stearoyl Stearate, Dimethicone, Zinc Stearate, Nylon-12, Octyldodecanol, Silica, Tin Oxide, Tetrasodium EDTA, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 (CI 15850), Red 30 (CI 73360), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,blush,[],2016-10-02T01:33:01.117Z,2017-12-23T20:49:20.025Z,http://makeup-api.herokuapp.com/api/v1/products/557.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/557/original/data?1514062159,[]
+556,smashbox,Brow Tech Highlight Stick,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62913_388x396_0.jpg,http://www.smashbox.com/product/6026/35635/eyes/brow/brow-tech-highlight-stick/new,http://www.smashbox.com/,"Need a subtle touch of color on your eye brows? One side of this stick has a slim pencil, which you can use to fill in arches with multidimensional color. The other side is your BFF the spoolie brush—ideal for grooming and shaping your brows. Add this trick to your everyday makeup routine to see what a difference brow highlighting can make!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Multi-dimensional, shimmery finish Spoolie brush blends & grooms Using light, feathery strokes, apply highlighter for sun-kissed dimension and depth. Less is more—do not saturate your brow with color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , TIN OXIDE , SILICA , ALUMINA , SYNTHETIC FLUORPHLOGOPITE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , BRONZE POWDER (CI 77400) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Need a subtle touch of color on your eye brows? One side of this stick has a slim pencil, which you can use to fill in arches with multidimensional color. The other side is your BFF the spoolie brush—ideal for grooming and shaping your brows. Add this trick to your everyday makeup routine to see what a difference brow highlighting can make!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Multi-dimensional, shimmery finish Spoolie brush blends & grooms Using light, feathery strokes, apply highlighter for sun-kissed dimension and depth. Less is more—do not saturate your brow with color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , TIN OXIDE , SILICA , ALUMINA , SYNTHETIC FLUORPHLOGOPITE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , BRONZE POWDER (CI 77400) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:33:00.569Z,2017-12-23T20:49:19.716Z,http://makeup-api.herokuapp.com/api/v1/products/556.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/556/original/data?1514062159,"[{'hex_value': '#8d5f3f', 'colour_name': 'BRONZE SHIMMER'}, {'hex_value': '#9d7449', 'colour_name': 'GOLD SHIMMER'}]"
+555,smashbox,Brow Tech Gloss Stick,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62911_388x396_0.jpg,http://www.smashbox.com/product/6026/35634/eyes/brow/brow-tech-gloss-stick/new,http://www.smashbox.com/,"In our L.A. photo studio, glossy eye brows with a natural, youthful sheen always pop in photos. We created this slim brow pencil so you can recreate the same look at home. One side has a pencil, which you can use to fill arches with subtle, glossy color. The other side is standing by with a spoolie brush that’s perfect for grooming and shaping your brows. You’ll want to pencil this in every day!Apply over Brow Tech Matte Pencil as a finisher.Slim pencil glides on sheer color for subtle definitionDouble-ended spoolie brush blends & groomsUsing light, feathery strokes, apply to brows for a healthy, natural luster. Focus on the center of your arch to achieve the appearance of a youthful lift.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ In our L.A. photo studio, glossy eye brows with a natural, youthful sheen always pop in photos. We created this slim brow pencil so you can recreate the same look at home. One side has a pencil, which you can use to fill arches with subtle, glossy color. The other side is standing by with a spoolie brush that’s perfect for grooming and shaping your brows. You’ll want to pencil this in every day!Apply over Brow Tech Matte Pencil as a finisher.Slim pencil glides on sheer color for subtle definitionDouble-ended spoolie brush blends & groomsUsing light, feathery strokes, apply to brows for a healthy, natural luster. Focus on the center of your arch to achieve the appearance of a youthful lift.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:33:00.447Z,2017-12-23T20:49:06.113Z,http://makeup-api.herokuapp.com/api/v1/products/555.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/555/original/data?1514062146,"[{'hex_value': '#392f27', 'colour_name': 'DARK BROWN'}, {'hex_value': '#4e392b', 'colour_name': 'BRUNETTE'}, {'hex_value': '#806453', 'colour_name': 'TAUPE'}, {'hex_value': '#95816e', 'colour_name': 'BLONDE'}]"
+554,smashbox,Brow Tech Matte Pencil,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62907_388x396_0.jpg,http://www.smashbox.com/product/6026/35633/eyes/brow/brow-tech-matte-pencil,http://www.smashbox.com/,"In our L.A. photo studio, we know eye brow looks need to last. Enter this long-wearing, ultra-slim pencil that goes on easily and looks like real brow hair. One side is a non-smudging formula that resists sweat, water and humidity to bring you matte perfection. The other side has a spoolie brush to help you disperse color evenly and achieve the shape you’ve been eyeing. It’s a total brow-wow-wow!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Water, humidity & sweat resistant; smudge-free Spoolie brush blends & grooms Using soft, feathery strokes, define your natural arch, starting at the base of the hairline. Fill in sparse areas and use spoolie brush to distribute color evenly.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ETHYLHEXYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , C10-18 TRIGLYCERIDES , TOCOPHEROL , SILICA , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ In our L.A. photo studio, we know eye brow looks need to last. Enter this long-wearing, ultra-slim pencil that goes on easily and looks like real brow hair. One side is a non-smudging formula that resists sweat, water and humidity to bring you matte perfection. The other side has a spoolie brush to help you disperse color evenly and achieve the shape you’ve been eyeing. It’s a total brow-wow-wow!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Water, humidity & sweat resistant; smudge-free Spoolie brush blends & grooms Using soft, feathery strokes, define your natural arch, starting at the base of the hairline. Fill in sparse areas and use spoolie brush to distribute color evenly.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ETHYLHEXYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , C10-18 TRIGLYCERIDES , TOCOPHEROL , SILICA , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:33:00.308Z,2017-12-23T20:49:15.055Z,http://makeup-api.herokuapp.com/api/v1/products/554.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/554/original/data?1514062155,"[{'hex_value': '#3a3027', 'colour_name': 'DARK BROWN'}, {'hex_value': '#4d372a', 'colour_name': 'BRUNETTE'}, {'hex_value': '#7f6452', 'colour_name': 'TAUPE'}, {'hex_value': '#897666', 'colour_name': 'BLONDE'}]"
+553,smashbox,Brow Tech Shaping Powder,25.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_68193_388x396_0.jpg,http://www.smashbox.com/product/6026/39350/eyes/brow/brow-tech-shaping-powder/new,http://www.smashbox.com/,"Pros in our L.A. photo studio love the defining power of pencils, pomades and gels, but some brows need extra coverage and intensity. We created this ultra-fine, loose brow powder with a built-in applicator to fill in sparse patches, create realistic volume and add lift. Get face-framing, runway-ready arches that make a statement and last all day.For more intensity, sweep brow with side of applicator. Precision applicator mimics natural hair Buildable coverage from understated to exaggerated 8-hour wear Shake well. Tap wand to remove excess powder. Apply in direction of hair growth.
+
+ INGREDIENTS: MICA , BORON NITRIDE , DIMETHICONE , SILICA , POLYETHYLENE , PENTYLENE GLYCOL , TOCOPHEROL , GLYCERIN , ETHYLHEXYLGLYCERIN , DIMETHICONOL , KAOLIN , PUMICE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , CAPRYLYL GLYCOL , CAPRYLHYDROXAMIC ACID , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Pros in our L.A. photo studio love the defining power of pencils, pomades and gels, but some brows need extra coverage and intensity. We created this ultra-fine, loose brow powder with a built-in applicator to fill in sparse patches, create realistic volume and add lift. Get face-framing, runway-ready arches that make a statement and last all day.For more intensity, sweep brow with side of applicator. Precision applicator mimics natural hair Buildable coverage from understated to exaggerated 8-hour wear Shake well. Tap wand to remove excess powder. Apply in direction of hair growth.
+
+ INGREDIENTS: MICA , BORON NITRIDE , DIMETHICONE , SILICA , POLYETHYLENE , PENTYLENE GLYCOL , TOCOPHEROL , GLYCERIN , ETHYLHEXYLGLYCERIN , DIMETHICONOL , KAOLIN , PUMICE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , CAPRYLYL GLYCOL , CAPRYLHYDROXAMIC ACID , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:33:00.043Z,2017-12-23T20:49:19.103Z,http://makeup-api.herokuapp.com/api/v1/products/553.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/553/original/data?1514062159,"[{'hex_value': '#674d3b', 'colour_name': 'BRUNETTE'}, {'hex_value': '#8b6654', 'colour_name': 'TAUPE'}, {'hex_value': '#443227', 'colour_name': 'DARK BROWN'}, {'hex_value': '#a08572', 'colour_name': 'BLONDE'}]"
+552,smashbox,Brow Tech To Go,28.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35627_388x396_0.jpg,http://www.smashbox.com/product/6026/17808/eyes/brow/brow-tech-to-go/self-healthy-beauty-award-2011,http://www.smashbox.com/,"Makeup artists in our L.A. photo studio take this on-the-go power pencil on location. Now you can use it to get polished eye brows anywhere, any time! One side has a waterproof pencil with an angled tip you can use to fill in long-wearing arches. The other contains a clear gel with a brush applicator so you can groom (and hold!) your bold brow look. Hit the road with multiple brow products in one!For a natural look, you can use the clear gel on its own. Angled pencil fills, shapes & defines Clear gel grooms & holds Spoolie blends & sets Use wide side of pencil to fill in and tip to define. Brush the soft-hold gel through brows for a complete polished look.
+
+ PencilINGREDIENTS: Hydrogenated Soybean Oil, Hydrogenated Coco-Glycerides, Hydrogenated Vegetable Oil, Zinc Stearate, Stearic Acid, Copernicia Cerifera (Carnauba) Wax\Cera Carnauba\Cire De Carnauba, Polyglyceryl-2 Triisostearate, Tocopherol, Ascorbyl Palmitate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)]GelINGREDIENTS: Water\Aqua\Eau, VP/VA Copolymer, Glycerin, Triethanolamine, Carbomer, Caprylyl Glycol, Phenoxyethanol
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Makeup artists in our L.A. photo studio take this on-the-go power pencil on location. Now you can use it to get polished eye brows anywhere, any time! One side has a waterproof pencil with an angled tip you can use to fill in long-wearing arches. The other contains a clear gel with a brush applicator so you can groom (and hold!) your bold brow look. Hit the road with multiple brow products in one!For a natural look, you can use the clear gel on its own. Angled pencil fills, shapes & defines Clear gel grooms & holds Spoolie blends & sets Use wide side of pencil to fill in and tip to define. Brush the soft-hold gel through brows for a complete polished look.
+
+ PencilINGREDIENTS: Hydrogenated Soybean Oil, Hydrogenated Coco-Glycerides, Hydrogenated Vegetable Oil, Zinc Stearate, Stearic Acid, Copernicia Cerifera (Carnauba) Wax\Cera Carnauba\Cire De Carnauba, Polyglyceryl-2 Triisostearate, Tocopherol, Ascorbyl Palmitate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)]GelINGREDIENTS: Water\Aqua\Eau, VP/VA Copolymer, Glycerin, Triethanolamine, Carbomer, Caprylyl Glycol, Phenoxyethanol
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:32:59.897Z,2017-12-23T20:49:18.247Z,http://makeup-api.herokuapp.com/api/v1/products/552.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/552/original/data?1514062158,"[{'hex_value': '#b09983', 'colour_name': 'TAUPE'}, {'hex_value': '#7b6859', 'colour_name': 'BRUNETTE'}]"
+551,smashbox,24 Hour CC Spot Concealer,25.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62862_388x396_0.jpg,http://www.smashbox.com/product/17619/35610/Face/BB-CC/24-Hour-CC-Spot-Concealer/NEW,http://www.smashbox.com/,"We created this 24-hour, waterproof concealer in our L.A. photo studio to instantly cover dark spots, sun spots and post-acne marks while fading the look of them in as little as 4 weeks. You’re basically concealing and treating all at once, which means imperfections have met their match. Dab on this first-of-its-kind cover-up strategically, then get ready for your big reveal! 24-hour wear thanks to Photoset Polymers created with medical-grade liquid bandage technology that bends and adheres to skinWaterproofSweat & humidity-resistantTo use:Shake well and withdraw the applicator carefully before usingWipe down the applicator after each use (oil-based makeup remover will take care of any excess)Always screw cap tightlyIf traveling with product, we suggest storing in a bagFull disclosure: It's not for under eyes. For dark circles, check out BB Eye.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: DIMETHICONE , ISODODECANE , DIMETHICONE SILYLATE , PHENYL TRIMETHICONE , SILICA , POLYMETHYL METHACRYLATE , LECITHIN , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , BISABOLOL , PEG-10 DIMETHICONE , DIMETHOXYTOLYL PROPYLRESORCINOL , CETYL PEG/PPG-10/1 DIMETHICONE , DISTEARDIMONIUM HECTORITE , WATER\AQUA\EAU , PROPYLENE CARBONATE , TOCOPHERYL LINOLEATE/OLEATE , SORBITAN SESQUIOLEATE , TETRAHEXYLDECYL ASCORBATE , TRIETHOXYCAPRYLYLSILANE , POLYMETHYLSILSESQUIOXANE , HYDROGENATED POLYDECENE , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , LINOLEIC ACID , GLYCYRRHETINIC ACID , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ We created this 24-hour, waterproof concealer in our L.A. photo studio to instantly cover dark spots, sun spots and post-acne marks while fading the look of them in as little as 4 weeks. You’re basically concealing and treating all at once, which means imperfections have met their match. Dab on this first-of-its-kind cover-up strategically, then get ready for your big reveal! 24-hour wear thanks to Photoset Polymers created with medical-grade liquid bandage technology that bends and adheres to skinWaterproofSweat & humidity-resistantTo use:Shake well and withdraw the applicator carefully before usingWipe down the applicator after each use (oil-based makeup remover will take care of any excess)Always screw cap tightlyIf traveling with product, we suggest storing in a bagFull disclosure: It's not for under eyes. For dark circles, check out BB Eye.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: DIMETHICONE , ISODODECANE , DIMETHICONE SILYLATE , PHENYL TRIMETHICONE , SILICA , POLYMETHYL METHACRYLATE , LECITHIN , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , BISABOLOL , PEG-10 DIMETHICONE , DIMETHOXYTOLYL PROPYLRESORCINOL , CETYL PEG/PPG-10/1 DIMETHICONE , DISTEARDIMONIUM HECTORITE , WATER\AQUA\EAU , PROPYLENE CARBONATE , TOCOPHERYL LINOLEATE/OLEATE , SORBITAN SESQUIOLEATE , TETRAHEXYLDECYL ASCORBATE , TRIETHOXYCAPRYLYLSILANE , POLYMETHYLSILSESQUIOXANE , HYDROGENATED POLYDECENE , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , LINOLEIC ACID , GLYCYRRHETINIC ACID , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,bb_cc,foundation,[],2016-10-02T01:32:59.590Z,2017-12-23T20:49:17.733Z,http://makeup-api.herokuapp.com/api/v1/products/551.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/551/original/data?1514062157,"[{'hex_value': '#e2be9b', 'colour_name': 'FAIR/LIGHT'}, {'hex_value': '#ecc6af', 'colour_name': 'LIGHT'}, {'hex_value': '#d7a280', 'colour_name': 'LIGHT/NEUTRAL'}, {'hex_value': '#d49569', 'colour_name': 'LIGHT/MEDIUM'}, {'hex_value': '#c48459', 'colour_name': 'MEDIUM'}, {'hex_value': '#ab7045', 'colour_name': 'MEDIUM/DARK'}, {'hex_value': '#95633b', 'colour_name': 'DARK'}]"
+550,smashbox,Camera Ready BB Cream Eyes SPF 15,25.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_48698_388x396_0.jpg,http://www.smashbox.com/product/17619/26033/Face/BB-CC/Camera-Ready-BB-Cream-Eyes-SPF-15,http://www.smashbox.com/,"Early shoots in our L.A. photo studio call for wide-awake, bright eyes that wow! We added the benefits and buildable coverage of BB to a lightweight under-eye cream that instantly illuminates.Use above and below brow to highlight and lift. Primes. Conceals. Hydrated. Illuminates. Protects with SPF 15 Reduces appearance of dark circles & puffiness—now and over time Visibly firms and smoothes fine lines & wrinles Twist to release. Brush from inner to outer corner. For extreme dark circles, apply in V-shape. Pat to blend.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.10% , TITANIUM DIOXIDE 1.40% , ZINC OXIDE 1.50% INGREDIENTS: WATER\AQUA\EAU , CYCLOPENTASILOXANE , DIMETHICONE , DIMETHICONE SILYLATE , DISTEARDIMONIUM HECTORITE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PEG/PPG-18/18 DIMETHICONE , TOCOPHERYL ACETATE , SODIUM HYALURONATE , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER , CAFFEINE , ETHYLHEXYLGLYCERIN , YEAST EXTRACT\FAEX\EXTRAIT DE LEVURE , OCTYLDODECYL NEOPENTANOATE , POLYGLYCERYL-6 POLYRICINOLEATE , PHYTOSPHINGOSINE , ACETYL HEXAPEPTIDE-8 , SILICA , MAGNESIUM SULFATE , PROPYLENE CARBONATE , TRIETHOXYCAPRYLYLSILANE , POLYSILICONE-11 , SORBITAN SESQUIOLEATE , ALUMINA , LAURETH-7 , STEARIC ACID , ISOPROPYL TITANIUM TRIISOSTEARATE , CHLOROXYLENOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Early shoots in our L.A. photo studio call for wide-awake, bright eyes that wow! We added the benefits and buildable coverage of BB to a lightweight under-eye cream that instantly illuminates.Use above and below brow to highlight and lift. Primes. Conceals. Hydrated. Illuminates. Protects with SPF 15 Reduces appearance of dark circles & puffiness—now and over time Visibly firms and smoothes fine lines & wrinles Twist to release. Brush from inner to outer corner. For extreme dark circles, apply in V-shape. Pat to blend.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.10% , TITANIUM DIOXIDE 1.40% , ZINC OXIDE 1.50% INGREDIENTS: WATER\AQUA\EAU , CYCLOPENTASILOXANE , DIMETHICONE , DIMETHICONE SILYLATE , DISTEARDIMONIUM HECTORITE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PEG/PPG-18/18 DIMETHICONE , TOCOPHERYL ACETATE , SODIUM HYALURONATE , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER , CAFFEINE , ETHYLHEXYLGLYCERIN , YEAST EXTRACT\FAEX\EXTRAIT DE LEVURE , OCTYLDODECYL NEOPENTANOATE , POLYGLYCERYL-6 POLYRICINOLEATE , PHYTOSPHINGOSINE , ACETYL HEXAPEPTIDE-8 , SILICA , MAGNESIUM SULFATE , PROPYLENE CARBONATE , TRIETHOXYCAPRYLYLSILANE , POLYSILICONE-11 , SORBITAN SESQUIOLEATE , ALUMINA , LAURETH-7 , STEARIC ACID , ISOPROPYL TITANIUM TRIISOSTEARATE , CHLOROXYLENOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,bb_cc,foundation,[],2016-10-02T01:32:59.117Z,2017-12-23T20:49:06.246Z,http://makeup-api.herokuapp.com/api/v1/products/550.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/550/original/data?1514062146,"[{'hex_value': '#f3d6c7', 'colour_name': 'FAIR'}, {'hex_value': '#e9c09f', 'colour_name': 'FAIR/LIGHT'}, {'hex_value': '#f8e2cc', 'colour_name': 'LIGHT'}, {'hex_value': '#d4a47f', 'colour_name': 'LIGHT/NEUTRAL'}, {'hex_value': '#e9c9b4', 'colour_name': 'LIGHT/MEDIUM '}, {'hex_value': '#e2b49d', 'colour_name': 'MEDIUM'}, {'hex_value': '#9e6d4e', 'colour_name': 'MEDIUM/DARK'}, {'hex_value': '#b17c60', 'colour_name': 'DARK '}]"
+549,smashbox,Photo Filter Foundation,42.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_60243_388x396_0.jpg,http://www.smashbox.com/product/6035/33839/Face/Foundation-Powder/Photo-Filter-Foundation,http://www.smashbox.com/,"Can’t re-touch this! Pros in our L.A. photo studio created this velvety soft powder foundation with Light Filter Technology to instantly blur and diffuse imperfections, leaving you with a super natural radiance. No lighting crew needed.In a pinch—or for a no-makeup makeup look—use as base shadow to quickly liven eyes. 8-hour, color-true wear Customized, buildable medium coverage Non-drying, non-caking & non-settling; oil-free Choose your finish: Use the velvety side of the sponge for a medium finish, or the smooth side for full-on coverage.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , BORON NITRIDE , SILICA , POLYMETHYLSILSESQUIOXANE , GLYCERIN , WATER\AQUA\EAU , CALCIUM ALUMINUM BOROSILICATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , SQUALANE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , DIMETHICONE , CERAMIDE 3 , BETAINE , ETHYLHEXYL PALMITATE , PALMITOYL OLIGOPEPTIDE , ACETYL HEXAPEPTIDE-8 , SODIUM PCA , PHOSPHOLIPIDS , CHOLESTEROL , METHICONE , TREHALOSE , TRIBEHENIN , PYRIDOXINE DIPALMITATE , DISODIUM STEAROYL GLUTAMATE , ISODODECANE , ALUMINUM DIMYRISTATE , DIMETHICONE SILYLATE , POLYMETHYL METHACRYLATE , METHYL METHACRYLATE CROSSPOLYMER , GLYCERYL POLYMETHACRYLATE , TRIMETHYLSILOXYSILICATE , POLYQUATERNIUM-51 , SODIUM LAUROYL ASPARTATE , ISOPROPYL TITANIUM TRIISOSTEARATE , TRIETHOXYCAPRYLYLSILANE , ZINC CHLORIDE , PEG-8 , UREA , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , LINOLEIC ACID , SORBITAN ISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Can’t re-touch this! Pros in our L.A. photo studio created this velvety soft powder foundation with Light Filter Technology to instantly blur and diffuse imperfections, leaving you with a super natural radiance. No lighting crew needed.In a pinch—or for a no-makeup makeup look—use as base shadow to quickly liven eyes. 8-hour, color-true wear Customized, buildable medium coverage Non-drying, non-caking & non-settling; oil-free Choose your finish: Use the velvety side of the sponge for a medium finish, or the smooth side for full-on coverage.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , BORON NITRIDE , SILICA , POLYMETHYLSILSESQUIOXANE , GLYCERIN , WATER\AQUA\EAU , CALCIUM ALUMINUM BOROSILICATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , SQUALANE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , DIMETHICONE , CERAMIDE 3 , BETAINE , ETHYLHEXYL PALMITATE , PALMITOYL OLIGOPEPTIDE , ACETYL HEXAPEPTIDE-8 , SODIUM PCA , PHOSPHOLIPIDS , CHOLESTEROL , METHICONE , TREHALOSE , TRIBEHENIN , PYRIDOXINE DIPALMITATE , DISODIUM STEAROYL GLUTAMATE , ISODODECANE , ALUMINUM DIMYRISTATE , DIMETHICONE SILYLATE , POLYMETHYL METHACRYLATE , METHYL METHACRYLATE CROSSPOLYMER , GLYCERYL POLYMETHACRYLATE , TRIMETHYLSILOXYSILICATE , POLYQUATERNIUM-51 , SODIUM LAUROYL ASPARTATE , ISOPROPYL TITANIUM TRIISOSTEARATE , TRIETHOXYCAPRYLYLSILANE , ZINC CHLORIDE , PEG-8 , UREA , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , LINOLEIC ACID , SORBITAN ISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,foundation,[],2016-10-02T01:32:58.578Z,2017-12-23T20:49:16.404Z,http://makeup-api.herokuapp.com/api/v1/products/549.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/549/original/open-uri20171223-4-roqdiv?1514062156,"[{'hex_value': '#ecc9a9', 'colour_name': '1'}, {'hex_value': '#e3b998', 'colour_name': '2'}, {'hex_value': '#e9bc91', 'colour_name': '3'}, {'hex_value': '#e1b088', 'colour_name': '4'}, {'hex_value': '#e3b180', 'colour_name': '5'}, {'hex_value': '#e2aa78', 'colour_name': '6'}, {'hex_value': '#d69a6a', 'colour_name': '7'}, {'hex_value': '#c98758', 'colour_name': '8'}, {'hex_value': '#c48152', 'colour_name': '9'}, {'hex_value': '#905839', 'colour_name': '10'}]"
+548,smashbox,Halo Hydrating Powder,49.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_54411_388x396_0.jpg,http://www.smashbox.com/product/6035/29915/Face/Foundation-Powder/Halo-Hydrating-Powder,http://www.smashbox.com/,"Our studio makeup artists spill secrets. Not powder! This genius container releases the perfect amount with every twist. Skip the over-powdered, cakey look. Even HD cameras can’t see this! From sheer layers to medium coverage, you’ll always be flawless.Tap powder into palm. Add a drop of water. Use a makeup sponge to apply a thick layer to areas you want to highlight. Let set, then sweep away excess. Oil-free Talc-free Paraben-free For fresh powder every time, just twist the shaver, swirl brush into powder and apply to face.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: MICA , ETHYLHEXYL PALMITATE , COCO-CAPRYLATE/CAPRATE , POLYMETHYLSILSESQUIOXANE , HDI/TRIMETHYLOL HEXYLLACTONE CROSSPOLYMER , ZINC STEARATE , SYNTHETIC WAX , WATER\AQUA\EAU , HYDROXYLATED LECITHIN , LYCIUM BARBARUM FRUIT EXTRACT , PEAT EXTRACT , GOLD , PALMITOYL HEXAPEPTIDE-14 , SILICA , POLYETHYLENE , DIMETHYLACRYLAMIDE/ACRYLIC ACID/POLYSTYRENE ETHYL METHACRYLATE COPOLYMER , BARIUM SULFATE , DIMETHYL ISOSORBIDE , HEXYLENE GLYCOL , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , ETHOXYDIGLYCOL , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , SODIUM BENZOATE , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Our studio makeup artists spill secrets. Not powder! This genius container releases the perfect amount with every twist. Skip the over-powdered, cakey look. Even HD cameras can’t see this! From sheer layers to medium coverage, you’ll always be flawless.Tap powder into palm. Add a drop of water. Use a makeup sponge to apply a thick layer to areas you want to highlight. Let set, then sweep away excess. Oil-free Talc-free Paraben-free For fresh powder every time, just twist the shaver, swirl brush into powder and apply to face.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: MICA , ETHYLHEXYL PALMITATE , COCO-CAPRYLATE/CAPRATE , POLYMETHYLSILSESQUIOXANE , HDI/TRIMETHYLOL HEXYLLACTONE CROSSPOLYMER , ZINC STEARATE , SYNTHETIC WAX , WATER\AQUA\EAU , HYDROXYLATED LECITHIN , LYCIUM BARBARUM FRUIT EXTRACT , PEAT EXTRACT , GOLD , PALMITOYL HEXAPEPTIDE-14 , SILICA , POLYETHYLENE , DIMETHYLACRYLAMIDE/ACRYLIC ACID/POLYSTYRENE ETHYL METHACRYLATE COPOLYMER , BARIUM SULFATE , DIMETHYL ISOSORBIDE , HEXYLENE GLYCOL , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , ETHOXYDIGLYCOL , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , SODIUM BENZOATE , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,foundation,[],2016-10-02T01:32:58.374Z,2017-12-23T20:49:16.039Z,http://makeup-api.herokuapp.com/api/v1/products/548.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/548/original/open-uri20171223-4-1oykkjg?1514062155,"[{'hex_value': '#eed7ca', 'colour_name': 'FAIR'}, {'hex_value': '#f8e0ca', 'colour_name': 'FAIR/LIGHT'}, {'hex_value': '#efd1b9', 'colour_name': 'LIGHT'}, {'hex_value': '#edcebd', 'colour_name': 'LIGHT/NEUTRAL'}, {'hex_value': '#eabd97', 'colour_name': 'LIGHT/MEDIUM'}, {'hex_value': '#cea17f', 'colour_name': 'MEDIUM'}, {'hex_value': '#a2775f', 'colour_name': 'MEDIUM/DARK'}, {'hex_value': '#795947', 'colour_name': 'DARK'}]"
+547,smashbox,Halo HD Foundation SPF 15,45.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_48688_388x396_0.jpg,http://www.smashbox.com/product/6035/26031/Face/Foundation-Powder/Halo-HD-Foundation-SPF-15/Award-Winner,http://www.smashbox.com/,"Hey, even models have imperfections. And HD cameras capture everything! Our studio pros developed this long-wearing, sweat-resistant formula to evolve with camera capabilities and give you flawless, sheer to medium coverage that's undetectable to the naked eye. This foundation evens out your skin with 100% Liquid Light Technology. The natural, luminous finish will have you HD-ready in a flash! Works with all undertones Buildable sheer-to-medium coverage Long-wearing Moisturizing Sweat and humidity resistant BONUS! Makeup always looks better with primer-so we've included a free sample of our award-winning Photo Finish Foundation Primer inside.Starting at center of face, apply Liquid Halo HD Foundation and build to desired coverage.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.90% , TITANIUM DIOXIDE 2.90% INGREDIENTS: WATER\AQUA\EAU , ISODODECANE , CYCLOPENTASILOXANE , DIMETHICONE , BUTYLENE GLYCOL , POLYMETHYL METHACRYLATE , TRIOCTYLDODECYL CITRATE , POLYSILICONE-11 , COCO-CAPRYLATE/CAPRATE , PEG/PPG-18/18 DIMETHICONE , POLYGLYCERYL-4 ISOSTEARATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , CETYL PEG/PPG-10/1 DIMETHICONE , HEXYL LAURATE , QUATERNIUM-90 BENTONITE , DIMETHICONE SILYLATE , MAGNESIUM ALUMINUM SILICATE , ALUMINA , SILICA , PROPYLENE CARBONATE , SODIUM CHLORIDE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , STEARIC ACID , PALMITIC ACID , C12-16 ALCOHOLS , HYDROGENATED LECITHIN , DISODIUM EDTA , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Hey, even models have imperfections. And HD cameras capture everything! Our studio pros developed this long-wearing, sweat-resistant formula to evolve with camera capabilities and give you flawless, sheer to medium coverage that's undetectable to the naked eye. This foundation evens out your skin with 100% Liquid Light Technology. The natural, luminous finish will have you HD-ready in a flash! Works with all undertones Buildable sheer-to-medium coverage Long-wearing Moisturizing Sweat and humidity resistant BONUS! Makeup always looks better with primer-so we've included a free sample of our award-winning Photo Finish Foundation Primer inside.Starting at center of face, apply Liquid Halo HD Foundation and build to desired coverage.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.90% , TITANIUM DIOXIDE 2.90% INGREDIENTS: WATER\AQUA\EAU , ISODODECANE , CYCLOPENTASILOXANE , DIMETHICONE , BUTYLENE GLYCOL , POLYMETHYL METHACRYLATE , TRIOCTYLDODECYL CITRATE , POLYSILICONE-11 , COCO-CAPRYLATE/CAPRATE , PEG/PPG-18/18 DIMETHICONE , POLYGLYCERYL-4 ISOSTEARATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , CETYL PEG/PPG-10/1 DIMETHICONE , HEXYL LAURATE , QUATERNIUM-90 BENTONITE , DIMETHICONE SILYLATE , MAGNESIUM ALUMINUM SILICATE , ALUMINA , SILICA , PROPYLENE CARBONATE , SODIUM CHLORIDE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , STEARIC ACID , PALMITIC ACID , C12-16 ALCOHOLS , HYDROGENATED LECITHIN , DISODIUM EDTA , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,foundation,[],2016-10-02T01:32:58.010Z,2017-12-23T20:49:15.853Z,http://makeup-api.herokuapp.com/api/v1/products/547.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/547/original/open-uri20171223-4-5s41e3?1514062155,"[{'hex_value': '#f8dfcf', 'colour_name': '1'}, {'hex_value': '#efc5a9', 'colour_name': '3'}, {'hex_value': '#ecbb9b', 'colour_name': '4'}, {'hex_value': '#9a5838', 'colour_name': '9'}, {'hex_value': '#794328', 'colour_name': '10'}]"
+546,smashbox,Camera Ready CC Cream,42.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_47699_388x396_0.jpg,http://www.smashbox.com/product/17619/25337/Face/BB-CC/Camera-Ready-CC-Cream/SPF-30,http://www.smashbox.com/,"In our L.A. photo studio, we love a tinted timesaver. This silky, lightweight formula glides on with the coverage of makeup and the benefits of skin care—for an instantly brighter complexion—in just one step!Pat on for fuller coverage. Primes. Perfects. Moisturizes. Creates radiance. Protects with SPF 30 Instantly brightens skin, neutralizes redness, and visibly fades dark spots, sun spots & post-acne marks instantly and over time Apply a pea-sized amount to face and lightly blend with fingertips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\AQUA\EAU , DIMETHICONE , BUTYLENE GLYCOL , PROPANEDIOL , GLYCERYL STEARATE , PHENYL TRIMETHICONE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , ASCORBYL GLUCOSIDE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , OCTYLDODECYL STEAROYL STEARATE , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , OCTYLDODECYL NEOPENTANOATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , POLYGLYCERYL-6 POLYRICINOLEATE , LAMINARIA SACCHARINA EXTRACT , GLYCYRRHETINIC ACID , SUCROSE , SCUTELLARIA BAICALENSIS ROOT EXTRACT , LECITHIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , ACETYL HEXAPEPTIDE-8 , CHOLESTEROL , TOCOPHERYL ACETATE , TETRAHEXYLDECYL ASCORBATE , TOCOPHERYL LINOLEATE/OLEATE , LINOLEIC ACID , DIMETHOXYTOLYL PROPYLRESORCINOL , SQUALANE , SODIUM PCA , UREA , BISABOLOL , ISOPROPYL TITANIUM TRIISOSTEARATE , GLYCERIN , ORYZANOL , SODIUM HYALURONATE , TREHALOSE , POLYQUATERNIUM-51 , STEARIC ACID , SILICA , ERGOTHIONEINE , XANTHAN GUM , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , ALUMINA , DISODIUM EDTA , PHENOXYETHANOL , SODIUM DEHYDROACETATE , CHLORPHENESIN , [+/- IRON OXIDES (CI 77492) , ZINC OXIDE (CI 77497) , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ In our L.A. photo studio, we love a tinted timesaver. This silky, lightweight formula glides on with the coverage of makeup and the benefits of skin care—for an instantly brighter complexion—in just one step!Pat on for fuller coverage. Primes. Perfects. Moisturizes. Creates radiance. Protects with SPF 30 Instantly brightens skin, neutralizes redness, and visibly fades dark spots, sun spots & post-acne marks instantly and over time Apply a pea-sized amount to face and lightly blend with fingertips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\AQUA\EAU , DIMETHICONE , BUTYLENE GLYCOL , PROPANEDIOL , GLYCERYL STEARATE , PHENYL TRIMETHICONE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , ASCORBYL GLUCOSIDE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , OCTYLDODECYL STEAROYL STEARATE , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , OCTYLDODECYL NEOPENTANOATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , POLYGLYCERYL-6 POLYRICINOLEATE , LAMINARIA SACCHARINA EXTRACT , GLYCYRRHETINIC ACID , SUCROSE , SCUTELLARIA BAICALENSIS ROOT EXTRACT , LECITHIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , ACETYL HEXAPEPTIDE-8 , CHOLESTEROL , TOCOPHERYL ACETATE , TETRAHEXYLDECYL ASCORBATE , TOCOPHERYL LINOLEATE/OLEATE , LINOLEIC ACID , DIMETHOXYTOLYL PROPYLRESORCINOL , SQUALANE , SODIUM PCA , UREA , BISABOLOL , ISOPROPYL TITANIUM TRIISOSTEARATE , GLYCERIN , ORYZANOL , SODIUM HYALURONATE , TREHALOSE , POLYQUATERNIUM-51 , STEARIC ACID , SILICA , ERGOTHIONEINE , XANTHAN GUM , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , ALUMINA , DISODIUM EDTA , PHENOXYETHANOL , SODIUM DEHYDROACETATE , CHLORPHENESIN , [+/- IRON OXIDES (CI 77492) , ZINC OXIDE (CI 77497) , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,bb_cc,foundation,[],2016-10-02T01:32:57.772Z,2017-12-23T20:49:16.989Z,http://makeup-api.herokuapp.com/api/v1/products/546.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/546/original/open-uri20171223-4-wlcxa5?1514062156,"[{'hex_value': '#F8D5C4', 'colour_name': 'FAIR'}, {'hex_value': '#f1c5ab', 'colour_name': 'NEW SHADE! FAIR/LIGHT'}, {'hex_value': '#E9BBA4', 'colour_name': 'LIGHT'}, {'hex_value': '#e1b89f', 'colour_name': 'NEW SHADE! LIGHT/NEUTRAL'}, {'hex_value': '#D9A593', 'colour_name': 'LIGHT/MEDIUM'}, {'hex_value': '#C08571', 'colour_name': 'MEDIUM'}, {'hex_value': '#ac7d68', 'colour_name': 'NEW SHADE! MEDIUM/DARK'}, {'hex_value': '#B17966', 'colour_name': 'DARK'}]"
+545,smashbox,Camera Ready BB Cream SPF 35,39.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_42069_388x396_0.jpg,http://www.smashbox.com/product/17619/21835/Face/BB-CC/Camera-Ready-BB-Cream-SPF-35/Studio-Artist-Favorite,http://www.smashbox.com/,"Wonder why models in our L.A. photo studio hoard this 5-in-1 miracle-worker BB cream? It cuts down on prep time and instantly creates even, radiant skin.Pat on for fuller coverage. Primes. Perfects. Hydrates. Banishes shine. Protects with SPF 35 Reduces appearance of fine lines & wrinkles in just 4 weeks Wear alone or under foundation for more coverage Apply a pea-sized amount to face and lightly blend with fingertips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\AQUA\EAU , DIMETHICONE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PENTYLENE GLYCOL , GLYCERYL STEARATE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , OCTYLDODECYL STEAROYL STEARATE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , TRITICUM VULGARE (WHEAT) GERM EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , LAMINARIA SACCHARINA EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , POLYQUATERNIUM-51 , ACETYL HEXAPEPTIDE-8 , TREHALOSE , ORYZANOL , OCTYLDODECYL NEOPENTANOATE , UREA , POLYGLYCERYL-6 POLYRICINOLEATE , PROPYLENE GLYCOL LAURATE , GLYCYRRHETINIC ACID , TOCOPHERYL ACETATE , SUCROSE , GLYCERIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , LINOLEIC ACID , CHOLESTEROL , LECITHIN , SQUALANE , SODIUM PCA , ISOPROPYL TITANIUM TRIISOSTEARATE , PROPYLENE GLYCOL STEARATE , STEARIC ACID , POLYSORBATE 20 , SORBITAN LAURATE , XANTHAN GUM , ALUMINUM HYDROXIDE , SODIUM HYALURONATE , SILICA , DISODIUM EDTA , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , SODIUM DEHYDROACETATE , CHLORPHENESIN , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , ZINC OXIDE (CI 77947) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , MICA]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Wonder why models in our L.A. photo studio hoard this 5-in-1 miracle-worker BB cream? It cuts down on prep time and instantly creates even, radiant skin.Pat on for fuller coverage. Primes. Perfects. Hydrates. Banishes shine. Protects with SPF 35 Reduces appearance of fine lines & wrinkles in just 4 weeks Wear alone or under foundation for more coverage Apply a pea-sized amount to face and lightly blend with fingertips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\AQUA\EAU , DIMETHICONE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PENTYLENE GLYCOL , GLYCERYL STEARATE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , OCTYLDODECYL STEAROYL STEARATE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , TRITICUM VULGARE (WHEAT) GERM EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\EXTRAIT D'ORGE , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , LAMINARIA SACCHARINA EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , POLYQUATERNIUM-51 , ACETYL HEXAPEPTIDE-8 , TREHALOSE , ORYZANOL , OCTYLDODECYL NEOPENTANOATE , UREA , POLYGLYCERYL-6 POLYRICINOLEATE , PROPYLENE GLYCOL LAURATE , GLYCYRRHETINIC ACID , TOCOPHERYL ACETATE , SUCROSE , GLYCERIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , LINOLEIC ACID , CHOLESTEROL , LECITHIN , SQUALANE , SODIUM PCA , ISOPROPYL TITANIUM TRIISOSTEARATE , PROPYLENE GLYCOL STEARATE , STEARIC ACID , POLYSORBATE 20 , SORBITAN LAURATE , XANTHAN GUM , ALUMINUM HYDROXIDE , SODIUM HYALURONATE , SILICA , DISODIUM EDTA , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , SODIUM DEHYDROACETATE , CHLORPHENESIN , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , ZINC OXIDE (CI 77947) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , MICA]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,bb_cc,foundation,[],2016-10-02T01:32:57.580Z,2017-12-23T20:49:17.246Z,http://makeup-api.herokuapp.com/api/v1/products/545.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/545/original/open-uri20171223-4-1wpxygg?1514062157,"[{'hex_value': '#f8d5c4', 'colour_name': 'FAIR'}, {'hex_value': '#f1c5ab', 'colour_name': 'NEW SHADE! FAIR/LIGHT'}, {'hex_value': '#e9bba4', 'colour_name': 'LIGHT'}, {'hex_value': '#e1b89f', 'colour_name': 'NEW SHADE! LIGHT/NEUTRAL'}, {'hex_value': '#d9a593', 'colour_name': 'LIGHT/MEDIUM'}, {'hex_value': '#c08571', 'colour_name': 'MEDIUM'}, {'hex_value': '#ac7d68', 'colour_name': 'NEW SHADE! MEDIUM/DARK'}, {'hex_value': '#b17966', 'colour_name': 'DARK'}]"
+544,smashbox,Camera Ready BB Water SPF 30,42.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62894_388x396_0.jpg,http://www.smashbox.com/product/17619/35631/Face/BB-CC/Camera-Ready-BB-Water-SPF-30/New,http://www.smashbox.com/,"To keep things looking natural (even with SPF 30) under our L.A. photo studio lights, we created our most lightweight, dewy BB yet—a water-like hydrating formula with all the complexion perfecting benefits of our cream in each drop.Pat on for fuller coverage. Primes. Perfects. Hydrates. Protects with SPF 30 Demi-matte, never flat finish with buildable coverage Photoset Polymers create all-day wear Oil- and alcohol-free; perfect for all skin types Shake bottle well. Use dropper to release 1 to 2 drops on the back of your hand and blend into face with fingertips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 5.0% , TITANIUM DIOXIDE 3.1% , ZINC OXIDE 2.1% INGREDIENTS: WATER\AQUA\EAU , METHYL TRIMETHICONE , PHENYL TRIMETHICONE , SILICA , BUTYLOCTYL SALICYLATE , DIMETHICONE , NEOPENTYL GLYCOL DIHEPTANOATE , C12-15 ALKYL BENZOATE , BUTYLENE GLYCOL , DIMETHICONE SILYLATE , LAURYL PEG-9 POLYDIMETHYLSILOXYETHYL DIMETHICONE , ETHYLHEXYL PALMITATE , GLYCERIN , POLYSILICONE-11 , TOCOPHERYL ACETATE , SODIUM HYALURONATE , LECITHIN , CITRULLUS VULGARIS (WATERMELON) FRUIT EXTRACT , LENS ESCULENTA (LENTIL) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCINE SOJA (SOYBEAN) PROTEIN , PEG-10 DIMETHICONE , SODIUM PCA , METHICONE , TRIETHYL CITRATE , THERMUS THERMOPHILLUS FERMENT , LAURETH-7 , TRIMETHYLSILOXYSILICATE , SILICA DIMETHYL SILYLATE , MAGNESIUM ALUMINUM SILICATE , POLYMETHYLSILSESQUIOXANE , TRIETHOXYCAPRYLYLSILANE , DEXTRIN , DISTEARDIMONIUM HECTORITE , XANTHAN GUM , SODIUM CHLORIDE , DIMETHICONE/PEG-10/15 CROSSPOLYMER , SODIUM LACTATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , ZINC STEARATE , LITCHI CHINENSIS SEED EXTRACT , POLYGLUTAMIC ACID , LAMINARIA SACCHARINA EXTRACT , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ To keep things looking natural (even with SPF 30) under our L.A. photo studio lights, we created our most lightweight, dewy BB yet—a water-like hydrating formula with all the complexion perfecting benefits of our cream in each drop.Pat on for fuller coverage. Primes. Perfects. Hydrates. Protects with SPF 30 Demi-matte, never flat finish with buildable coverage Photoset Polymers create all-day wear Oil- and alcohol-free; perfect for all skin types Shake bottle well. Use dropper to release 1 to 2 drops on the back of your hand and blend into face with fingertips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 5.0% , TITANIUM DIOXIDE 3.1% , ZINC OXIDE 2.1% INGREDIENTS: WATER\AQUA\EAU , METHYL TRIMETHICONE , PHENYL TRIMETHICONE , SILICA , BUTYLOCTYL SALICYLATE , DIMETHICONE , NEOPENTYL GLYCOL DIHEPTANOATE , C12-15 ALKYL BENZOATE , BUTYLENE GLYCOL , DIMETHICONE SILYLATE , LAURYL PEG-9 POLYDIMETHYLSILOXYETHYL DIMETHICONE , ETHYLHEXYL PALMITATE , GLYCERIN , POLYSILICONE-11 , TOCOPHERYL ACETATE , SODIUM HYALURONATE , LECITHIN , CITRULLUS VULGARIS (WATERMELON) FRUIT EXTRACT , LENS ESCULENTA (LENTIL) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCINE SOJA (SOYBEAN) PROTEIN , PEG-10 DIMETHICONE , SODIUM PCA , METHICONE , TRIETHYL CITRATE , THERMUS THERMOPHILLUS FERMENT , LAURETH-7 , TRIMETHYLSILOXYSILICATE , SILICA DIMETHYL SILYLATE , MAGNESIUM ALUMINUM SILICATE , POLYMETHYLSILSESQUIOXANE , TRIETHOXYCAPRYLYLSILANE , DEXTRIN , DISTEARDIMONIUM HECTORITE , XANTHAN GUM , SODIUM CHLORIDE , DIMETHICONE/PEG-10/15 CROSSPOLYMER , SODIUM LACTATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , ZINC STEARATE , LITCHI CHINENSIS SEED EXTRACT , POLYGLUTAMIC ACID , LAMINARIA SACCHARINA EXTRACT , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,bb_cc,foundation,[],2016-10-02T01:32:57.257Z,2017-12-23T20:49:16.759Z,http://makeup-api.herokuapp.com/api/v1/products/544.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/544/original/data?1514062156,"[{'hex_value': '#e1b294', 'colour_name': 'FAIR'}, {'hex_value': '#d5a07a', 'colour_name': 'LIGHT/NEUTRAL'}, {'hex_value': '#cf9669', 'colour_name': 'LIGHT/MEDIUM'}, {'hex_value': '#c08555', 'colour_name': 'MEDIUM'}, {'hex_value': '#a3704c', 'colour_name': 'MEDIUM/DARK'}, {'hex_value': '#88563d', 'colour_name': 'DARK'}, {'hex_value': '#e4b796', 'colour_name': 'LIGHT'}]"
+543,smashbox,STUDIO SKIN 15 HOUR WEAR HYDRATING FOUNDATION ,42.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_71596_388x396_0.jpg,http://www.smashbox.com/product/6035/22769/Face/Foundation-Powder/STUDIO-SKIN-15-HOUR-WEAR-HYDRATING-FOUNDATION,http://www.smashbox.com/,"We created this hydrating foundation in our L.A. photo studio to look good in any light. We can prove it! We’re the only brand with Flashbox Lighting Lab, where we test and perfect color consistency across 22 shades. Our blendable, oil-free formula has a natural finish with medium to full coverage that looks amazing for 15 hours. Throughout the day, lighting changes, but your makeup won’t!For more sheer coverage, warm between fingertips before applyingMix in 1-2 drops of face oil (like Photo Finish Primer Oil) for a custom blend that'll create the level of dewy glow you wantMedium-to-full buildable coverageOil-free, hydrating formula – without the shineLight diffusing spheres blur imperfections Sweat & humidity resistantColor-true, exercise-resistant & transfer-proofBlend well over skin with brush, sponge or fingertips—starting at center of face. Build your way to customizable coverage.We created this hydrating foundation in our L.A. photo studio to look good in any light. We can prove it! We’re the only brand with Flashbox Lighting Lab, where we test and perfect color consistency across 22 shades. Our blendable, oil-free formula has a natural finish with medium to full coverage that looks amazing for 15 hours. Throughout the day, lighting changes, but your makeup won’t!For more sheer coverage, warm between fingertips before applyingMix in 1-2 drops of face oil (like Photo Finish Primer Oil) for a custom blend that'll create the level of dewy glow you wantMedium-to-full buildable coverageOil-free, hydrating formula – without the shineLight diffusing spheres blur imperfections Sweat & humidity resistantColor-true, exercise-resistant & transfer-proofBlend well over skin with brush, sponge or fingertips—starting at center of face. Build your way to customizable coverage.",,liquid,foundation,[],2016-10-02T01:32:56.996Z,2017-12-23T20:49:15.485Z,http://makeup-api.herokuapp.com/api/v1/products/543.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/543/original/open-uri20171223-4-1p9egza?1514062155,"[{'hex_value': '#fae6db', 'colour_name': '0.5'}, {'hex_value': '#f6ded1', 'colour_name': '1'}, {'hex_value': '#ebd6ca', 'colour_name': '1.1'}, {'hex_value': '#f6d4b9', 'colour_name': '1.15'}, {'hex_value': '#eaccb6', 'colour_name': '1.2'}, {'hex_value': '#e1c1a8', 'colour_name': '2.1'}, {'hex_value': '#f2c7a4', 'colour_name': '2.15'}, {'hex_value': '#dcb79a', 'colour_name': '2.2'}, {'hex_value': '#f2c198', 'colour_name': '2.25'}, {'hex_value': '#d3b099', 'colour_name': '2.3'}, {'hex_value': '#d3ac93', 'colour_name': '2.4'}, {'hex_value': '#d19d7a', 'colour_name': '3'}, {'hex_value': '#cea082', 'colour_name': '3.1'}, {'hex_value': '#d8a277', 'colour_name': '3.15'}, {'hex_value': '#af876c', 'colour_name': '3.2'}, {'hex_value': '#b67c4e', 'colour_name': '3.35'}, {'hex_value': '#b6754e', 'colour_name': '4'}, {'hex_value': '#98603d', 'colour_name': '4.05'}, {'hex_value': '#955d44', 'colour_name': '4.15'}, {'hex_value': '#765545', 'colour_name': '4.2'}, {'hex_value': '#643525', 'colour_name': '4.3'}, {'hex_value': '#563224', 'colour_name': '4.4'}]"
+542,smashbox,Hyperlash Mascara,23.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35576_388x396_0.jpg,http://www.smashbox.com/product/6030/17799/eyes/mascara/hyperlash-mascara,http://www.smashbox.com/,"When it comes to lashes, our L.A. photo studio needs low-maintenance and high-drama. We created this all-in-1 mascara with a unique applicator that has a brush on one side and a comb on the other to bring you long, full, clump-free lashes in seconds. Rich pigments bind to lashes for an ultra-intense look. Be totally photo-fabulous—on camera and off!De-curl unruly lashes by dragging mascara from top side down. Dual brush & comb applicator Intense deep-black pigments Use the brush to build and thicken. Follow with the comb side to define and lengthen.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Water\Aqua\Eau, Beeswax\Cera Alba\Cire d'Abeille, Stearic Acid, Glyceryl Stearate, PVP, VP/Eicosene Copolymer, Tribehenin, Copernicia Cerifera (Carnauba) Wax\Cera Carnauba\Cire De Carnauba, Glycerin, Tocopherol, Tocopheryl Acetate, Prunus Amygdalus Dulcis (Sweet Almond) Fruit Extract, Dimethicone, Euphorbia Cerifera (Candelilla) Wax\Candelilla Cera\Cire de Candelilla, Bis-PEG-18 Methyl Ether Dimethyl Silane, Silica Dimethyl Silylate, Aminomethyl Propanediol, Hydroxyethylcellulose, Synthetic Beeswax, Disodium EDTA, Phenoxyethanol, Sodium Benzoate, Sodium Dehydroacetate, Potassium Sorbate, [+/- Iron Oxides (CI 77491), Iron Oxides (CI 77499), Iron Oxides (CI 77492), Ultramarines (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ When it comes to lashes, our L.A. photo studio needs low-maintenance and high-drama. We created this all-in-1 mascara with a unique applicator that has a brush on one side and a comb on the other to bring you long, full, clump-free lashes in seconds. Rich pigments bind to lashes for an ultra-intense look. Be totally photo-fabulous—on camera and off!De-curl unruly lashes by dragging mascara from top side down. Dual brush & comb applicator Intense deep-black pigments Use the brush to build and thicken. Follow with the comb side to define and lengthen.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Water\Aqua\Eau, Beeswax\Cera Alba\Cire d'Abeille, Stearic Acid, Glyceryl Stearate, PVP, VP/Eicosene Copolymer, Tribehenin, Copernicia Cerifera (Carnauba) Wax\Cera Carnauba\Cire De Carnauba, Glycerin, Tocopherol, Tocopheryl Acetate, Prunus Amygdalus Dulcis (Sweet Almond) Fruit Extract, Dimethicone, Euphorbia Cerifera (Candelilla) Wax\Candelilla Cera\Cire de Candelilla, Bis-PEG-18 Methyl Ether Dimethyl Silane, Silica Dimethyl Silylate, Aminomethyl Propanediol, Hydroxyethylcellulose, Synthetic Beeswax, Disodium EDTA, Phenoxyethanol, Sodium Benzoate, Sodium Dehydroacetate, Potassium Sorbate, [+/- Iron Oxides (CI 77491), Iron Oxides (CI 77499), Iron Oxides (CI 77492), Ultramarines (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.781Z,2017-12-23T20:49:15.339Z,http://makeup-api.herokuapp.com/api/v1/products/542.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/542/original/data?1514062155,[]
+541,smashbox,Full Exposure Waterproof Mascara,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_54401_388x396_0.jpg,http://www.smashbox.com/product/6030/29914/eyes/mascara/full-exposure-waterproof-mascara,http://www.smashbox.com/,"Sometimes emotions run high in our L.A. photo studio. We developed this long-wearing, waterproof mascara to handle teary moments, rainy days—even a dip in the pool! It’s a high-impact, high-gloss, fiber-rich product that looks flawless and stays put for 10 hours. It also delivers length, volume and thickness without clumping, smudging or flaking out. Swipe on instant drama and face up!Flip brush vertical to literally paint mascara on individual lashes. Specialty brush lengthens, curls & volumizes No clumps, no flakes; sweat & humidity resistant Starting at the base of lashes, sweep mascara up and out.
+
+ INGREDIENTS: ISODODECANE , WATER\AQUA\EAU , PTFE , DIMETHICONE SILYLATE , SORBITAN OLIVATE , KAOLIN , TRISILOXANE , SORBITAN TRISTEARATE , POLYISOBUTENE , SILICA SILYLATE , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , TRIHYDROXYSTEARIN , DIISOPROPYL ADIPATE , CHOLESTEROL , METHICONE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , NYLON-6 , SILICA , NYLON-66 , TRIMETHYLSILOXYSILICATE , POLYETHYLENE TEREPHTHALATE , PROPYLENE CARBONATE , QUATERNIUM-90 BENTONITE , HECTORITE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PHENOXYETHANOL , MAGNESIUM SALICYLATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Sometimes emotions run high in our L.A. photo studio. We developed this long-wearing, waterproof mascara to handle teary moments, rainy days—even a dip in the pool! It’s a high-impact, high-gloss, fiber-rich product that looks flawless and stays put for 10 hours. It also delivers length, volume and thickness without clumping, smudging or flaking out. Swipe on instant drama and face up!Flip brush vertical to literally paint mascara on individual lashes. Specialty brush lengthens, curls & volumizes No clumps, no flakes; sweat & humidity resistant Starting at the base of lashes, sweep mascara up and out.
+
+ INGREDIENTS: ISODODECANE , WATER\AQUA\EAU , PTFE , DIMETHICONE SILYLATE , SORBITAN OLIVATE , KAOLIN , TRISILOXANE , SORBITAN TRISTEARATE , POLYISOBUTENE , SILICA SILYLATE , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , TRIHYDROXYSTEARIN , DIISOPROPYL ADIPATE , CHOLESTEROL , METHICONE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , NYLON-6 , SILICA , NYLON-66 , TRIMETHYLSILOXYSILICATE , POLYETHYLENE TEREPHTHALATE , PROPYLENE CARBONATE , QUATERNIUM-90 BENTONITE , HECTORITE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PHENOXYETHANOL , MAGNESIUM SALICYLATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.668Z,2017-12-23T20:49:15.200Z,http://makeup-api.herokuapp.com/api/v1/products/541.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/541/original/data?1514062155,[]
+540,smashbox,Full Exposure Mascara,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_37089_388x396_0.jpg,http://www.smashbox.com/product/6030/18515/eyes/mascara/full-exposure-mascara,http://www.smashbox.com/,"During high-profile shoots in our L.A. photo studio, we need to sweep on big, glossy lashes—fast. We infused this patent-leather formula with olive-oil complex to deliver insta-soft lashes and bring you the same fluttery fabulosity at home. When it comes to volume, our mantra is “crank it up.” Every swipe gives you fiber-rich length and thickness without clumps, flakes or smudges.Flip brush vertical to literally paint mascara on individual lashes. Big, tapered brush grabs lash at root for ultra-coverage Glossy fibers sculpt lashes up and out No clumping, smudging or flaking Starting at the base of lashes, sweep mascara up and out.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , STEARIC ACID , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , POLYISOBUTENE , POLYVINYL ACETATE , GLYCERYL STEARATE , PARAFFIN , SILICA , AMINOMETHYL PROPANEDIOL , POLYESTER-5 , ISOSTEARIC ACID , PVP , HYDROGENATED OLIVE OIL , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , PANTHENOL , PANTETHINE , KAOLIN , NYLON-6 , LAURETH-4 , HYDROXYETHYLCELLULOSE , VP/EICOSENE COPOLYMER , SIMETHICONE , SODIUM POLYACRYLATE , PTFE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , POLYAMINOPROPYL BIGUANIDE , CHLORPHENESIN , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ During high-profile shoots in our L.A. photo studio, we need to sweep on big, glossy lashes—fast. We infused this patent-leather formula with olive-oil complex to deliver insta-soft lashes and bring you the same fluttery fabulosity at home. When it comes to volume, our mantra is “crank it up.” Every swipe gives you fiber-rich length and thickness without clumps, flakes or smudges.Flip brush vertical to literally paint mascara on individual lashes. Big, tapered brush grabs lash at root for ultra-coverage Glossy fibers sculpt lashes up and out No clumping, smudging or flaking Starting at the base of lashes, sweep mascara up and out.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , STEARIC ACID , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , POLYISOBUTENE , POLYVINYL ACETATE , GLYCERYL STEARATE , PARAFFIN , SILICA , AMINOMETHYL PROPANEDIOL , POLYESTER-5 , ISOSTEARIC ACID , PVP , HYDROGENATED OLIVE OIL , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , PANTHENOL , PANTETHINE , KAOLIN , NYLON-6 , LAURETH-4 , HYDROXYETHYLCELLULOSE , VP/EICOSENE COPOLYMER , SIMETHICONE , SODIUM POLYACRYLATE , PTFE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , POLYAMINOPROPYL BIGUANIDE , CHLORPHENESIN , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.574Z,2017-12-23T20:49:14.888Z,http://makeup-api.herokuapp.com/api/v1/products/540.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/540/original/data?1514062154,[]
+539,smashbox,Indecent Exposure Mascara,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_68232_388x396_0.jpg,http://www.smashbox.com/product/6030/39356/eyes/mascara/indecent-exposure-mascara/new,http://www.smashbox.com/,"Created for extreme close-up shots in our L.A. photo studio, no lash can hide with this extreme lengthening formula that takes lashes from barely there to make-‘em-stare.Kick out corner of lashes with micro-tip for a falsie effect. Micro-defining brush nabs every lash Wavelength fibers stretch with each stroke No clumping, smudging or flaking Move brush in zigzag motion to coat lashes from base to tip.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , BEESWAX\CERA ALBA\CIRE D'ABEILLE , GLYCERYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , ACRYLATES COPOLYMER , C18-36 ACID TRIGLYCERIDE , RICINUS COMMUNIS (CASTOR) SEED OIL , STEARIC ACID , PALMITIC ACID , ACACIA SENEGAL GUM , BUTYLENE GLYCOL , AMINOMETHYL PROPANOL , PISUM SATIVUM (PEA) EXTRACT , GLYCERIN , LAURETH-21 , NYLON-66 , HYDROXYETHYLCELLULOSE , MYRISTIC ACID , BEHENIC ACID , ARACHIDIC ACID , OLEIC ACID , SODIUM DEHYDROACETATE , PHENOXYETHANOL , SODIUM BENZOATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Created for extreme close-up shots in our L.A. photo studio, no lash can hide with this extreme lengthening formula that takes lashes from barely there to make-‘em-stare.Kick out corner of lashes with micro-tip for a falsie effect. Micro-defining brush nabs every lash Wavelength fibers stretch with each stroke No clumping, smudging or flaking Move brush in zigzag motion to coat lashes from base to tip.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , BEESWAX\CERA ALBA\CIRE D'ABEILLE , GLYCERYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , ACRYLATES COPOLYMER , C18-36 ACID TRIGLYCERIDE , RICINUS COMMUNIS (CASTOR) SEED OIL , STEARIC ACID , PALMITIC ACID , ACACIA SENEGAL GUM , BUTYLENE GLYCOL , AMINOMETHYL PROPANOL , PISUM SATIVUM (PEA) EXTRACT , GLYCERIN , LAURETH-21 , NYLON-66 , HYDROXYETHYLCELLULOSE , MYRISTIC ACID , BEHENIC ACID , ARACHIDIC ACID , OLEIC ACID , SODIUM DEHYDROACETATE , PHENOXYETHANOL , SODIUM BENZOATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.447Z,2017-12-23T20:49:14.786Z,http://makeup-api.herokuapp.com/api/v1/products/539.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/539/original/data?1514062154,[]
+538,smashbox,X-Rated Mascara,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_68233_388x396_0.jpg,http://www.smashbox.com/product/6030/39357/eyes/mascara/x-rated-mascara/new,http://www.smashbox.com/,"This ultra-buildable mascara lets you easily take your lashes from PG to X-Rated in seconds. Our triple threat brush loads up the maximum amount of our fiber-loaded formula to build your look. With each swipe, lashes are isolated, magnified and mega-coated for hyper, thick voluptuous lashes that photograph flawlessly in any close-up. No double-dipping required.Don't forget to prep. Always start with Photo Finish Lash Primer. Extremely long-wearing formula for luscious lashes, day to night Triple Threat brush isolates, magnifies & mega-coats each lash with an interlocking fiber-loaded formula Tripod fibers stack on lashes for endless volume Amplifies & lifts with each layer Flake & smudge-free Sweep on lashes from base and lay on the volume with each stroke.
+
+ INGREDIENTS: WATER\AQUA\EAU , KAOLIN , ACRYLATES/ETHYLHEXYL ACRYLATE COPOLYMER , STEARIC ACID , MYRICA CERIFERA (BAYBERRY) FRUIT WAX , SILICA , POLYISOBUTENE , GLYCERYL STEARATE , PARAFFIN , AMINOMETHYL PROPANEDIOL , POLYVINYL ACETATE , ISOSTEARIC ACID , LECITHIN , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , HYDROXYETHYLCELLULOSE , 1,2-HEXANEDIOL , VP/EICOSENE COPOLYMER , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , LAURETH-21 , NYLON-6 , SODIUM POLYACRYLATE , POLYSILICONE-11 , LAURETH-12 , SIMETHICONE , CAPRYLYL GLYCOL , PHENETHYL ALCOHOL , HYDROGENATED OLIVE OIL , DISODIUM EDTA , PHENOXYETHANOL , CHLOROXYLENOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ This ultra-buildable mascara lets you easily take your lashes from PG to X-Rated in seconds. Our triple threat brush loads up the maximum amount of our fiber-loaded formula to build your look. With each swipe, lashes are isolated, magnified and mega-coated for hyper, thick voluptuous lashes that photograph flawlessly in any close-up. No double-dipping required.Don't forget to prep. Always start with Photo Finish Lash Primer. Extremely long-wearing formula for luscious lashes, day to night Triple Threat brush isolates, magnifies & mega-coats each lash with an interlocking fiber-loaded formula Tripod fibers stack on lashes for endless volume Amplifies & lifts with each layer Flake & smudge-free Sweep on lashes from base and lay on the volume with each stroke.
+
+ INGREDIENTS: WATER\AQUA\EAU , KAOLIN , ACRYLATES/ETHYLHEXYL ACRYLATE COPOLYMER , STEARIC ACID , MYRICA CERIFERA (BAYBERRY) FRUIT WAX , SILICA , POLYISOBUTENE , GLYCERYL STEARATE , PARAFFIN , AMINOMETHYL PROPANEDIOL , POLYVINYL ACETATE , ISOSTEARIC ACID , LECITHIN , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , HYDROXYETHYLCELLULOSE , 1,2-HEXANEDIOL , VP/EICOSENE COPOLYMER , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , LAURETH-21 , NYLON-6 , SODIUM POLYACRYLATE , POLYSILICONE-11 , LAURETH-12 , SIMETHICONE , CAPRYLYL GLYCOL , PHENETHYL ALCOHOL , HYDROGENATED OLIVE OIL , DISODIUM EDTA , PHENOXYETHANOL , CHLOROXYLENOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.200Z,2017-12-23T20:49:14.590Z,http://makeup-api.herokuapp.com/api/v1/products/538.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/538/original/data?1514062154,[]
+537,smashbox,Photo Finish Lash Primer,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_68234_388x396_0.jpg,http://www.smashbox.com/product/6030/39358/eyes/mascara/photo-finish-lash-primer/new,http://www.smashbox.com/,"Here's the rule in our L.A. photo studio: No shoots without our primer! This innovative formula lifts lashes to new heights, amps up volume and makes mascara last longer.Refresh and revive midday lashes with primer and layer on fresh mascara. Dual-sided brush/comb coats and separates Preps and amplifies for more mascara pay-off Layer under or over mascara Apply from root to tip of lashes with grooved bristle side of brush and then define and separate with comb.
+
+ INGREDIENTS: WATER\AQUA\EAU , GLYCERYL STEARATE , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , GLYCERIN , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , STEARIC ACID , PVP , HYDROLYZED SOY PROTEIN , TRIETHANOLAMINE , HYDROXYETHYLCELLULOSE , CAPRYLYL GLYCOL , PHENOXYETHANOL
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Here's the rule in our L.A. photo studio: No shoots without our primer! This innovative formula lifts lashes to new heights, amps up volume and makes mascara last longer.Refresh and revive midday lashes with primer and layer on fresh mascara. Dual-sided brush/comb coats and separates Preps and amplifies for more mascara pay-off Layer under or over mascara Apply from root to tip of lashes with grooved bristle side of brush and then define and separate with comb.
+
+ INGREDIENTS: WATER\AQUA\EAU , GLYCERYL STEARATE , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , GLYCERIN , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , STEARIC ACID , PVP , HYDROLYZED SOY PROTEIN , TRIETHANOLAMINE , HYDROXYETHYLCELLULOSE , CAPRYLYL GLYCOL , PHENOXYETHANOL
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,mascara,[],2016-10-02T01:32:56.108Z,2017-12-23T20:49:05.732Z,http://makeup-api.herokuapp.com/api/v1/products/537.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/537/original/data?1514062145,[]
+536,smashbox,Jet Set Waterproof Eye Liner,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_46012_388x396_0.jpg,http://www.smashbox.com/product/6028/24181/eyes/eye-liner/jet-set-waterproof-eye-liner,http://www.smashbox.com/,"In our L.A. photo studio, makeup artists are always looking for products that deliver big visual impact in a short time. We developed this waterproof, crease-resistant, gel eye liner to glide on quickly and easily. Don't worry, it won't tug or pull on the delicate skin around your eyes. Gear up so you can create smudge-proof lines and precisely defined eyes in 60 seconds flat. Ready, Jet Set, Go!Show your liner some extra love! Remember to seal jar tightly immediately after use to avoid dry-out.Use an eye liner brush (Arced Liner Brush #21) to tight-line for added impact.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , POLYETHYLENE , CYCLOPENTASILOXANE , TRIMETHYLSILOXYSILICATE , DISTEARDIMONIUM HECTORITE , LECITHIN , PHENYL TRIMETHICONE , HYDROGENATED POLYISOBUTENE , BARIUM SULFATE , PROPYLENE CARBONATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLACK 2 (CI 77266) , BISMUTH OXYCHLORIDE (CI 77163) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ In our L.A. photo studio, makeup artists are always looking for products that deliver big visual impact in a short time. We developed this waterproof, crease-resistant, gel eye liner to glide on quickly and easily. Don't worry, it won't tug or pull on the delicate skin around your eyes. Gear up so you can create smudge-proof lines and precisely defined eyes in 60 seconds flat. Ready, Jet Set, Go!Show your liner some extra love! Remember to seal jar tightly immediately after use to avoid dry-out.Use an eye liner brush (Arced Liner Brush #21) to tight-line for added impact.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , POLYETHYLENE , CYCLOPENTASILOXANE , TRIMETHYLSILOXYSILICATE , DISTEARDIMONIUM HECTORITE , LECITHIN , PHENYL TRIMETHICONE , HYDROGENATED POLYISOBUTENE , BARIUM SULFATE , PROPYLENE CARBONATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLACK 2 (CI 77266) , BISMUTH OXYCHLORIDE (CI 77163) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.956Z,2017-12-23T20:49:05.474Z,http://makeup-api.herokuapp.com/api/v1/products/536.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/536/original/open-uri20171223-4-iposkz?1514062145,"[{'hex_value': '#452810', 'colour_name': 'DARK BROWN'}, {'hex_value': '#000000', 'colour_name': 'DEEP BLACK'}]"
+535,smashbox,Photo Angle Gel Liner,24.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_61621_388x396_0.jpg,http://www.smashbox.com/product/6028/34878/eyes/eye-liner/photo-angle-gel-liner/new,http://www.smashbox.com/,"Nothing makes pictures pop in our L.A. photo studio like some serious color. Packed with the intensity of a gel and the creativity of a magic marker, instantly draw on a colorful cat eye, graphic editorial look and so much more—no brush required. Bonus: this liner lasts for 36 hours! Unique flexible tip with a versatile, angled shape lets you create any line from thin to thick Creamy formula glides on for a smooth line every time36 hours of non-stop waterproof wear Won’t transfer, flake or fade
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Nothing makes pictures pop in our L.A. photo studio like some serious color. Packed with the intensity of a gel and the creativity of a magic marker, instantly draw on a colorful cat eye, graphic editorial look and so much more—no brush required. Bonus: this liner lasts for 36 hours! Unique flexible tip with a versatile, angled shape lets you create any line from thin to thick Creamy formula glides on for a smooth line every time36 hours of non-stop waterproof wear Won’t transfer, flake or fade
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.818Z,2017-12-23T20:49:11.204Z,http://makeup-api.herokuapp.com/api/v1/products/535.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/535/original/data?1514062151,"[{'hex_value': '#000000', 'colour_name': 'JET BLACK'}, {'hex_value': '#3f2b20', 'colour_name': 'COCOA'}, {'hex_value': '#565658', 'colour_name': 'SMOKE'}]"
+534,smashbox,Limitless Eye Liner,19.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35566_388x396_0.jpg,http://www.smashbox.com/product/6028/17778/eyes/eye-liner/limitless-eye-liner,http://www.smashbox.com/,"This waterproof, long-wearing eye liner was designed with a built-in sharpener so it's ready for action whenever you open it. The creamy, easy-to apply formula contains vitamin E and jojoba oil to protect your skin. It also brings you precise application and bold definition for up to 8 hours. Genius!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: CYCLOPENTASILOXANE , SYNTHETIC WAX , ISODODECANE , POLYBUTENE , HYDROGENATED COTTONSEED OIL , SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL , CERESIN , OZOKERITE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , TOCOPHEROL , ASCORBYL PALMITATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ This waterproof, long-wearing eye liner was designed with a built-in sharpener so it's ready for action whenever you open it. The creamy, easy-to apply formula contains vitamin E and jojoba oil to protect your skin. It also brings you precise application and bold definition for up to 8 hours. Genius!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: CYCLOPENTASILOXANE , SYNTHETIC WAX , ISODODECANE , POLYBUTENE , HYDROGENATED COTTONSEED OIL , SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL , CERESIN , OZOKERITE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , TOCOPHEROL , ASCORBYL PALMITATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.730Z,2017-12-23T20:49:14.323Z,http://makeup-api.herokuapp.com/api/v1/products/534.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/534/original/data?1514062154,[]
+533,smashbox,Limitless Liquid Liner,22.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_35713_388x396_0.jpg,http://www.smashbox.com/product/6028/17818/eyes/eye-liner/limitless-liquid-liner/allure-best-of-beauty-editors-choice,http://www.smashbox.com/,"Our studio pros are constantly creating new eye looks, from softly subtle to full-on Cleopatra. The problem is, they were hauling tons of different eye liners to every shoot. This waterproof liquid liner is designed to do it all. The precision tip pen gives you a smooth, controlled application every time. You can easily draw a thin or thick line in 1 sweep. Grab your own and start smoldering!For a fine line, use just the tip of the pen. Hold pen with the tip pointing at the eye lid and gently glide from inner to outer corner of eye. For a thicker line, lay the pen on its side and gently gliding along lashline from inner to outer corner of the eye. The more pressure applied, the thicker the line you will achieve.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , AMMONIUM STYRENE/ACRYLATES COPOLYMER , BUTYLENE GLYCOL , ALCOHOL , CETETH-20 , SEA SALT\MARIS SAL\SEL MARIN , POLYGLYCERYL-3 DISILOXANE DIMETHICONE , ACRYLATES/OCTYLACRYLAMIDE COPOLYMER , SODIUM HYDROXIDE , PENTYLENE GLYCOL , DISODIUM EDTA , PHENOXYETHANOL , [+/- BLACK 2 (CI 77266) , IRON OXIDES (CI 77491, CI 77492, CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Our studio pros are constantly creating new eye looks, from softly subtle to full-on Cleopatra. The problem is, they were hauling tons of different eye liners to every shoot. This waterproof liquid liner is designed to do it all. The precision tip pen gives you a smooth, controlled application every time. You can easily draw a thin or thick line in 1 sweep. Grab your own and start smoldering!For a fine line, use just the tip of the pen. Hold pen with the tip pointing at the eye lid and gently glide from inner to outer corner of eye. For a thicker line, lay the pen on its side and gently gliding along lashline from inner to outer corner of the eye. The more pressure applied, the thicker the line you will achieve.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\AQUA\EAU , AMMONIUM STYRENE/ACRYLATES COPOLYMER , BUTYLENE GLYCOL , ALCOHOL , CETETH-20 , SEA SALT\MARIS SAL\SEL MARIN , POLYGLYCERYL-3 DISILOXANE DIMETHICONE , ACRYLATES/OCTYLACRYLAMIDE COPOLYMER , SODIUM HYDROXIDE , PENTYLENE GLYCOL , DISODIUM EDTA , PHENOXYETHANOL , [+/- BLACK 2 (CI 77266) , IRON OXIDES (CI 77491, CI 77492, CI 77499)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.624Z,2017-12-23T20:49:13.273Z,http://makeup-api.herokuapp.com/api/v1/products/533.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/533/original/data?1514062153,"[{'hex_value': '#000000', 'colour_name': 'BLACK'}, {'hex_value': '#3a201f', 'colour_name': 'DARK BROWN'}]"
+532,smashbox,Always Sharp 3D Liner,20.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_52687_388x396_0.jpg,http://www.smashbox.com/product/6028/28676/eyes/eye-liner/always-sharp-3d-liner,http://www.smashbox.com/,"On a photo shoot, the crew can’t wait around while makeup artists sharpen their pencils. That’s why we developed this genius eye liner, which self-sharpens automatically every time you twist off the cap. The formula contains 3D pearl for added power and pop. You can ditch the sharpener but shimmer on! Our perfect-tip, precise liner saves time—and keeps your eye makeup look totally on point.One tiwst of the cap will do it. No need to over twist to sharpen!Reflective, 3D pearls create a can’t-be-beat glimmerEasy glide for a precise line, every timeOne twist of the cap sharpens the liner so your eyes are always on-point!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , CALCIUM SODIUM BOROSILICATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , CALCIUM ALUMINUM BOROSILICATE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , SILICA , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ On a photo shoot, the crew can’t wait around while makeup artists sharpen their pencils. That’s why we developed this genius eye liner, which self-sharpens automatically every time you twist off the cap. The formula contains 3D pearl for added power and pop. You can ditch the sharpener but shimmer on! Our perfect-tip, precise liner saves time—and keeps your eye makeup look totally on point.One tiwst of the cap will do it. No need to over twist to sharpen!Reflective, 3D pearls create a can’t-be-beat glimmerEasy glide for a precise line, every timeOne twist of the cap sharpens the liner so your eyes are always on-point!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , CALCIUM SODIUM BOROSILICATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , CALCIUM ALUMINUM BOROSILICATE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , SILICA , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.438Z,2017-12-23T20:49:12.943Z,http://makeup-api.herokuapp.com/api/v1/products/532.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/532/original/data?1514062152,"[{'hex_value': '#3c3540', 'colour_name': '3D GALAXY'}, {'hex_value': '#48432f', 'colour_name': '3D SPARKS'}, {'hex_value': '#2d3b5b', 'colour_name': '3D NEPTUNE'}, {'hex_value': '#495535', 'colour_name': '3D BILLIONAIRE'}, {'hex_value': '#488e76', 'colour_name': '3D PACIFIC'}, {'hex_value': '#603067', 'colour_name': '3D ORCHID'}, {'hex_value': '#ab638d', 'colour_name': '3D GEMSTONE'}, {'hex_value': '#8792a2', 'colour_name': '3D GUNMETAL'}]"
+531,smashbox,Always Sharp Waterproof Kohl Liner,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_48721_388x396_0.jpg,http://www.smashbox.com/product/6028/26041/eyes/eye-liner/always-sharp-waterproof-kohl-liner/award-winner,http://www.smashbox.com/,"On a photo shoot, the crew can’t wait around while makeup artists sharpen their pencils. That’s why we developed this award-winning kohl eye liner, which self-sharpens automatically every time you twist off the cap. The high-impact, waterproof formula is packed with pigment. It’s a precise pencil liner that performs like a liquid. Save time—and keep your eye makeup look totally on point!Want an even more intense eye look? Don't forget to line the inner rim for major definition! One tiwst of the cap will do it. No need to over twist to sharpen!Precise, waterproof, & non-flakingHyper-pigmented kohl for color-rich resultsCan be used on inner rimOne twist of the cap sharpens the liner so your eyes are always on-point!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM OXIDE GREENS (CI 77288) , CHROMIUM HYDROXIDE GREEN (CI 77289) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ On a photo shoot, the crew can’t wait around while makeup artists sharpen their pencils. That’s why we developed this award-winning kohl eye liner, which self-sharpens automatically every time you twist off the cap. The high-impact, waterproof formula is packed with pigment. It’s a precise pencil liner that performs like a liquid. Save time—and keep your eye makeup look totally on point!Want an even more intense eye look? Don't forget to line the inner rim for major definition! One tiwst of the cap will do it. No need to over twist to sharpen!Precise, waterproof, & non-flakingHyper-pigmented kohl for color-rich resultsCan be used on inner rimOne twist of the cap sharpens the liner so your eyes are always on-point!
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM OXIDE GREENS (CI 77288) , CHROMIUM HYDROXIDE GREEN (CI 77289) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,liquid,eyeliner,[],2016-10-02T01:32:55.273Z,2017-12-23T20:49:12.432Z,http://makeup-api.herokuapp.com/api/v1/products/531.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/531/original/data?1514062152,"[{'hex_value': '#161514', 'colour_name': 'RAVEN'}, {'hex_value': '#361712', 'colour_name': 'SUMATRA'}, {'hex_value': '#523945', 'colour_name': 'VIOLETTA'}, {'hex_value': '#1c1e3e', 'colour_name': 'FRENCH NAVY'}, {'hex_value': '#464140', 'colour_name': 'STORM'}, {'hex_value': '#1f6456', 'colour_name': 'CABANA'}, {'hex_value': '#6b3b29', 'colour_name': 'PENNY LANE'}, {'hex_value': '#ecbca2', 'colour_name': 'BARE'}]"
+530,smashbox,Double Exposure Palette,50.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_60680_388x396_0.jpg,http://www.smashbox.com/product/6029/34190/eyes/eye-shadow/double-exposure-palette/with-full-exposure-mascara,http://www.smashbox.com/,"Pros in our L.A. photo studio created this transformative palette to multiply their eye shadow collections by adding water. These shadows can be used as-is or transformed in 1 of 4 ways when wet. You can amp up vibrancy, go deeper, make 'em metallic or add sparkle. Whether you're feeling demure or dramatic or something else entirely, reinvent your eyes in seconds with this ultimate palette.For best results, first wet the brush, then press it against your hand or tissue to remove any excess water. Then, dip the damp brush into the pan. (We recommend a damp brush versus a wet one.) 14 shadows that become 28—just activate with water! Each shadow transforms in 1 of 4 ways, thanks to coated pigments that create multiple effects when wet Shadows won't glaze over Unique double-ended shadow brush included Bonus: Full Exposure Mascara sample #ShapeMatters insert with how-to's for 6 eye shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Pros in our L.A. photo studio created this transformative palette to multiply their eye shadow collections by adding water. These shadows can be used as-is or transformed in 1 of 4 ways when wet. You can amp up vibrancy, go deeper, make 'em metallic or add sparkle. Whether you're feeling demure or dramatic or something else entirely, reinvent your eyes in seconds with this ultimate palette.For best results, first wet the brush, then press it against your hand or tissue to remove any excess water. Then, dip the damp brush into the pan. (We recommend a damp brush versus a wet one.) 14 shadows that become 28—just activate with water! Each shadow transforms in 1 of 4 ways, thanks to coated pigments that create multiple effects when wet Shadows won't glaze over Unique double-ended shadow brush included Bonus: Full Exposure Mascara sample #ShapeMatters insert with how-to's for 6 eye shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,palette,eyeshadow,[],2016-10-02T01:32:55.068Z,2017-12-26T00:33:00.753Z,http://makeup-api.herokuapp.com/api/v1/products/530.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/530/original/open-uri20171223-4-5v7061?1514062152,"[{'hex_value': '#2E355B', 'colour_name': 'color 1'}, {'hex_value': '#ABA2AA', 'colour_name': 'color 2'}, {'hex_value': '#61495D', 'colour_name': 'color 3'}, {'hex_value': '#AB90A3', 'colour_name': 'color 4'}, {'hex_value': '#937A87', 'colour_name': 'color 5'}, {'hex_value': '#D2AEAA', 'colour_name': 'color 6'}, {'hex_value': '#312D31', 'colour_name': 'color 7'}, {'hex_value': '#E7D5C8', 'colour_name': 'color 8'}, {'hex_value': '#6D4541', 'colour_name': 'color 9'}, {'hex_value': '#EAB8A5', 'colour_name': 'color 10'}, {'hex_value': '#704B47', 'colour_name': 'color 11'}, {'hex_value': '#BA8980', 'colour_name': 'color 12'}, {'hex_value': '#754F40', 'colour_name': 'color 13'}, {'hex_value': '#EFC1AE', 'colour_name': 'color 14'}]"
+529,smashbox,#ShapeMatters Palette,55.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_62978_388x396_0.jpg,http://www.smashbox.com/product/6026/35669/eyes/brow/shapematters-palette/new,http://www.smashbox.com/,"Full, beautifully groomed brows are super popular in our studio, so we developed a brush that helps you get the look at home quickly and easily. This stiff, bristled brush is angled to help you create the perfect on-trend eye brow. Use it to easily brush brow powder and wax onto the eye brow for a precise, polished look that wows all day long.#ShapeMatters At Smashbox Studios!Includes 3 video-Interactive Get The Look Cards to make contouring easy for your face, eye and brow shape. Just touch the card to your phone to instantly activate.Created at Smashbox Photo Studios L.A., this #ShapeMatters palette contains:9 Photo Op Eye Shadows2 Brow Powders1 Brow Wax2 Highlighters1 Bronzer1 Contour Powder1 Double-Ended Shadow/Brow Brush#SHAPEMATTERS insert with how-to'sTo Use: Check out our #ShapeMatters insert for precise how-to's by face, brow and eye shape.Full, beautifully groomed brows are super popular in our studio, so we developed a brush that helps you get the look at home quickly and easily. This stiff, bristled brush is angled to help you create the perfect on-trend eye brow. Use it to easily brush brow powder and wax onto the eye brow for a precise, polished look that wows all day long.#ShapeMatters At Smashbox Studios!Includes 3 video-Interactive Get The Look Cards to make contouring easy for your face, eye and brow shape. Just touch the card to your phone to instantly activate.Created at Smashbox Photo Studios L.A., this #ShapeMatters palette contains:9 Photo Op Eye Shadows2 Brow Powders1 Brow Wax2 Highlighters1 Bronzer1 Contour Powder1 Double-Ended Shadow/Brow Brush#SHAPEMATTERS insert with how-to'sTo Use: Check out our #ShapeMatters insert for precise how-to's by face, brow and eye shape.",,,eyebrow,[],2016-10-02T01:32:54.976Z,2017-12-23T20:49:19.878Z,http://makeup-api.herokuapp.com/api/v1/products/529.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/529/original/open-uri20171223-4-cn2wx3?1514062159,[]
+528,smashbox,Mini Full Exposure Palette,25.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_56725_388x396_0.jpg,http://www.smashbox.com/product/6029/31330/eyes/eye-shadow/mini-full-exposure-palette/new,http://www.smashbox.com/,We see so many different eyes on set that our L.A. photo studio pros created this must-have range of neutrals to match any and all of them—yours included.Includes:8 universally awesome neutral shades—from nudes to blacks—in the most blendable formulasLong-wearing shimmers and velvety smooth mattes; turn up or tone down the lusterWe see so many different eyes on set that our L.A. photo studio pros created this must-have range of neutrals to match any and all of them—yours included.Includes:8 universally awesome neutral shades—from nudes to blacks—in the most blendable formulasLong-wearing shimmers and velvety smooth mattes; turn up or tone down the luster,,palette,eyeshadow,[],2016-10-02T01:32:54.900Z,2017-12-26T00:33:00.481Z,http://makeup-api.herokuapp.com/api/v1/products/528.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/528/original/open-uri20171223-4-qdeca8?1514062151,"[{'hex_value': '#6F5040', 'colour_name': 'color 1'}, {'hex_value': '#B78C70', 'colour_name': 'color 2'}, {'hex_value': '#F3CEB0', 'colour_name': 'color 3'}, {'hex_value': '#6A5444', 'colour_name': 'color 4'}]"
+527,smashbox,Full Exposure Palette,52.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_60560_388x396_0.jpg,http://www.smashbox.com/product/6029/34102/eyes/eye-shadow/full-exposure-palette,http://www.smashbox.com/,"Pros in our L.A. studio use neutral eye shadows constantly, and they LOVE having the option to turn luster up or down. That’s why we created this palette of long-wearing shimmers and velvety-smooth mattes in a range of 14 must-have shades. They’re super blendable and anything but basic! Bonus: this palette comes with a deluxe sample of our shadow primer to help you lock on color for 24 hours.For added high wattage, press a shimmer shade into center of lid with fingertips.Mix mattes and shimmers for a camera-ready lookComes with a double-ended shadow brush14 universal shadows from nudes to blacksBonus: Includes 24 Hour Shadow Primer sampleCheck out our #ShapeMatters eye chart, featuring 6 eye shapes for inspiration.Pros in our L.A. studio use neutral eye shadows constantly, and they LOVE having the option to turn luster up or down. That’s why we created this palette of long-wearing shimmers and velvety-smooth mattes in a range of 14 must-have shades. They’re super blendable and anything but basic! Bonus: this palette comes with a deluxe sample of our shadow primer to help you lock on color for 24 hours.For added high wattage, press a shimmer shade into center of lid with fingertips.Mix mattes and shimmers for a camera-ready lookComes with a double-ended shadow brush14 universal shadows from nudes to blacksBonus: Includes 24 Hour Shadow Primer sampleCheck out our #ShapeMatters eye chart, featuring 6 eye shapes for inspiration.",,palette,eyeshadow,[],2016-10-02T01:32:54.786Z,2017-12-26T00:33:00.593Z,http://makeup-api.herokuapp.com/api/v1/products/527.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/527/original/open-uri20171223-4-aqs6ml?1514062151,[]
+526,smashbox,Photo Matte Eyes Mini,25.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_69731_388x396_0.jpg,http://www.smashbox.com/product/6029/40422/eyes/eye-shadow/photo-matte-eyes-mini/new,http://www.smashbox.com/,"When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 8 matte shades in this mini-matte collection is a multitasker—from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each -silky, richly pigmented dark shade intensifies when used wet.Includes: 8 all-matte wet/dry shades that can be used as liner, shadow or brow powder
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 8 matte shades in this mini-matte collection is a multitasker—from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each -silky, richly pigmented dark shade intensifies when used wet.Includes: 8 all-matte wet/dry shades that can be used as liner, shadow or brow powder
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyeshadow,[],2016-10-02T01:32:54.716Z,2017-12-23T20:49:10.395Z,http://makeup-api.herokuapp.com/api/v1/products/526.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/526/original/data?1514062150,"[{'hex_value': '#9A746A', 'colour_name': 'color 1'}, {'hex_value': '#E5C1AD', 'colour_name': 'color 2'}, {'hex_value': '#6D4E47', 'colour_name': 'color 3'}, {'hex_value': '#D4A38D', 'colour_name': 'color 4'}, {'hex_value': '#534241', 'colour_name': 'color 5'}, {'hex_value': '#98776E', 'colour_name': 'color 6'}, {'hex_value': '#746B73', 'colour_name': 'color 7'}, {'hex_value': '#CA9A94', 'colour_name': 'color 8'}]"
+525,smashbox,Photo Matte Eyes,49.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_69718_388x396_0.jpg,http://www.smashbox.com/product/6026/40410/eyes/brow/photo-matte-eyes,http://www.smashbox.com/,"When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 14 matte shades is a multitasker—from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each silky, richly pigmented dark shade intensifies when used wet.Includes: 12 all-matte shades that can be used as liner, shadow or brow powder; dark shades intensify when wet 2 double-sized base shadow shades Double-ended liner/shadow brush #ShapeMatters lookbook insert with how-to's for 6 eye shapes and 5 brow shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 14 matte shades is a multitasker—from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each silky, richly pigmented dark shade intensifies when used wet.Includes: 12 all-matte shades that can be used as liner, shadow or brow powder; dark shades intensify when wet 2 double-sized base shadow shades Double-ended liner/shadow brush #ShapeMatters lookbook insert with how-to's for 6 eye shapes and 5 brow shapes
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyebrow,[],2016-10-02T01:32:54.599Z,2017-12-23T20:49:14.444Z,http://makeup-api.herokuapp.com/api/v1/products/525.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/525/original/data?1514062154,[]
+524,smashbox,MATTE EXPOSURE PALETTE,49.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_74764_388x396_0.jpg,http://www.smashbox.com/product/6029/44139/eyes/eye-shadow/matte-exposure-palette/new,http://www.smashbox.com/,"This all-matte palette has you covered with its silky, blendable shadows that double as stay-put liners. Created in Smashbox’s L.A. photo studio for cover shots and pictures with a flash, these must-have matte shades are designed to make eyes pop without any reflective sheen. It includes a double-ended shadow/liner brush to line, define, and contour your eyes and a simple, step-by-step guide to getting a smoky, softly defined look and cat-eye for six different eye shapes.This palette contains: 12 x 0.035 oz Matte wet/dry eye shadow in Spice (burnt orange), Blackberry (deep burgundy), Desert (medium/neutral brown), Sumatra (deep brown), Tonal (peach nude), Suede (soft red brown), Buff (pink nude), Grounded (medium cool brown), Drizzle (muted purple), Black Plum (deep purple), Truffle (light grey), Blackout (black) 2 x 0.07 oz Matte base eye shadow shades in Wheat (soft warm brown), Vanilla (soft light beige)Double-ended shadow/liner brush Step-by-step guide The dark shades intensify and double as a liner when used wet.This all-matte palette has you covered with its silky, blendable shadows that double as stay-put liners. Created in Smashbox’s L.A. photo studio for cover shots and pictures with a flash, these must-have matte shades are designed to make eyes pop without any reflective sheen. It includes a double-ended shadow/liner brush to line, define, and contour your eyes and a simple, step-by-step guide to getting a smoky, softly defined look and cat-eye for six different eye shapes.This palette contains: 12 x 0.035 oz Matte wet/dry eye shadow in Spice (burnt orange), Blackberry (deep burgundy), Desert (medium/neutral brown), Sumatra (deep brown), Tonal (peach nude), Suede (soft red brown), Buff (pink nude), Grounded (medium cool brown), Drizzle (muted purple), Black Plum (deep purple), Truffle (light grey), Blackout (black) 2 x 0.07 oz Matte base eye shadow shades in Wheat (soft warm brown), Vanilla (soft light beige)Double-ended shadow/liner brush Step-by-step guide The dark shades intensify and double as a liner when used wet.",,palette,eyeshadow,[],2016-10-02T01:32:54.368Z,2017-12-26T00:33:00.718Z,http://makeup-api.herokuapp.com/api/v1/products/524.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/524/original/data?1514062150,[]
+523,smashbox,Eye Shadow Trio,28.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_38180_388x396_0.jpg,http://www.smashbox.com/product/6029/19065/eyes/eye-shadow/eye-shadow-trio,http://www.smashbox.com/,"Our fab trios are all playfulness and color! Get rich, bold hues in just one swipe. Each includes 3 coordinated shadows—base shade, contour color and highlighter—so you'll never wonder which shades to wear together again. Super blendable, velvety formula Highly pigmented, even color Lasting wearPeel back the label for application tips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.Sheen shadesINGREDIENTS: Mica, Nylon-12, PTFE, Zinc Stearate, Boron Nitride, Dimethicone, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Optics shadesINGREDIENTS: Mica, Calcium Sodium Borosilicate, Nylon-12, Dimethicone, PTFE, Zinc Stearate, Boron Nitride, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)] Matte shadesINGREDIENTS: Mica, Nylon-12, Zinc Stearate, Caprylic/Capric Triglyceride, Dimethicone, Polyethylene, Boron Nitride, Magnesium Silicate, Lauroyl Lysine, Vinyl Dimethicone/Methicone Silsesquioxane Crosspolymer, Isopentyldiol, Caprylyl Glycol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Our fab trios are all playfulness and color! Get rich, bold hues in just one swipe. Each includes 3 coordinated shadows—base shade, contour color and highlighter—so you'll never wonder which shades to wear together again. Super blendable, velvety formula Highly pigmented, even color Lasting wearPeel back the label for application tips.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.Sheen shadesINGREDIENTS: Mica, Nylon-12, PTFE, Zinc Stearate, Boron Nitride, Dimethicone, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Optics shadesINGREDIENTS: Mica, Calcium Sodium Borosilicate, Nylon-12, Dimethicone, PTFE, Zinc Stearate, Boron Nitride, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)] Matte shadesINGREDIENTS: Mica, Nylon-12, Zinc Stearate, Caprylic/Capric Triglyceride, Dimethicone, Polyethylene, Boron Nitride, Magnesium Silicate, Lauroyl Lysine, Vinyl Dimethicone/Methicone Silsesquioxane Crosspolymer, Isopentyldiol, Caprylyl Glycol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyeshadow,[],2016-10-02T01:32:54.203Z,2017-12-23T20:49:09.911Z,http://makeup-api.herokuapp.com/api/v1/products/523.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/523/original/open-uri20171223-4-10459km?1514062149,"[{'hex_value': '#F6DAC1', 'colour_name': 'color 1'}, {'hex_value': '#AD8977', 'colour_name': 'color 2'}, {'hex_value': '#47352B', 'colour_name': 'color 3'}]"
+522,smashbox,PHOTO OP EYE SHADOW SINGLES,18.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_73232_388x396_0.jpg,http://www.smashbox.com/product/6029/42940/eyes/eye-shadow/photo-op-eye-shadow-singles/new,http://www.smashbox.com/,"We polled makeup artists in our L.A. photo studio for their most versatile, eye-enhancing shades—then packed their faves into one-swipe, true-color singles.Super blendable, velvety formulaHighly pigmented, even colorStart with our 24-Hour Photo Finish Shadow Primer to lock in around-the-clock color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: MICA , NYLON-12 , PTFE , ZINC STEARATE , BORON NITRIDE , DIMETHICONE , POLYMETHYLSILSESQUIOXANE , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , LAUROYL LYSINE , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCERIN , CYCLOPENTASILOXANE , CAPRYLYL GLYCOL , SILICA , TIN OXIDE , POLYSILICONE-11 , ISOPENTYLDIOL , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ We polled makeup artists in our L.A. photo studio for their most versatile, eye-enhancing shades—then packed their faves into one-swipe, true-color singles.Super blendable, velvety formulaHighly pigmented, even colorStart with our 24-Hour Photo Finish Shadow Primer to lock in around-the-clock color.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: MICA , NYLON-12 , PTFE , ZINC STEARATE , BORON NITRIDE , DIMETHICONE , POLYMETHYLSILSESQUIOXANE , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , LAUROYL LYSINE , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCERIN , CYCLOPENTASILOXANE , CAPRYLYL GLYCOL , SILICA , TIN OXIDE , POLYSILICONE-11 , ISOPENTYLDIOL , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,eyeshadow,[],2016-10-02T01:32:54.035Z,2017-12-23T20:49:09.561Z,http://makeup-api.herokuapp.com/api/v1/products/522.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/522/original/open-uri20171223-4-11pgrcf?1514062149,"[{'hex_value': '#f1d1c5', 'colour_name': 'Deco'}, {'hex_value': '#ecccaf', 'colour_name': 'Vanilla'}, {'hex_value': '#d1a084', 'colour_name': 'Wheat'}, {'hex_value': '#b18f7d', 'colour_name': 'Hang'}, {'hex_value': '#b68369', 'colour_name': 'Nude'}, {'hex_value': '#a77d5d', 'colour_name': 'Cinnamon'}, {'hex_value': '#987164', 'colour_name': 'Hazelnut'}, {'hex_value': '#6d584e', 'colour_name': 'Cruise'}, {'hex_value': '#4d302f', 'colour_name': 'Vintage'}, {'hex_value': '#2e2e2e', 'colour_name': 'Blackout'}]"
+521,smashbox,BE LEGENDARY LONG-WEAR LIP LACQUER,24.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_56395_388x396_0.jpg,http://www.smashbox.com/product/6126/31301/Lips-Cheek/Lipstick-Liner/BE-LEGENDARY-LONG-WEAR-LIP-LACQUER,http://www.smashbox.com/,"Pros in our L.A. photo studio needed a no-touch-ups-needed lip lacquer that went on and stayed on in one comfortable smooth coat throughout an all-day shoot. So we pushed the boundaries and maxed out the amount of staining pigments we could blend in with glossy pearls and conditioning vitamin E, so you get a velvety, legendary lacquered finish that stays for a full 8 hours without drying or feeling tacky.Want an even fuller pout? Dab a lighter shade like Pout or Flushed in the center of your lips. Goes on as a lacquer, then uniquely adjusts to stain Long-lasting color; stays put for a full 8 hours Covers lips in one, smooth comfortable coat No patchy fading or annoying dry feeling
+
+ INGREDIENTS: POLYBUTENE , OCTYLDODECANOL , OZOKERITE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SILICA SILYLATE , PENTAERYTHRITYL TETRAISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , SQUALANE , PERSEA GRATISSIMA (AVOCADO) OIL , PALMITOYL OLIGOPEPTIDE , ETHYLHEXYL PALMITATE , TRIBEHENIN , ACRYLATES COPOLYMER , POLYETHYLENE TEREPHTHALATE , SILICA , TIN OXIDE , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , SYNTHETIC FLUORPHLOGOPITE , HYDROLYZED HYALURONIC ACID , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , SORBITAN ISOSTEARATE , FLAVOR (AROMA) , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , ORANGE 5 (CI 45370) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 (CI 15985) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Pros in our L.A. photo studio needed a no-touch-ups-needed lip lacquer that went on and stayed on in one comfortable smooth coat throughout an all-day shoot. So we pushed the boundaries and maxed out the amount of staining pigments we could blend in with glossy pearls and conditioning vitamin E, so you get a velvety, legendary lacquered finish that stays for a full 8 hours without drying or feeling tacky.Want an even fuller pout? Dab a lighter shade like Pout or Flushed in the center of your lips. Goes on as a lacquer, then uniquely adjusts to stain Long-lasting color; stays put for a full 8 hours Covers lips in one, smooth comfortable coat No patchy fading or annoying dry feeling
+
+ INGREDIENTS: POLYBUTENE , OCTYLDODECANOL , OZOKERITE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SILICA SILYLATE , PENTAERYTHRITYL TETRAISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , SQUALANE , PERSEA GRATISSIMA (AVOCADO) OIL , PALMITOYL OLIGOPEPTIDE , ETHYLHEXYL PALMITATE , TRIBEHENIN , ACRYLATES COPOLYMER , POLYETHYLENE TEREPHTHALATE , SILICA , TIN OXIDE , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , SYNTHETIC FLUORPHLOGOPITE , HYDROLYZED HYALURONIC ACID , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , SORBITAN ISOSTEARATE , FLAVOR (AROMA) , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , ORANGE 5 (CI 45370) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 (CI 15985) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:53.819Z,2017-12-23T20:49:09.434Z,http://makeup-api.herokuapp.com/api/v1/products/521.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/521/original/open-uri20171223-4-15x0iu?1514062149,"[{'hex_value': '#da5f5f', 'colour_name': 'CORAL'}, {'hex_value': '#a43e5b', 'colour_name': 'CURRANT'}, {'hex_value': '#771c47', 'colour_name': 'BORDEAUX'}]"
+520,smashbox,L.A. Lights Cheek & Lip Color,29.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_61630_388x396_0.jpg,http://www.smashbox.com/product/17652/34879/Lips-Cheek/Blush/LA-Lights-Cheek-Lip-Color/NEW,http://www.smashbox.com/,"Get the ultimate West Coast glow—in a stick! From Santa Monica to Sunset Boulevard, our latest innovation in illumination is inspired by the magic light of L.A. This multipurpose color for lips and cheeks can be increased from a subtle sheen to a full-on flush. The lightweight, creamy formula looks and feels as natural as your own skin.Want a strobing effect? Try Hollywood & Highlight!Apply to face, lips and/or cheeks for a beautifully illuminated veil of natural color. Blend with the included buffing sponge.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Silicone, Oil, Fragrance & Talc.INGREDIENTS: DIISOSTEARYL MALATE , OCTYLDODECANOL , POLYGLYCERYL-3 DIISOSTEARATE , POLYETHYLENE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , DICALCIUM PHOSPHATE , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Get the ultimate West Coast glow—in a stick! From Santa Monica to Sunset Boulevard, our latest innovation in illumination is inspired by the magic light of L.A. This multipurpose color for lips and cheeks can be increased from a subtle sheen to a full-on flush. The lightweight, creamy formula looks and feels as natural as your own skin.Want a strobing effect? Try Hollywood & Highlight!Apply to face, lips and/or cheeks for a beautifully illuminated veil of natural color. Blend with the included buffing sponge.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Silicone, Oil, Fragrance & Talc.INGREDIENTS: DIISOSTEARYL MALATE , OCTYLDODECANOL , POLYGLYCERYL-3 DIISOSTEARATE , POLYETHYLENE , MICROCRYSTALLINE WAX\CERA MICROCRISTALLINA\CIRE MICROCRISTALLINE , DICALCIUM PHOSPHATE , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,,blush,[],2016-10-02T01:32:53.657Z,2017-12-23T20:49:20.286Z,http://makeup-api.herokuapp.com/api/v1/products/520.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/520/original/data?1514062160,"[{'hex_value': '#f7e2d4', 'colour_name': 'HOLLYWOOD & HIGHLIGHT'}, {'hex_value': '#e59395', 'colour_name': 'BEVERLY HILLS BLUSH'}, {'hex_value': '#d6887f', 'colour_name': 'MULHOLLAND MAUVE'}, {'hex_value': '#d37a6a', 'colour_name': 'SILVER LAKE SUNSET'}, {'hex_value': '#fa7971', 'colour_name': 'LAUREL CANYON CORAL'}, {'hex_value': '#ff5d66', 'colour_name': 'ECHO PARK PINK'}, {'hex_value': '#f33fa8', 'colour_name': 'FAIRFAX FUCHSIA'}, {'hex_value': '#942b38', 'colour_name': 'SUNSET & WINE'}]"
+519,smashbox,Always Sharp Lip Liner,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_56417_388x396_0.jpg,http://www.smashbox.com/product/6126/31303/Lips-Cheek/Lipstick-Liner/Always-Sharp-Lip-Liner,http://www.smashbox.com/,"Our makeup artists have no time to stop and sharpen their lip pencils—and obvi neither do you! That’s why we developed this brilliant liner, which self-sharpens automatically every time you twist off the cap. Choose liner that complements your lipstick, then get right to the point and create a camera-ready lip look!For the perfect ombre lip, line with a darker shade, then fill in with your favorite Be Legendary lipstick. One tiwst of the cap will do it. No need to over twist to sharpen! Water resistant and non-feathering Invisible liner preps lips for any color Automatically self-sharpensOne twist of the cap sharpens the liner.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , BIS-DIGLYCERYL POLYACYLADIPATE-2 , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , ETHYLENE/PROPYLENE COPOLYMER , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 LAKE (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , RED 40 LAKE (CI 16035) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Our makeup artists have no time to stop and sharpen their lip pencils—and obvi neither do you! That’s why we developed this brilliant liner, which self-sharpens automatically every time you twist off the cap. Choose liner that complements your lipstick, then get right to the point and create a camera-ready lip look!For the perfect ombre lip, line with a darker shade, then fill in with your favorite Be Legendary lipstick. One tiwst of the cap will do it. No need to over twist to sharpen! Water resistant and non-feathering Invisible liner preps lips for any color Automatically self-sharpensOne twist of the cap sharpens the liner.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , BIS-DIGLYCERYL POLYACYLADIPATE-2 , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , ETHYLENE/PROPYLENE COPOLYMER , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 LAKE (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , RED 40 LAKE (CI 16035) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:53.196Z,2017-12-23T20:49:08.252Z,http://makeup-api.herokuapp.com/api/v1/products/519.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/519/original/data?1514062148,"[{'hex_value': '#e49380', 'colour_name': 'NUDE FAIR'}, {'hex_value': '#b47352', 'colour_name': 'NUDE LIGHT'}, {'hex_value': '#a05745', 'colour_name': 'NUDE MEDIUM'}, {'hex_value': '#663f38', 'colour_name': 'NUDE DARK'}, {'hex_value': '#ad5240', 'colour_name': 'SIENNA'}, {'hex_value': '#d3716e', 'colour_name': 'ROSEBUD'}, {'hex_value': '#de7e8d', 'colour_name': 'PEONY'}, {'hex_value': '#ee8aa1', 'colour_name': 'FRENCHIE'}, {'hex_value': '#f48376', 'colour_name': 'MELON'}, {'hex_value': '#d71938', 'colour_name': 'RUBY'}, {'hex_value': '#a31530', 'colour_name': 'CRIMSON'}, {'hex_value': '#952a3e', 'colour_name': 'FIGGY'}, {'hex_value': '#92195d', 'colour_name': 'VIOLET'}, {'hex_value': '#e53368', 'colour_name': 'SHOCKING PINK'}, {'hex_value': '#d21380', 'colour_name': 'FUCHSIA'}]"
+518,smashbox,Insta-Matte Lipstick Transformer,24.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_68224_388x396_0.jpg,http://www.smashbox.com/product/6126/39354/Lips-Cheek/Lipstick-Liner/Insta-Matte-Lipstick-Transformer/NEW,http://www.smashbox.com/,"Give your lipstick a matte makeover—instantly! Created by our L.A. photo studio pro artists to instantly double their lipstick collection on set, this gel transforms any cream lipstick into a velvety matte finish that’s never chalky. Now you can wear your favorite lip shades 2 ways, minus the mess of DIY mattifying methods. Loose powder on your lips? No thanks. Just pat for matte!Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms. Transforms any cream lipstick into a matte finish and doubles your lipstick wardrobe Improves wear of lipstick & prevents feathering Portable tube makes it perfect for on-the-go Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: DIMETHICONE , DIMETHICONE CROSSPOLYMER , TOCOPHEROL , TOCOPHERYL ACETATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , TETRAHEXYLDECYL ASCORBATE , PHENOXYETHANOL
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Give your lipstick a matte makeover—instantly! Created by our L.A. photo studio pro artists to instantly double their lipstick collection on set, this gel transforms any cream lipstick into a velvety matte finish that’s never chalky. Now you can wear your favorite lip shades 2 ways, minus the mess of DIY mattifying methods. Loose powder on your lips? No thanks. Just pat for matte!Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms. Transforms any cream lipstick into a matte finish and doubles your lipstick wardrobe Improves wear of lipstick & prevents feathering Portable tube makes it perfect for on-the-go Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: DIMETHICONE , DIMETHICONE CROSSPOLYMER , TOCOPHEROL , TOCOPHERYL ACETATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , TETRAHEXYLDECYL ASCORBATE , PHENOXYETHANOL
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:52.968Z,2017-12-23T20:49:07.666Z,http://makeup-api.herokuapp.com/api/v1/products/518.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/518/original/data?1514062147,[]
+517,smashbox,BE LEGENDARY LIPSTICK × FOSTER SISTERS,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_75476_388x396_0.jpg,http://www.smashbox.com/product/6126/44787/Lips-Cheek/Lipstick-Liner/BE-LEGENDARY-LIPSTICK-FOSTER-SISTERS,http://www.smashbox.com/,"Smashbox Cosmetics has collaborated with the effortlessly cool and hilarious ""Barely Famous"" (VH1) sisters, Erin and Sara Foster, to celebrate the launch of the new Be Legendary Lipstick collection. The sisters personalized selections illustrates their unforgettable personalities and the enviable shades of the always photo ready lipstick. Sara chose a soft nude shade, Honey, while Erin chose Mandarin, a vibrant red orange. Both stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won't dry out or settle unevenly on lips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\CANDELILLA CERA\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Smashbox Cosmetics has collaborated with the effortlessly cool and hilarious ""Barely Famous"" (VH1) sisters, Erin and Sara Foster, to celebrate the launch of the new Be Legendary Lipstick collection. The sisters personalized selections illustrates their unforgettable personalities and the enviable shades of the always photo ready lipstick. Sara chose a soft nude shade, Honey, while Erin chose Mandarin, a vibrant red orange. Both stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won't dry out or settle unevenly on lips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\CANDELILLA CERA\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:52.850Z,2017-12-23T20:49:07.363Z,http://makeup-api.herokuapp.com/api/v1/products/517.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/517/original/open-uri20171223-4-1p0ttc5?1514062147,"[{'hex_value': '#ed262f', 'colour_name': 'MANDARIN (ERIN)'}, {'hex_value': '#c16055', 'colour_name': 'HONEY (SARA)'}]"
+516,smashbox,Be Legendary Lipstick,21.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_40950_388x396_0.jpg,http://www.smashbox.com/product/6126/39351/Lips-Cheek/Lipstick-Liner/Be-Legendary-Lipstick/NEW-SHADES,http://www.smashbox.com/,"Makeup artists in our L.A. studio were constantly blending colors to achieve lipstick nirvana. That’s why we expanded the line to include 120 jaw-dropping shades! Our creams and mattes stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won’t dry out or settle unevenly on lips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\CANDELILLA CERA\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Makeup artists in our L.A. studio were constantly blending colors to achieve lipstick nirvana. That’s why we expanded the line to include 120 jaw-dropping shades! Our creams and mattes stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won’t dry out or settle unevenly on lips
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\CANDELILLA CERA\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\CERA ALBA\CIRE D¿ABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\CERA CARNAUBA\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:51.694Z,2017-12-23T20:49:06.933Z,http://makeup-api.herokuapp.com/api/v1/products/516.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/516/original/data?1514062146,"[{'hex_value': '#904f50', 'colour_name': 'DO NO WRONG'}, {'hex_value': '#835947', 'colour_name': 'SHAVASANA'}, {'hex_value': '#c03c3b', 'colour_name': 'MANDARIN'}, {'hex_value': '#642b24', 'colour_name': 'CHESTNUT'}, {'hex_value': '#d99684', 'colour_name': 'NYLON NUDE'}, {'hex_value': '#bf999f', 'colour_name': 'FAIR PLAY'}, {'hex_value': '#d48d93', 'colour_name': 'OBVI'}, {'hex_value': '#b65689', 'colour_name': 'MAGENTA'}, {'hex_value': '#bb2f67', 'colour_name': 'PUNCH DRUNK'}, {'hex_value': '#e5859a', 'colour_name': 'PARIS PINK'}, {'hex_value': '#8b404c', 'colour_name': 'MULBERRY'}, {'hex_value': '#e75999', 'colour_name': 'SHOCK ME PINK'}, {'hex_value': '#53041c', 'colour_name': 'PLUM SCENE'}, {'hex_value': '#dd4169', 'colour_name': 'ELECTRIC PINK'}, {'hex_value': '#995c50', 'colour_name': 'HONEY'}, {'hex_value': '#c08a79', 'colour_name': 'LATTE'}, {'hex_value': '#fa6085', 'colour_name': 'PINK PETAL'}, {'hex_value': '#701e4c', 'colour_name': 'VIVID VIOLET'}, {'hex_value': '#bb3675', 'colour_name': 'FUCHSIA FLASH'}, {'hex_value': '#82183b', 'colour_name': 'GRENADINE'}, {'hex_value': '#e4838e', 'colour_name': 'POSY PINK'}, {'hex_value': '#d3818f', 'colour_name': 'HIDE OUT'}, {'hex_value': '#c37588', 'colour_name': 'GETS IT'}, {'hex_value': '#c81c71', 'colour_name': 'PUBLICIST'}, {'hex_value': '#cb7988', 'colour_name': 'MAUVE'}, {'hex_value': '#dc7a81', 'colour_name': 'ROOKIE'}, {'hex_value': '#c57483', 'colour_name': 'HIRE ME'}, {'hex_value': '#c9636d', 'colour_name': 'JUST HIT PLAY'}, {'hex_value': '#b95952', 'colour_name': 'STANDING O'}, {'hex_value': '#da8177', 'colour_name': 'NUDE BEACH'}, {'hex_value': '#cf8171', 'colour_name': 'FULL FRONTAL'}, {'hex_value': '#d69082', 'colour_name': 'INSIDE ACCESS'}, {'hex_value': '#d9786d', 'colour_name': 'BACK TALK'}, {'hex_value': '#c6745d', 'colour_name': 'TICKET ME'}, {'hex_value': '#d06c58', 'colour_name': 'CALL BACK'}, {'hex_value': '#a26251', 'colour_name': 'NERVE'}, {'hex_value': '#8d5247', 'colour_name': 'PRESS TOUR'}, {'hex_value': '#bd7863', 'colour_name': 'DONE DEAL'}, {'hex_value': '#a76458', 'colour_name': 'NUDE MOOD'}, {'hex_value': '#8a4f52', 'colour_name': 'TAROT CARD'}, {'hex_value': '#a5786d', 'colour_name': 'PHANTOM'}, {'hex_value': '#a56858', 'colour_name': 'WORK IT'}, {'hex_value': '#8b4a45', 'colour_name': 'SAFE WORD'}, {'hex_value': '#b26f69', 'colour_name': 'MONOGAMOUS'}, {'hex_value': '#aa5e41', 'colour_name': 'CHAI'}, {'hex_value': '#7d3b34', 'colour_name': 'DIRTY'}, {'hex_value': '#a95647', 'colour_name': 'EASY'}, {'hex_value': '#73312c', 'colour_name': 'CLIFFHANGER'}, {'hex_value': '#b26054', 'colour_name': 'FAMOUS'}, {'hex_value': '#793c41', 'colour_name': 'BOOKED'}, {'hex_value': '#bb5a54', 'colour_name': 'LATER'}, {'hex_value': '#913c33', 'colour_name': 'OFF SCRIPT'}, {'hex_value': '#8a3c3f', 'colour_name': 'FIRST TIME'}, {'hex_value': '#8d564b', 'colour_name': 'ON SET '}, {'hex_value': '#af4c42', 'colour_name': 'JUICE IT'}, {'hex_value': '#9f4430', 'colour_name': 'WRAP PARTY'}, {'hex_value': '#bd6165', 'colour_name': 'PRIMROSE'}, {'hex_value': '#833640', 'colour_name': 'STYLIST'}, {'hex_value': '#985349', 'colour_name': 'COGNAC'}, {'hex_value': '#8f122c', 'colour_name': 'UNZIPPED'}, {'hex_value': '#871544', 'colour_name': 'SCREEN QUEEN'}, {'hex_value': '#a15e5f', 'colour_name': 'AUDITION'}, {'hex_value': '#703850', 'colour_name': 'FEMME FATALE'}, {'hex_value': '#8d4241', 'colour_name': 'HIGH'}, {'hex_value': '#711115', 'colour_name': 'MADE IT'}, {'hex_value': '#8d3d45', 'colour_name': 'BAD MOOD'}, {'hex_value': '#5e0a17', 'colour_name': 'STACKED'}, {'hex_value': '#8c3b47', 'colour_name': 'MY DIGITS'}, {'hex_value': '#4c2c28', 'colour_name': 'WARRIOR POSE'}, {'hex_value': '#7d2d2f', 'colour_name': 'TOP SHELF'}, {'hex_value': '#ee3882', 'colour_name': 'TALK TO ME'}, {'hex_value': '#733c36', 'colour_name': 'HIGH STAKES'}, {'hex_value': '#c14961', 'colour_name': 'TOTES'}, {'hex_value': '#633012', 'colour_name': 'HATER'}, {'hex_value': '#ee3538', 'colour_name': 'FIREBALL'}, {'hex_value': '#761e1e', 'colour_name': 'RIGHT ON RED'}, {'hex_value': '#dd3c46', 'colour_name': 'POWER ON'}, {'hex_value': '#6f1b29', 'colour_name': 'JAM SESH'}, {'hex_value': '#ba433f', 'colour_name': 'PINCH ME'}, {'hex_value': '#690927', 'colour_name': 'BLACK CHERRY'}, {'hex_value': '#a31228', 'colour_name': 'BING'}, {'hex_value': '#6a0d37', 'colour_name': 'DEAL BREAKER'}, {'hex_value': '#713236', 'colour_name': 'COFFEE RUN'}, {'hex_value': '#c1234c', 'colour_name': 'HOT SEAT'}, {'hex_value': '#71081e', 'colour_name': 'Infrared'}, {'hex_value': '#6c351c', 'colour_name': 'STRAIGHT UP'}, {'hex_value': '#780c40', 'colour_name': 'JAM ON IT'}, {'hex_value': '#d34031', 'colour_name': 'SPECTACLE'}, {'hex_value': '#662b65', 'colour_name': 'VIOLET RIOT'}, {'hex_value': '#cf4e39', 'colour_name': 'CASITA'}, {'hex_value': '#310020', 'colour_name': 'PLUM ROLE'}, {'hex_value': '#bc3a36', 'colour_name': 'ON THE BEACH'}, {'hex_value': '#d23a32', 'colour_name': 'TEMPT ME'}, {'hex_value': '#472319', 'colour_name': 'HATES PILATES'}, {'hex_value': '#df2127', 'colour_name': 'GET FIRED'}, {'hex_value': '#453a3c', 'colour_name': 'PUNKED'}, {'hex_value': '#df3743', 'colour_name': 'HEADLINER'}, {'hex_value': '#b5214a', 'colour_name': '9 TO 5'}, {'hex_value': '#981925', 'colour_name': 'INVITE ONLY'}, {'hex_value': '#ac1d4b', 'colour_name': 'INSPIRATION'}, {'hex_value': '#a16695', 'colour_name': 'ACTION'}, {'hex_value': '#c86ba9', 'colour_name': 'FAN MAIL'}, {'hex_value': '#9a4a96', 'colour_name': 'TABLOID'}, {'hex_value': '#f16583', 'colour_name': 'VALLEY'}, {'hex_value': '#ed7fa1', 'colour_name': ""CAN'T TYPE""}, {'hex_value': '#feb6ce', 'colour_name': 'POUT'}, {'hex_value': '#f0aec1', 'colour_name': 'PRETTY SOCIAL'}, {'hex_value': '#ef5190', 'colour_name': 'BOMBASTIC'}, {'hex_value': '#bc4d5e', 'colour_name': 'PANORAMA PINK'}, {'hex_value': '#c72036', 'colour_name': 'RED RAGE'}, {'hex_value': '#c42738', 'colour_name': 'L.A. SUNSET'}, {'hex_value': '#78243e', 'colour_name': 'FIG'}, {'hex_value': '#540734', 'colour_name': 'MANIAC'}, {'hex_value': '#8e0e26', 'colour_name': 'Legendary'}, {'hex_value': '#4c1920', 'colour_name': 'WITCHY'}, {'hex_value': '#401e3e', 'colour_name': 'VINYL'}, {'hex_value': '#103254', 'colour_name': 'SKINNY JEANS'}, {'hex_value': '#20233b', 'colour_name': 'DEEP'}, {'hex_value': '#151516', 'colour_name': 'BANKROLLED '}, {'hex_value': '#5d4e51', 'colour_name': 'GRUNGE'}]"
+515,smashbox,ALWAYS ON LIQUID LIPSTICK,24.0,,,https://www.smashbox.com/media/images/products/388x396/sbx_sku_72279_388x396_0.jpg,http://www.smashbox.com/product/6126/42295/Lips-Cheek/Lipstick-Liner/ALWAYS-ON-LIQUID-LIPSTICK/New,http://www.smashbox.com/,"Perfected on-set in our L.A. photo studio, our long-wear, water-resistant liquid lipstick features Advanced Polymer Technology that makes it stay put and look as fresh and flawless as your first swipe—for up to 8 hours. Featherweight but fierce, this liquid matte formula is infused with lip-smoothing Primer Oil complex for suede-soft lip color in 20 super-rad shades. It’s smudge-proof, budge-proof and non-feathering. Because really, who has time for touch-ups? LILLY SINGH + SMASHBOXMegastar Lilly Singh is a comedian, artist and all-around entertainer who inspires her eight million YouTube subscribers to be a ""Bawse."" The second we met her, we knew we had to collaborate. We bottled her smart, funny vibe and created Bawse, Lilly's own signature shade of our Always On Liquid Lipstick. This no-rules red is fierce, featherweight and looks as fresh as your first swipe for eight hours. Wear it whenever you want to make things happen.The only matte liquid lipstick infused with Smashbox Primer Oil complex to keep it comfortableAdvanced Polymer Technology makes it stay put and look as fresh and flawless as the first swipePrecision tip applicator lines and fills with one swipe of our no-drop reservoirBudge-proof, non-feathering and water-resistantTo use: Define lip with precise tip and fill in with color. Wipe off with oil-based remover.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Isododecane, Dimethicone, Trimethylsiloxysilicate, Polybutene, Petrolatum, Cyclohexasiloxane, Kaolin, Disteardimonium Hectorite, Beeswax\Cera Alba\Cire d'Abeille, Silica Dimethyl Silylate, Glyceryl Behenate/Eicosadioate, Tocopheryl Acetate, Propylene Carbonate, Helianthus Annuus (Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Cyclopentasiloxane, Flavor (Aroma), Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Blue 1 Lake (CI 42090), Carmine (CI 75470), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Mica, Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 22 Lake (CI 45380), Red 28 (CI 45410), Red 28 Lake (CI 45410), Red 30 (CI 73360), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Titanium Dioxide (CI 77891), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ Perfected on-set in our L.A. photo studio, our long-wear, water-resistant liquid lipstick features Advanced Polymer Technology that makes it stay put and look as fresh and flawless as your first swipe—for up to 8 hours. Featherweight but fierce, this liquid matte formula is infused with lip-smoothing Primer Oil complex for suede-soft lip color in 20 super-rad shades. It’s smudge-proof, budge-proof and non-feathering. Because really, who has time for touch-ups? LILLY SINGH + SMASHBOXMegastar Lilly Singh is a comedian, artist and all-around entertainer who inspires her eight million YouTube subscribers to be a ""Bawse."" The second we met her, we knew we had to collaborate. We bottled her smart, funny vibe and created Bawse, Lilly's own signature shade of our Always On Liquid Lipstick. This no-rules red is fierce, featherweight and looks as fresh as your first swipe for eight hours. Wear it whenever you want to make things happen.The only matte liquid lipstick infused with Smashbox Primer Oil complex to keep it comfortableAdvanced Polymer Technology makes it stay put and look as fresh and flawless as the first swipePrecision tip applicator lines and fills with one swipe of our no-drop reservoirBudge-proof, non-feathering and water-resistantTo use: Define lip with precise tip and fill in with color. Wipe off with oil-based remover.
+
+ Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Isododecane, Dimethicone, Trimethylsiloxysilicate, Polybutene, Petrolatum, Cyclohexasiloxane, Kaolin, Disteardimonium Hectorite, Beeswax\Cera Alba\Cire d'Abeille, Silica Dimethyl Silylate, Glyceryl Behenate/Eicosadioate, Tocopheryl Acetate, Propylene Carbonate, Helianthus Annuus (Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Cyclopentasiloxane, Flavor (Aroma), Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Blue 1 Lake (CI 42090), Carmine (CI 75470), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Mica, Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 22 Lake (CI 45380), Red 28 (CI 45410), Red 28 Lake (CI 45410), Red 30 (CI 73360), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Titanium Dioxide (CI 77891), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]
+
+ Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.
+
+ ",,lipstick,lipstick,[],2016-10-02T01:32:51.374Z,2017-12-23T20:49:06.781Z,http://makeup-api.herokuapp.com/api/v1/products/515.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/515/original/data?1514062146,"[{'hex_value': '#af5561', 'colour_name': 'Dream Huge'}, {'hex_value': '#9e5c4c', 'colour_name': 'Stepping Out'}, {'hex_value': '#b76f60', 'colour_name': 'In Demand'}, {'hex_value': '#ad5851', 'colour_name': 'Babe Alert'}, {'hex_value': '#a04322', 'colour_name': 'Out Loud'}, {'hex_value': '#9c4035', 'colour_name': ""Driver's Seat""}, {'hex_value': '#c84b47', 'colour_name': 'Baja Bound'}, {'hex_value': '#a82024', 'colour_name': 'Bawse'}, {'hex_value': '#e74425', 'colour_name': 'Thrill Seeker'}, {'hex_value': '#cc2127', 'colour_name': 'Bang-Bang'}, {'hex_value': '#cb2648', 'colour_name': 'Blast Off'}, {'hex_value': '#bd2467', 'colour_name': 'Shockaholic'}, {'hex_value': '#a856a2', 'colour_name': 'Some Nerve'}, {'hex_value': '#923459', 'colour_name': ""Let's Dance""}, {'hex_value': '#933c44', 'colour_name': 'Big Spender'}, {'hex_value': '#7f1917', 'colour_name': 'Disorderly'}, {'hex_value': '#6e1243', 'colour_name': 'Girl Gang'}, {'hex_value': '#640719', 'colour_name': 'Miss Conduct'}, {'hex_value': '#53250d', 'colour_name': 'True Grit'}, {'hex_value': '#635961', 'colour_name': 'Chill Zone'}]"
+514,marcelle,Marcelle Quad Bronzer Sunkissed,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f15f238ecfe181067f7b6158ade61f6e_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-quad-bronzer-sunkissed_120876.html,https://well.ca,"Use the Marcelle Quad Bronzer for the perfect shimmery finish.This unique, shimmery formula, enriched with Aloe Vera, comes in a quad of 4 different shades that can be blended together to get a sun-kissed glow all year long. Use the lighter shades separately for a hint of bronze or the darker shades for a stronger tan.You can also use it to play with face sculpting and contouring effects to play up your best features.",,,bronzer,['Canadian'],2016-10-01T18:36:42.548Z,2017-12-23T21:08:53.214Z,http://makeup-api.herokuapp.com/api/v1/products/514.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/514/original/data?1514063333,"[{'hex_value': '#C49D88', 'colour_name': None}, {'hex_value': '#AA8475', 'colour_name': None}, {'hex_value': '#A78371', 'colour_name': None}]"
+512,stila,Stila Stay All Day Bronzer in Medium,46.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/66cae20898e4b7204024554a17e382d6_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/stila-stay-all-day-bronzer-in-medium_108656.html,https://well.ca,"The perfect complement to all skin tones, Stay All Day Bronzer is a lightweight, matte-satin powder that is ideal for accenting the face and body to perfection. Features are sculpted and shaped with long-wearing pigments that blend effortlessly for a natural-looking result. This sun-kissed, bronze hue adds a touch of sun for a healthy glow all year round. Features:Velvety texture blends seamlessly onto the face and body with no streaking or cakingFade proof color stays true all day without oxidizingBuildable coverageOil-free, water-resistant formulaJumbo pan size allows for effortless brush applicationIngredients: Silica, Polymethyl Methacrylate, Octylodecyl Stearoyl Stearate, Ethylene/Acrylic Acid Copolymer, Pentaerythrityl Tetraisostearate, Hydrogen Dimethicone, Isopropyl Isostearate, Zinc Stearate, Magnesium Myristate, Diisostearyl Malate, Zinc Oxide, Ethylhexyl Methoxycinnamate, Triethoxycaprylylsilane, Caprylyl Glycol, Phenoxyethanol, Sorbic Acid, Mica. (+/-) Iron Oxides. (CI 77491, CI 77492, CI 77499) ",,,bronzer,[],2016-10-01T18:36:40.796Z,2017-12-23T21:08:52.915Z,http://makeup-api.herokuapp.com/api/v1/products/512.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/512/original/open-uri20171223-4-knmfd3?1514063332,"[{'hex_value': '#9D6C45', 'colour_name': 'medium'}, {'hex_value': '#B48363', 'colour_name': 'light'}]"
+509,mineral fusion,Mineral Fusion Bronzer Duo,37.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/40e119c70f452a919de32dcca0dac778_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/mineral-fusion-bronzer-duo_119093.html,https://well.ca,"Mineral Fusion Sheer Moisture Lip Tint is a silky bronzer that blends flawlessly into the skin and lasts all day, adding a natural, flattering warmth to the complexion for a healthy, sunkissed glow. The combination of Pomegranate, Red Tea, White Tea plus Vitamins C and E defends against free radical damage and gives skin a healthy radiance. Formulated with only the safest, most gentle ingredients, the natural UV protection of minerals, plus skin-soothing Aloe Vera. Great for use on all skin types.Features:Duo of matte bronzer and shimmering highlighterSunkissed GlowAge-DefyingSkin-SoothingFree of artificial colour and fragranceCruelty FreeParaben FreeTalc FreeHypo-allergenicPhthalate FreeIngredients: Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Titanium Dioxide, Caprylic/Capric Triglyceride, Tocopheryl Acetate (Vitamin E), Ascorbyl Palmitate (Vitamin C), Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Aloe Barbadensis (Aloe Vera) Leaf Extract, Sambucus Nigra Fruit Extract, Lauroyl Lysine. MAY CONTAIN (+/-): Iron Oxide.Gluten Free, Vegan",,,bronzer,[],2016-10-01T18:36:37.676Z,2017-12-23T21:08:52.568Z,http://makeup-api.herokuapp.com/api/v1/products/509.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/509/original/data?1514063332,"[{'hex_value': '#9D6855', 'colour_name': None}, {'hex_value': '#BA8B71', 'colour_name': None}]"
+508,nyx,NYX Mosaic Powder Blush Paradise,10.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/deedb7bd74bda43f062a09aab2ee1ec8_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-mosaic-powder-blush-paradise_106230.html?cat=328,https://well.ca,"NYX Mosaic Powder Blush is a medley of that creates a flush of color and dazzling glow for every skin tone. Features:Five shades in one palette, this blush is bright pink with gold shimmerWorks as blush and highlighterFlattering on every skin toneUse to highlight, enhance & brighten Each mosaic of color blends beautifully with magical results",5.0,,bronzer,[],2016-10-01T18:36:36.267Z,2017-12-23T21:08:52.447Z,http://makeup-api.herokuapp.com/api/v1/products/508.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/508/original/open-uri20171223-4-56n3x0?1514063332,"[{'hex_value': '#D5838E', 'colour_name': None}]"
+507,,Saint Cosmetics Bronzer,30.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4f8578c9a7588249e95d463078b84de1_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/saint-cosmetics-bronzer_116816.html,https://well.ca,"Saint Cosmetics' velvety smooth bronzing formulation gives the skin a soft, healthy and naturally radiant skin.Features:Comes in a range of shades to enhance all complexionsLong- lastingProvides skin with a sun-kissed healthy glowMade in Canada from naturally derived ingredientsChemical Free, Vegan, Gluten Free",,,bronzer,"['Natural', 'Vegan', 'Gluten Free', 'Canadian']",2016-10-01T18:36:30.602Z,2017-12-23T21:08:52.329Z,http://makeup-api.herokuapp.com/api/v1/products/507.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/507/original/data?1514063332,"[{'hex_value': '#B77C59', 'colour_name': 'Glowing Halo '}, {'hex_value': '#B98963', 'colour_name': 'On Cloud 9 '}]"
+506,marcelle,Marcelle Monochromatic Bronzer,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1f2cd5b946f5e1d5bea2a7a7273c6fa4_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-monochromatic-bronzer_94564.html,https://well.ca,"
+ Marcelle Monochromatic Bronzer gives you a touch of sun for a radiant complexion!
+Enjoy a sun-kissed complexion all year long without experiencing the
+sun's harmful effects! Marcelle's versatile bronzer let you choose your
+ how you want to look: enjoy the look of a luminous bronze goddess or a
+more natural healthy looking complexion. Let your beauty glow with
+Marcelle's hypoallergenic and perfume-free bronzer!
+Without preservatives or parabens. ",,,bronzer,['Canadian'],2016-10-01T18:36:29.496Z,2017-12-23T21:08:52.232Z,http://makeup-api.herokuapp.com/api/v1/products/506.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/506/original/data?1514063332,"[{'hex_value': '#A27B67', 'colour_name': None}]"
+505,annabelle,Annabelle Biggy Bronzer Haute Gold,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0bd612799d7958f7b1b98cc02bad5d09_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-biggy-bronzer-haute-gold_108729.html,https://well.ca,"Bronzed to perfection! Get sun-kissed, radiant skin in seconds with this
+ Annabelle Biggy Bronzer mix of bronze and golden shades.",5.0,,bronzer,[],2016-10-01T18:36:28.599Z,2017-12-23T21:08:52.107Z,http://makeup-api.herokuapp.com/api/v1/products/505.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/505/original/data?1514063332,"[{'hex_value': '#B78A77', 'colour_name': 'Haute Gold'}, {'hex_value': '#BC8B72', 'colour_name': 'Matte Gold'}]"
+504,dr. hauschka,Dr. Hauschka Bronzing Powder Compact,44.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a94849792814b6d5a22d5cf8084d0211_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-bronzing-powder-compact_34473.html,https://well.ca,"Dr. Hauschka Bronzing Powder Compact blends easily with any skin tone, an ultra-fine bronzer for a sun-kissed glow. Gentle and nurturing enough for the most sensitive skin. Features:Silk, anthyllis, witch hazel and sage contour and smooth the complexion for a flawless look.Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients: Talc, Diatomaceous Earth (Solum Diatomeae), Daucus Carota Sativa (Carrot) Root Extract, Silk (Serica) Powder , Kaolin, Anthyllis Vulneraria Extract, Magnesium Stearate, Simmondsia Chinensis (Jojoba) Seed Oil, Mica, Hamamelis Virginiana (Witch Hazel) Bark/Leaf Extract, Silica, Salvia Officinalis (Sage) Leaf Extract, Camellia Sinensis (Black Tea) Leaf Extract, Fragrance (Essential Oil), Limonene*, Linalool*, Citronellol*, Geraniol*, Coumarin*, Citral*, Benzyl Benzoate*, Eugenol*, Tocopherol, Ascorbyl Dipalmitate, Iron Oxides (CI 77491, CI 77942, CI 77499), Titanium Dioxide (CI 77891)",,,bronzer,[],2016-10-01T18:36:25.096Z,2017-12-23T21:08:51.739Z,http://makeup-api.herokuapp.com/api/v1/products/504.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/504/original/data?1514063331,"[{'hex_value': '#D7A989', 'colour_name': None}]"
+503,physicians formula,Physicians Formula Super BB InstaReady Filter BB Bronzer,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/870e044cfb1d2b136cec2ce814871191_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/physicians-formula-super-bb_112035.html,https://well.ca,"Featuring InstaFilter Technology, a proprietary blend of mattifying and pore balancing spherical beads, color filter pigments and high-tech polymers that work together to instantly optimize light reflection, blur imperfections and visibly retexturize skin.#SunkissedGlow: Ultra-lightweight, multi-colored bronzer delivers a multi-dimensional glow that captures, diffuses and softens the reflection of light on your skin for the ultimate sunkissed glow. Features:Velvety-soft texture instantly melts into skinContains dial-sphere particles that absorb oil but not moistureCreates a smooth, skin-perfecting radiant tan glowDirections: May be worn alone or over makeup. Lightly brush powder over face and neck for a natural-looking tan glow. To accentuate and contour, apply more over cheekbones. For the most even application, be sure to tap excess powder from brush before applying. Ingredients: Ingredients: Talc, Caprylic/Capric Triglyceride, Mica, Nylon-12, Silica, Calcium Aluminum Borosilicate, Lauroyl Lysine, Dimethicone, Aluminum Chlorohydrate, Fomes Officinalis (Mushroom) Extract, Alumina, Butylene Glycol, Methyl Methacrylate Crosspolymer, PEG-40 Hydrogenated Castor Oil, Tin Oxide, Triethoxycaprylylsilane, Phenoxyethanol, Ethylhexylglycerin, Benzoic Acid, Dehydroacetic Acid ",4.0,,bronzer,"['Gluten Free', 'Natural']",2016-10-01T18:36:23.141Z,2017-12-23T21:08:51.408Z,http://makeup-api.herokuapp.com/api/v1/products/503.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/503/original/open-uri20171223-4-mxlhbm?1514063331,"[{'hex_value': '#AD8C79', 'colour_name': None}]"
+502,cargo cosmetics,Cargo Cosmetics Big Bronzer,36.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/acdcb23975bea28a1bc06123664e4c09_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-big-bronzer_87536.html,https://well.ca,"How do you make a good thing better? By making it bigger! This
+oversized version of our best selling and award-winning Medium Bronzer
+has been designed to be used on the face and body without messy orange
+streaks.
+
+Features and Benefits
+ Designed to be used on the face and body without streaking.Sheer and layerable texture for a natural look – no more messy brown streaks.Light reflective particles give a radiant glow to the skin all year round.How to Use: Using a large fluff brush apply over the areas of the face that are
+naturally touched by the sun like the apples of the cheeks, the upper
+cheekbones, forehead and along the jaw line
+ For natural looking results without any streaking use a circular buffing actionIngredients: Talc, Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Octyldodecyl
+Stearate, Polyethylene, Boron Nitride, Phenoxyethanol, Silica,
+Tocopheryl Acetate, PTFE, Carthamus Tinctorius (Safflower) Seed Oil,
+Isopropylparaben, Isobutylparaben, Butylparaben, Tin Oxide, Aloe
+Barbadensis (Leaf) Extract. May Contain: CI 77891 (Titanium Dioxide), CI 15850 (Red 7 Lake), CI 77491/CI 77492/CI 77499 (Iron Oxides)
+
+
+",,,bronzer,[],2016-10-01T18:36:22.033Z,2017-12-23T21:08:51.200Z,http://makeup-api.herokuapp.com/api/v1/products/502.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/502/original/data?1514063331,"[{'hex_value': '#CE9973', 'colour_name': None}]"
+501,cargo cosmetics,Cargo Cosmetics Matte Bronzer,30.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/56e62153a7df93ef3ec4cfd96d8fe99d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-matte-bronzer_87532.html,https://well.ca,"NO messy brown streaks!! A favorite with professional make-up
+artists and celebrities Cargo's bronzer glides easily over the skin for a
+beautiful sun-kissed look. It can be layered to the desired
+bronze look. Plus the signature, sleek oversized tin offers a large surface
+area for easy, even application of colour.
+
+Features:
+A favorite with professional make-up artists, celebrities and clientsGlides easily over the skin for a beautiful sun-kissed lookColor can be built to the desired strength on the skin – NO messy brown streaks!! The signature, sleek oversized tin offers a large surface area for easy, even application of colorHow to Use: Using
+ a large fluff brush apply over the areas of the face that are naturally
+ touched by the sun like the apples of the cheeks, the upper cheekbones,
+ forehead and along the jaw line For natural looking results without any streaking use a circular buffing actionIngredients: Mica, Talc, Nylon-12, Zinc Stearate, Dimethicone, Squalane, Aluminum
+Starch, Octenysuccinate, Polyethylene, Octyldodecyl Stearoyl Stearate,
+Kaolin, Trimethylsiloxysilicate, Butylparaben, Methicone, Mineral Oil. May Contain(+/-): Titanium Dioxide, Iron Oxides.
+",,,bronzer,[],2016-10-01T18:36:21.366Z,2017-12-23T21:08:51.103Z,http://makeup-api.herokuapp.com/api/v1/products/501.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/501/original/data?1514063331,"[{'hex_value': '#C68F63', 'colour_name': None}]"
+500,cargo cosmetics,Cargo Cosmetics Bronzer,30.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e9721906a06fe5eaf7447ade8de3731c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-bronzer_87681.html,https://well.ca,"NO messy brown streaks!! A favorite with professional make-up
+artists and celebrities Cargo's bronzer glides easily over the skin for a
+beautiful sun-kissed look. Subtle
+ hints of shimmer add a radiant and youthful glow to the skin, while
+softening the appearance of the skin. This bronzer can be layered to the desired
+bronze look. Cargo's signature, sleek oversized tin offers a large surface
+area for easy, even application of colour.
+
+Features:
+A favorite with professional make-up artists, celebrities and clientsGlides easily over the skin for a beautiful sun-kissed lookSubtle hints of shimmer add a radiant and youthful glow to the skin, while softening the appearance of the skinColor can be built to the desired strength on the skin – NO messy brown streaks!! The signature, sleek oversized tin offers a large surface area for easy, even application of colorShade Range: Ingredients: Mica, Talc, Nylon-12, Zinc Stearate, Dimethicone, Squalane, Aluminum
+Starch, Octenysuccinate, Polyethylene, Octyldodecyl Stearoyl Stearate,
+Kaolin, Trimethylsiloxysilicate, Butylparaben, Methicone, Mineral Oil. May Contain(+/-): Titanium Dioxide, Iron Oxides.",,,bronzer,[],2016-10-01T18:36:20.315Z,2017-12-23T21:08:32.765Z,http://makeup-api.herokuapp.com/api/v1/products/500.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/500/original/data?1514063312,"[{'hex_value': '#B48A60', 'colour_name': 'Medium '}, {'hex_value': '#B57F5B', 'colour_name': 'Dark '}]"
+499,covergirl,CoverGirl truBLEND Bronzer,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/60f9f4f29be5221ff70cf20fabc03564_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trublend-bronzer_112764.html,https://well.ca,"CoverGirl's New truBLEND Bronzer has a marble-baked formula that blends instantly with skin making bronzer lines a thing of the past.Features:Baked blend of colors for the perfect glowBaked to get the perfect bronze for every skin toneBlends instantly, no bronzer linesSuitable for sensitive skin How to Apply: Step 1: Lightly dip brush into bronzer, being careful to tap or blow off excess powder. Step 2: Next, sweep the bronzer over cheeks and temples to create a warm, even, sun-kissed glow. ",,,bronzer,[],2016-10-01T18:36:19.612Z,2017-12-23T21:08:32.604Z,http://makeup-api.herokuapp.com/api/v1/products/499.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/499/original/open-uri20171223-4-1oytpeg?1514063312,[]
+497,physicians formula,Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Bronzer,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ad40b33db806e7c0f0edcddf331dc182_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-argan-wear_102669.html,https://well.ca,"Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Bronzer is infused with 100% Pure Argan Oil, known as ""liquid gold"" for its rich conditioning benefits that can improve skin's brightness, tone, texture and elasticity. This magical ingredient from Morocco transforms skin, smoothing the appearance of fine lines, brightening dull skin and renewing suppleness, helping to enhance skin's youthful glow.Features: Exotically scented formula instantly creates a lit-from-within glowHypoallergenicGluten & Paraben freeNon-comedogenicDermatologist approvedDirections: May be worn alone or over makeup. Lightly brush powder over face and neck for a natural looking tan glow. For an exotic glow, apply more over cheekbones. For the most even application, be sure to tap excess powder from brush before applying.Ingredients: Talc, Mica, Isostearyl Neopentanoate, Fragrance, Polybutene, Argania Spinosa (Argan) Kernel Oil, Ascorbyl Palmitate, C12-15 Alkyl Benzoate, Calcium Sodium Borosilicate, Citric Acid, Glyceryl Oleate, Glyceryl Stearate, Isopropyl Isostearate, Lecithin, Tin Oxide, Tocopherol, Tocopheryl Acetate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol. May Contain: Iron Oxides, Titanium Dioxide.",,,bronzer,['Gluten Free'],2016-10-01T18:36:17.524Z,2017-12-23T21:08:50.883Z,http://makeup-api.herokuapp.com/api/v1/products/497.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/497/original/open-uri20171223-4-106cc2w?1514063330,[]
+496,e.l.f.,e.l.f. Bronzer Palette,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/43c49769e362a003f88479de225c6dd6_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-bronzer-palette_117847.html,https://well.ca,"This beautiful e.l.f. Bronzer Palette holds 4 gorgeous shades to mix and match throughout the year for a custom-blended glow. With a mixture of matte and shimmer finishes, you can achieve a professional look every time. The pigmented colours are great for contouring, shading, sculpting, and highlighting.How To Use: For a contoured look, coose desire shade and apply colour by tracing a ""figure 3"" on the outer side of the face from the forehead down towards the cheeks and downward along the jawline. For a sun-kissed glow, apply a little colour onto the forehead, nose, cheekbones, and chin. Make sure to blend out any lines for a natural look. Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zinc Stearate, Dimethicone, Tocopheryl Acetate (Ve). MAY CONTAIN: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Manganese Violet (CI 77742).",,,bronzer,[],2016-10-01T18:36:15.582Z,2017-12-23T21:08:50.733Z,http://makeup-api.herokuapp.com/api/v1/products/496.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/496/original/data?1514063330,"[{'hex_value': '#DAAB87', 'colour_name': None}, {'hex_value': '#C79374', 'colour_name': None}, {'hex_value': '#C79279', 'colour_name': None}, {'hex_value': '#DFB797', 'colour_name': None}]"
+495,maybelline,Maybelline Face Studio Master Hi-Light Light Booster Bronzer,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/991799d3e70b8856686979f8ff6dcfe0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-face-studio-master_88837.html,https://well.ca,"Maybelline Face Studio Master Hi-Light Light Boosting bronzer formula has an expert
+balance of shade + shimmer illuminator for natural glow. Skin goes
+soft-lit with zero glitz.
+
+ For Best Results: Brush over all shades in palette and gently sweep over
+cheekbones, brow bones, and temples, or anywhere light naturally touches
+ the face.
+
+
+
+
+ ",5.0,,bronzer,[],2016-10-01T18:36:15.012Z,2017-12-23T21:08:50.624Z,http://makeup-api.herokuapp.com/api/v1/products/495.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/495/original/open-uri20171223-4-9hrto4?1514063330,[]
+494,,Fake Bake Beauty Bronzer,21.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9359d3b10235c72fc904dd314b951b70_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/fake-bake-beauty-bronzer_50205.html,https://well.ca,Fake Bake Beauty Bronzer is paraben free and is perfect for an all over glow!Colour: ,,,bronzer,[],2016-10-01T18:36:14.476Z,2017-12-23T21:08:50.515Z,http://makeup-api.herokuapp.com/api/v1/products/494.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/494/original/data?1514063330,"[{'hex_value': '#906E5A', 'colour_name': None}]"
+493,physicians formula,Physicians Formula Bronze Booster Glow-Boosting Pressed Bronzer,20.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7b33d70c5494b72f23edf9d07acf599d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-bronze-booster_61146.html,https://well.ca,"This bronzer with benefits provides an instant and lasting tan-boost that blends and builds easily to your desired level of bronze. Lightweight powder glides on smoothly for a totally uniform and even, healthy-looking tan glow. Formulated with Glow Activators, an exclusive infusion of vitamins, moisturizers and antioxidants that provide mistake-proof Triple-Action Bronze Boosting.Directions for Use: May be worn alone or over makeup. Lightly brush powder over face and neck for a natural-looking tan glow. To accentuate and contour, apply more over cheekbones. For the most even application, be sure to tap excess powder from brush before applying.Ingredients: Talc, Mica, Nylon-12, Zinc Stearate, Cyclopentasiloxane, Dimethicone, Diisostearyl Malate, Octyldodecyl Stearoyl Stearate, Dehydroacetic Acid, Inositol, Lauroyl Lysine, Macuna Pruriens Seed Extract, Maltodextrin, Phospholipids, Silica, Sorbic Acid, Sorbitan Sesquioleate, Ascorbic Acid, Tocopherol, Tocopheryl Acetate, Methylparaben, Propylparaben, May Contain: Iron Oxides, Titanium Dioxide, Ultramarines.* Stain-Free. Streak-Free. Orange-Free. Odour-Free.",4.7,,bronzer,[],2016-10-01T18:36:11.083Z,2017-12-23T21:08:50.263Z,http://makeup-api.herokuapp.com/api/v1/products/493.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/493/original/open-uri20171223-4-hiqirv?1514063330,"[{'hex_value': '#CFA17F', 'colour_name': 'Light to Medium (1134C) '}, {'hex_value': '#AF816A', 'colour_name': 'Medium to Dark (1135C) '}]"
+492,almay,Almay Smart Shade Powder Bronzer,14.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d03d4a62759d7805ff8b41caebb4cbb0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-smart-shade-powder-bronzer_92877.html,https://well.ca,"Warm up your complexion with smart shade™ powder bronzer. This lightweight, smooth formula glides on easily and evenly for a natural look. Three shades of bricked color swirl together to create the perfect bronzed blend for a perfect bronzed look on any skin tone. ",,,bronzer,[],2016-10-01T18:36:10.080Z,2017-12-23T21:08:24.832Z,http://makeup-api.herokuapp.com/api/v1/products/492.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/492/original/data?1514063304,"[{'hex_value': '#BF8970', 'colour_name': None}]"
+491,e.l.f.,e.l.f. Bronzers ,3.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fc7ddf787472683b7f20e43bafb6f2ea_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-bronzers_117884.html,https://well.ca,"Create a healthy looking glow all year round with e.l.f Bronzers. The sheer soft powders provide the perfect hue of colour. Blend all 4 colours together to achieve a blend of perfection or choose your favorite colour or colours to mix, match and blend. The Warm Bronzer has a warm shimmer that will bring a glow to your face. How To Use: Dust onto cheekbones, cheeks and slightly around the edges of the face for a healthy bronzed look. Ingredients: Talc, Paraffinum Liquidum (Mineral Oil), Magnesium Stearate, Hydrogenated Polyisobutene, Sodium Dehydroacetate May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (CI 15850), Blue 1 Lake (CI 42090), Red 40 Lake (CI 16035) ",,,bronzer,[],2016-10-01T18:36:09.057Z,2017-12-23T21:08:25.155Z,http://makeup-api.herokuapp.com/api/v1/products/491.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/491/original/data?1514063305,"[{'hex_value': '#C09E7C', 'colour_name': None}, {'hex_value': '#DAB3A5', 'colour_name': None}, {'hex_value': '#DCBAA3', 'colour_name': None}, {'hex_value': '#B4907C', 'colour_name': None}]"
+490,,Earth Lab Loose Mineral Bronzer,24.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/df8c3964f9e20d2906eb065a877c4322_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/earth-lab-loose-mineral-bronzer_78790.html,https://well.ca,"Earth Lab Loose Mineral Bronzer sets softly on your skin
+ for a very natural look. It offers a sun kissed glow
+ without being too orange like some other bronzers. This bronze does not have any additives or fillers so you'll use less than
+ the size of a dime for your entire face! What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Ingredients: Mica and Iron oxidesMay Contain: ultra marine blue, Titanium dioxideBottom Label:",5.0,,bronzer,"['Canadian', 'Natural']",2016-10-01T18:36:08.383Z,2017-12-23T21:08:25.049Z,http://makeup-api.herokuapp.com/api/v1/products/490.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/490/original/data?1514063305,[]
+489,cargo cosmetics,Cargo Cosmetics Swimmables Water Resistant Bronzer,29.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ceed96b9e7270082e045f539ff2f89c7_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/cargo-cosmetics-swimmables-water_106013.html,https://well.ca,"Cargo Cosmetics Swimmables Water Resistant Bronzer is a sweat-proof and weatherproof bronzer with a silky powder formula that glides over the skin for a subtle radiant glow.
+Features: Natural-looking colour, never orangeThe sheer powder is buildable for a customized lookSilicone-coated pigments provide better adhesion to the skin and help withstand water for extended wear L-Lysine, an amino acid found naturally in the skin, helps increase the bronzer's long-wearing and water-resistant propertiesParaben freeThis makeup is a definite hit for the sun kissing summertime! Try this and other beach ready beauty picks on our blog, The Well!Directions: Using a large fluffy brush, apply over areas of the
+ face that are naturally touched by the sun; cheekbones, forehead near
+the hair line, temples and along the jaw line.Ingredients: Talc, Octyldodecyl Stearate, Lauroyl Lysine, Dimethicone, Zinc Stearate,
+ Methicone, Sodium Benzoate, Sodium Dehydroacetate, Benzethonium
+Chloride, Tocopheryl Acetate. May Contain: (+/-): Mica (CI 77019),
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499),
+ Bismuth Oxychloride (CI 77163), Ultramarines (CI 77007), Manganese
+Violet (CI 77742), Red 7 Lake (CI 15850). ",5.0,,bronzer,[],2016-10-01T18:36:07.331Z,2017-12-23T21:08:50.104Z,http://makeup-api.herokuapp.com/api/v1/products/489.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/489/original/data?1514063330,"[{'hex_value': '#A2734C', 'colour_name': None}]"
+488,maybelline,Maybelline Fit Me Bronzer,10.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d4f7d82b4858c622bb3c1cef07b9d850_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-fit-me-bronzer_31265.html,https://well.ca,"Why You'll Love It
+
+Lightweight pigments blend easily and wear evenly
+Provides a natural, fade-proof bronzed color that leaves skin the way it was meant to be...fresh, breathing and natural
+
+For Best Results: For soft, natural look, brush along cheekbone, sweeping upward.",4.5,,bronzer,[],2016-10-01T18:36:05.584Z,2017-12-23T21:08:49.985Z,http://makeup-api.herokuapp.com/api/v1/products/488.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/488/original/open-uri20171223-4-deo82c?1514063329,"[{'hex_value': '#CF9978', 'colour_name': 'Medium Bronze '}]"
+487,physicians formula,Physicians Formula Bronze Booster Airbrushing Bronzing Veil ,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8969af04326145997e95fe8f91e2c88e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-bronze-booster_70977.html,https://well.ca,"Physicians Formula Bronze Booster Airbrushing Bronzing Veil is a Bronzer with Benefits! Revolutionary Italian technology
+combines the best features of powder, baked and cream bronzers for the
+most stunning bronze glow. Delivers a skin-perfecting finish unlike any
+ other bronzer, Physicians Formula had to call it ""Deluxe""!
+ Glow Activator Technology provides Triple-Action Bronze Boosting that
+helps to enhance and extend the life of your tan glow and improve skin’s
+ clarity and radiance.Directions: May be worn alone or over makeup. Lightly brush veil over face and neck
+for a natural looking tan glow. To accentuate and contour apply more
+over cheekbones. For the most even application, be sure to tap excess
+powder from brush before applying.Ingredients: Synthetic Fluorphlogopite, HDI/Trimethylol Hexyllactone Crosspolymer,
+Cetearyl Ethylhexanoate, Glycerin, Squalane, Dicalcium Phosphate,
+Octyldodecyl Stearoyl Stearate, Caprylyl Glycol, Ethylhexylglycerin,
+Polysorbate 80, 1,2-Hexanediol, PTFE, Dimethicone, Silica,
+Pentaerythrityl Tetra-di-t-butyl Hydroxyhydrocinnamate, Chondrus
+Crispus, Xanthan Gum, Zinc Stearate, Lauroyl Lysine, Cimicifuga Racemosa
+ Root Extract, Ascorbyl Palmitate, Inositol, Tocopherol. May Contain:
+Iron Oxides, Mica, Titanium Dioxide.Hypoallergenic. Fragrance-Free. Paraben-Free. Gluten Free. Oil Free. Dermatologist approved. ",5.0,,bronzer,['Gluten Free'],2016-10-01T18:36:04.559Z,2017-12-23T21:08:49.806Z,http://makeup-api.herokuapp.com/api/v1/products/487.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/487/original/open-uri20171223-4-a8m110?1514063329,"[{'hex_value': '#e0a576', 'colour_name': 'Light to Medium (7853C) '}]"
+486,covergirl,CoverGirl Clean Glow Bronzer,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4e90929a9c24a51c3db3988b205f3b43_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-clean-glow-bronzer_78622.html,https://well.ca,"Flaunt the coveted beach-bronze glow in one simple step. This versatile
+3-in-1 multi-shade compact lets you customize your color to create a
+radiant effect. Use just one color or all three!Features: Beautiful bronze glow in just one stepBlendable, multi-shade compactClean and natural lookHow to Apply: Dip powder brush in bronzer and tap off any excess.
+Sweep bronzer on your cheeks and temples.
+Using a lighter touch, sweep bronzer where the sun naturally hits your face, including your nose, chin, and forehead.
+ ",5.0,,bronzer,[],2016-10-01T18:36:01.504Z,2017-12-23T21:08:49.712Z,http://makeup-api.herokuapp.com/api/v1/products/486.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/486/original/data?1514063329,"[{'hex_value': '#A9745E', 'colour_name': None}]"
+485,milani,Milani Baked Bronzer ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1b01ce49ace4842e034664361f1310de_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/milani-baked-bronzer_108614.html,https://well.ca,"Crafted on Italian terracotta tiles, these sunbaked bronzers are all about a swirly, shimmery, streak-free glow. Available in five shades, from soft gold to tantalizingly tan, it can be dusted on eyes, face, body – anywhere and everywhere you want to glow.Features:Multi-purpose powder for eyes, face & bodyEasy to use and streak-free for a perfect radiant finishAttractive, shiny gold compactMirror & brush applicator includedStreak-freeApplication: Glide brush over color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow. Ingredients: Talc, Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Polysorbate 20, Magnesium Aluminum Silicate Phenoxyethanol, Sodium Dehydroacetate, Tocopheryl Acetate, Cetearyl Ethylhexanoate, Ethylhexyl Methoxycinnamate, Simmondsia Chinensis (Jojoba) Seed Oil, Acrylamide/Sodium Acryloyldimethyl Taurate Copolymer, Isohexadecane, Polysorbate 80, Sorbitan Stearate, Zea Mays (Corn) Starch, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499). ",4.0,,bronzer,['Vegan'],2016-10-01T18:36:00.689Z,2017-12-23T21:08:49.601Z,http://makeup-api.herokuapp.com/api/v1/products/485.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/485/original/open-uri20171223-4-14pkodz?1514063329,"[{'hex_value': '#AA644B', 'colour_name': 'Soleil (Medium Bronzed Tan with Gold Shimmer) '}, {'hex_value': '#BA8265', 'colour_name': None}]"
+484,physicians formula,Physicians Formula Organic Wear 100% Natural Origin Bronzer ,21.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9b404b7840f4f3a78426c166aa584216_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear-100_12031.html,https://well.ca,"Physicians Formula Organic Wear 100% Natural Origin Bronzer is made of
+the finest Italian powder which delivers a buildable natural tan glow.Two shades blend together for the most natural finish. A 100% natural origin bronzer, formulated with 15% certified organic
+ingredients, including jojoba seed oil and corn starch to moisturize and
+ mattify the skin. Includes mirror and natural goat hair brush. Directions: May
+ be worn alone or over makeup. Lightly brush powder over face and neck
+for a natural-looking tan glow. For the most even application, be sure
+to tap excess powder from brush before applying. For best results on dry
+ to very dry skin, apply moisturizer prior to using powder.Ingredients: MICA, SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL*, MAGNESIUM STEARATE, ZEA
+MAYS (CORN) STARCH*, KAOLIN, CALCIUM CARBONATE, ZINC STEARATE, OLEA
+EUROPAEA (OLIVE) FRUIT OIL*, GLYCERIN, GLYCINE SOJA (SOYBEAN) OIL*,
+GLYCERYL CAPRYLATE, CINNAMIC ACID, SODIUM LEVULINATE, TOCOPHEROL, WATER.
+ MAY CONTAIN: IRON OXIDES, TITANIUM DIOXIDE, ULTRAMARINES. *PRODUCED
+FROM ORGANIC FARMING.100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100%
+ Free of Parabens. 100% Free of GMO's. 100% Free of Synthetic Colors.
+100% Free of Synthetic Fragrances. 100% Cruelty Free.",2.5,,bronzer,"['Gluten Free', 'Natural']",2016-10-01T18:35:59.720Z,2017-12-23T21:08:49.508Z,http://makeup-api.herokuapp.com/api/v1/products/484.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/484/original/open-uri20171223-4-dzkokg?1514063329,"[{'hex_value': '#B38864', 'colour_name': 'Medium'}, {'hex_value': '#BA9569', 'colour_name': 'Light'}]"
+483,dr. hauschka,Dr. Hauschka Translucent Bronzing Tint,45.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/08fe5abc37bb3d483909774d43c438e4_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-translucent-bronzing_93615.html?cat=328,https://well.ca,"Dr. Hauschka Translucent Bronzing Tint is ideal for use alone or with all
+Dr.Hauschka moisturizers. This liquid mineral tint offers a sun-kissed
+glow while gently blending and softening the appearance of blemishes and
+ imperfections. Skin looks healthy, fresh, even-toned and radiant.Features: A
+ soothing combination of olive oil, beeswax and mineral pigments nourish
+ and bring color to the skin for a sheer, sun-kissed appearanceAnthyllis and witch hazel tone and firm skinCan be blended with body moisturizers and sunscreens to add or even colorUsed as directed, Translucent Bronzing Tint lasts approximately 4-5 monthsFormerly known as Translucent Bronze ConcentrateIngredients: Water (Aqua), Olea Europaea (Olive) Fruit Oil, Alcohol, Anthyllis
+Vulneraria Extract, Hamamelis Virginiana (Witch Hazel) Bark/Leaf
+Extract, Lysolecithin, Beeswax (Cera Alba), Fragrance (Parfum), Citral*,
+ Linalool*, Farnesol*, Benzyl Benzoate*, Limonene*, Citronellol*,
+Geraniol*, Benzyl Salicylate*, Coumarin*, Eugenol*, Cetearyl Alcohol,
+Algin, Silica, Arachis Hypogaea (Peanut) Oil, Chlorophyllin-Copper
+Complex (CI 75810), Iron Oxides (CI 77491, CI 77492, CI 77499)*Component of natural essential oilsDr. Hauschka Skin Care has been 100% natural for over 45 years and is
+certified natural by NATRUE, a non-profit, international association
+founded by the pioneers of natural and organic cosmetics. NATRUE
+certification ensures that a product has met the strongest criteria
+available for natural and organic ingredients in cosmetics and is free
+of synthetic preservatives, fragrances, dyes and petroleum derived
+synthetics. ",4.6,,bronzer,['Natural'],2016-10-01T18:35:58.830Z,2017-12-23T21:08:49.348Z,http://makeup-api.herokuapp.com/api/v1/products/483.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/483/original/data?1514063329,[]
+481,pure anada,Pure Anada Loose Mineral Luminous Bronzer,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/01195de6de1092125f703c5662d99af9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-loose-mineral-luminous_93637.html,https://well.ca,"Impart a healthy glow, with a Pure Anada luminous mineral bronzer!Shade Range:Ingredients: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide",5.0,,bronzer,"['Canadian', 'Natural']",2016-10-01T18:35:50.126Z,2017-12-23T21:08:49.114Z,http://makeup-api.herokuapp.com/api/v1/products/481.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/481/original/data?1514063329,"[{'hex_value': '#FFFFFF', 'colour_name': 'Earth '}]"
+480,cargo cosmetics,Cargo Cosmetics HD Bronzer,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ebf3bbabc1ef4fddc2a8675e2e8be0e1_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-hd-bronzer_87523.html,https://well.ca,"Created for filming in high definition this Cargo Cosmetics HD Bronzer provides flawless and
+natural looking results. This smooth and silky matte bronzer gives
+radiance to the skin without the shimmer. An optical blurring effect
+smoothes the look of the skin texture, minimizing the look of pores and
+fine lines. Never looks orange or streaky.
+
+Features:
+Photochromatic pigments adjust with the lighting so that you have a natural looking make-up no matter what the settingUltra-fine micronized minerals fill the look of fine lines and reduce the appearance of imperfectionsHow to Use: Using
+ a large fluff brush apply over the areas of the face that are naturally
+ touched by the sun like the apples of the cheeks, the upper cheekbones,
+ forehead and along the jaw lineFor natural looking results without any streaking use a circular buffing actionIngredients: Talc, Mica, Nylon-12, Isopropyl Isostearate, Zinc Stearate, Boron Nitride, Caprylyl Glycol. May Contain (+/-):
+ Mica (CI 77019), Titanium Dioxide (CI 77891), Iron Oxides ( CI 77491,
+CI 77492), Manganese Violet (CI 77742), D&C Black 2 (CI 77266)
+
+",,,bronzer,[],2016-10-01T18:35:48.312Z,2017-12-23T21:08:48.908Z,http://makeup-api.herokuapp.com/api/v1/products/480.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/480/original/data?1514063328,"[{'hex_value': '#B2885D', 'colour_name': None}]"
+479,physicians formula,Physicians Formula Bronze Booster Glow-Boosting BB Cream,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7a965c3cfc7955d4e156a88f87950168_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-bronze-booster_90009.html?cat=328,https://well.ca,"Physicians Formula Bronze Booster Glow-Boosting BB Cream combines the best features of a BB Cream with the glowing finish of a bronzer. Weightless BB Cream formula delivers makeup + skincare performance, instantly absorbing into skin, while leaving behind a smooth, even and natural sunkissed glow.Hypoallergenic. Paraben-Free. Gluten Free. Oil Free. Fragrance Free. Non-Comedogenic. Dermatologist approved. ",4.0,,bronzer,['Gluten Free'],2016-10-01T18:35:45.848Z,2017-12-23T21:08:48.712Z,http://makeup-api.herokuapp.com/api/v1/products/479.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/479/original/data?1514063328,[]
+478,e.l.f.,e.l.f. Studio Bronzer,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5bff7471d5030f2e808476e2ef735b82_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-bronzer_93458.html,https://well.ca,"Create a healthy looking glow all year round! The sheer soft powders
+provide the perfect hue of color. Blend all 4 colors together to
+achieve a blend of perfection or choose your favorite color or colors to
+ mix, match and blend.Golden Bronzer: An illuminating shimmer that is subtle and radiant. Ideal for summer or year-round.
+
+ Ingredients: Talc, Paraffinum Liquidum (Mineral Oil), Magnesium Stearate,
+Hydrogenated Polyisobutene, Sodium Dehydroacetate
+May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491,
+CI 77492, CI 77499), Red 7 Lake (CI 15850), Blue 1 Lake (CI 42090), Red
+40 Lake (CI 16035)
+",4.4,,bronzer,['Vegan'],2016-10-01T18:35:44.180Z,2017-12-23T21:08:48.484Z,http://makeup-api.herokuapp.com/api/v1/products/478.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/478/original/data?1514063328,"[{'hex_value': '#C3A785', 'colour_name': 'color 1'}, {'hex_value': '#DBBDAD', 'colour_name': 'color 2'}, {'hex_value': '#DEC8B4', 'colour_name': 'color 3'}, {'hex_value': '#BD9F87', 'colour_name': 'color 4'}]"
+477,maybelline,Maybelline Facestudio Master Contour Kit,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4f731de249cbd4cb819ea7f5f4cfb5c3_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-facestudio-master-contour_120303.html?cat=328,https://well.ca,"Maybelline Facestudio Master Contour Kit is the ultimate on the go all-in-one palette, with contouring brush included. Define and highlight in a New York minute with this effortless 3-step face contouring kit. This easy-to-use 3-step face contouring kit features a bronzer, blush and highlighter.",,,bronzer,[],2016-10-01T18:35:40.504Z,2017-12-23T21:08:48.157Z,http://makeup-api.herokuapp.com/api/v1/products/477.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/477/original/open-uri20171223-4-1m8bc4v?1514063328,"[{'hex_value': '#9B7163', 'colour_name': None}, {'hex_value': '#D78A89', 'colour_name': None}, {'hex_value': '#DBB7A9', 'colour_name': None}]"
+476,nyx,NYX Mosaic Powder Blush Spice,10.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/24df710e2cd9c9695cebec8732f47356_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-mosaic-powder-blush-spice_106233.html?cat=328,https://well.ca,"NYX Mosaic Powder Blush is a medley of colors that creates a flush of color and dazzling glow for every skin tone. Features:Five shades in one palette, this blush is a brown-pinkWorks as blush and highlighterFlattering on every skin toneUse to highlight, enhance & brighten Each mosaic of color blends beautifully with magical results",,,bronzer,[],2016-10-01T18:35:39.287Z,2017-12-23T21:08:48.035Z,http://makeup-api.herokuapp.com/api/v1/products/476.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/476/original/open-uri20171223-4-j906qs?1514063327,"[{'hex_value': '#BF9A8B', 'colour_name': None}]"
+475,,Fake Bake Blush Legal Sunburn,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a20f3622d08d7b87492ca0af0319bf73_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/fake-bake-blush-legal-sunburn_103989.html,https://well.ca,"Give your cheeks a sun kissed glow with Fake Bake Blush in Legal Sunburn. Paraben Free. Brush the powder blush over your cheeks, nose, and brow arches, and instantly wake up a tired or pale face.
+The naturally derived red and pink hues give you a fresh, sexy color-minus the skin damage.Ingredients: Mica, Talc, Nylon-12, Ethylhexyl Palmitate, Parafinum Liquidum, Petrolatum, Kaolin, Magnesium Stearate, Tocopheryl Acetate, Caprylic/Capric, Triglyceride, Silica, Phenoxyethanol, Proctone Olamine, [may contain ( +/-): C!75470, CI77891, CI77499, CI45410:2, CI77492, CI19140:1]",5.0,powder,blush,[],2016-10-01T18:35:36.689Z,2017-12-23T21:08:47.614Z,http://makeup-api.herokuapp.com/api/v1/products/475.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/475/original/data?1514063327,[]
+474,nyx,NYX Ombre Blush,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e91bc936934a3e027f3e8e38f819c15a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/nyx-ombre-blush_118021.html,https://well.ca,NYX Ombre Blush is a new gradient blush inspired by the ombre trend. This must-have formula features two silky colours blended into one perfectly coordinated shade combo.Featured Colours:Blue Toned Pink & Bright Yellow Toned Pink,,powder,blush,[],2016-10-01T18:35:35.383Z,2017-12-23T21:08:47.845Z,http://makeup-api.herokuapp.com/api/v1/products/474.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/474/original/data?1514063327,[]
+473,covergirl,CoverGirl truBLEND Blush in Light Rose,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0b8787d62ced45700c0693b869645542_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trublend-blush-in-light_112758.html,https://well.ca,"Never stop blushing with CoverGirl New truBLEND blush! Features:New marbled baked formulaUltra-blendable and delivers a beautiful, multi-toned result Designed to fit light, medium and deep skin tones alikeHow to Apply: Step 1: Lightly dip brush into blush, then tap or blow off excess powder. Step 2: Next, sweep the blush over and under your cheekbone to create a beautiful, rosy looking flush. ",,powder,blush,[],2016-10-01T18:35:34.299Z,2017-12-23T21:08:47.473Z,http://makeup-api.herokuapp.com/api/v1/products/473.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/473/original/open-uri20171223-4-11ptefh?1514063327,[]
+472,cargo cosmetics,Cargo Cosmetics HD Picture Perfect Blush Highlighter,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c976f8b3aabe8368fdc673e556159a13_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-hd-picture-perfect_87679.html,https://well.ca,"Cargo Cosmetics HD Picture Perfect Blush Highlighter was created for high-definition filming to provide picture-perfect
+results while looking completely natural.The Cargo HD
+Blush/Highlighter is a universally flattering shade of blush with a
+velvety formula that adjusts with ambient lighting, providing a natural
+finish day or night..
+Features:
+Photochromatic pigments adjust with the lighting so that you have a natural looking make-up no matter what the settingUltra-fine micronized minerals fill the look of fine lines and reduce the appearance of imperfectionsShade Range: Application: For a natural application of color apply to the apples of the cheeks and long the cheekbones using a large fluffy blush brushTo highlight and enhance the cheekbones use a small blush brush or sculpting brush along the upper edges of the cheekbonesIngredients: Talc, Nylon-12, Octyldodecyl Stearoyl Stearate, Silica, Zinc Stearate, Caprylyl Glycol, Silver Oxide May Contain (+/-): Mica (CI 77019), Titanium Dioxide (CI 77891), Manganese Violet (CI 77742), Iron Oxides (CI 77491), Ultramarines (CI 77007).
+",,powder,blush,[],2016-10-01T18:35:33.157Z,2017-12-23T21:08:47.343Z,http://makeup-api.herokuapp.com/api/v1/products/472.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/472/original/data?1514063327,"[{'hex_value': '#FFAE83', 'colour_name': 'Peach '}, {'hex_value': '#E8A78B', 'colour_name': 'Pink '}]"
+471,cargo cosmetics,Cargo Cosmetics Contour Palette,36.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4117cc2bd124776298f0671de94f07bf_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-contour-palette_87501.html,https://well.ca,"This Cargo Cosmetics Contour Palette is a simple and easy system that can help you contour
+and highlight flawlessly.
+The textures, colours and finishes were specially designed to be 'fool
+proof'. With ease of application top of mind and the embossed shades
+give step by step directions. It's the closest thing to having a make-up
+artist in your make-up kit!
+
+Features:
+ Includes coordinated shades with a highlighter, blush and contour color, each embossed with their application stepThe embossed shades give step-by-step directions: the closest thing to having a make-up artist in your make-up kit!Textures, colors and finishes were specially designed to be 'fool-proof', with ease of application being top of mindSold in a stunning brushed silver compact with mirrorIngredients: Talc, Octyldodecyl Stearate, Octyldodecyl Stearoyl Stearate, Zinc
+Stearate, Boron Nitride, Tocopheryl Acetate,
+Phenoxyethanol, Silica, Caprylyl Glycol, Carthamus Tinctorius
+(Safflower) Seed Oil, Sorbic Acid (A Preservative), Aloe Vera (Aloe
+Barbadensis) Extract. May Contain (+/-): Mica (CI 77019),
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491/CI 77492/CI 77499),
+Red 6 Lake (CI 15850), Red 7 Lake (CI 15850:1), Red 27 Lake (CI
+45410:2), Bismuth Oxychloride (CI 77163), Manganese Violet (CI 77742),
+Ultramarines (CI 77007), Tin Oxide (CI 77861).",5.0,,bronzer,[],2016-10-01T18:35:32.048Z,2017-12-23T21:08:51.863Z,http://makeup-api.herokuapp.com/api/v1/products/471.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/471/original/data?1514063331,"[{'hex_value': '#F6E4E4', 'colour_name': None}, {'hex_value': '#F1B2C8', 'colour_name': None}, {'hex_value': '#CC9085', 'colour_name': None}]"
+470,l'oreal,L'Oreal Paris Infallible Pro-Contour Palette in Medium ,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7a31b075cf9c0ae4e6eba9ca61c587a7_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/loreal-paris-infallible-pro-contour_112644.html?cat=328,https://well.ca,The L'Oreal Paris Infallible Pro-Contour Palette makes contouring easy. Use the pro-contour brush to enhance and define features for a professional contoured look. Perfectly coordinated highlighting and contouring shades blend easily after applying for a flawless contoured look. Features:Contours in 30 secondsDefinesHighlightsBrush includedHow to Use: Step 1: Use the lighter shade to highlight and create extra dimensions. Step 2: Accentuate contours with the darker shade. Step 3: Blend and buff for a professionally defined look. ,,,bronzer,[],2016-10-01T18:35:29.686Z,2017-12-23T21:08:51.586Z,http://makeup-api.herokuapp.com/api/v1/products/470.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/470/original/open-uri20171223-4-1gr8r81?1514063331,"[{'hex_value': '#B18A77', 'colour_name': 'medium'}, {'hex_value': '#B0907C', 'colour_name': 'light'}, {'hex_value': '#9C7667', 'colour_name': 'Deep'}]"
+469,,Saint Cosmetics Blush,28.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ed6e230c6394a3c6d1904fcd02a4ae3a_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/saint-cosmetics-blush_116825.html,https://well.ca,"Create naturally flushed looking cheeks with Saint Cosmetics' blush formulations. Designed to be worn alone or layered for more depth.Features: An ultra-blendable blush with a long-lasting formulaSilky smooth finishCreates a multi-dimensional lookMade in Canada from naturally derived ingredientsChemical Free, Vegan, Gluten Free",,powder,blush,"['Natural', 'Vegan', 'Gluten Free', 'Canadian']",2016-10-01T18:35:28.524Z,2017-12-23T21:08:42.899Z,http://makeup-api.herokuapp.com/api/v1/products/469.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/469/original/open-uri20171223-4-i60yfu?1514063322,"[{'hex_value': '#F591A6', 'colour_name': 'Cheeky Cherub '}, {'hex_value': '#E88C90', 'colour_name': 'Get Me To The Alter '}, {'hex_value': '#EE8581', 'colour_name': 'Luv Me Gently '}, {'hex_value': '#C7797B', 'colour_name': 'Passionate Plum '}, {'hex_value': '#EC8389', 'colour_name': 'Peaching To The Choir '}]"
+468,maybelline,Maybelline Face Studio Master Hi-Light Light Booster Blush,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4621032a92cb428ad640c105b944b39c_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-face-studio-master_88831.html,https://well.ca,"Maybelline Face Studio Master Hi-Light Light Boosting blush formula has an expert
+balance of shade + shimmer illuminator for natural glow. Skin goes
+soft-lit with zero glitz.
+
+ For Best Results: Brush over all shades in palette and gently sweep over
+cheekbones, brow bones, and temples, or anywhere light naturally touches
+ the face.
+
+
+
+
+ ",,powder,blush,[],2016-10-01T18:35:27.706Z,2017-12-23T21:08:47.102Z,http://makeup-api.herokuapp.com/api/v1/products/468.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/468/original/open-uri20171223-4-sz64re?1514063327,[]
+467,sante,Sante Rouge,23.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b5dc625e10b6324d1d74a31641f42fa3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/sante-rouge_51620.html,https://well.ca,"Sante Rouge is a soft powder blush with silky-smooth texture. It's formulated with organic jojoba and chamomile for natural freshness. Colours:Ingredients: Talc, Magnesium Stearate, Mica, Lauryl Lactate, Lauroyl Lysine, Olea Europaea (Olive) Fruit Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Chamomilla Recutita (Matricaria) Extract*, Parfum (Essential Oils), Bisabolol, Tocopheryl Acetate, [+/- CI 77891, CI 77491, CI 77492, CI 75470, CI 77007, CI 77499] * organically grown",3.0,powder,blush,['Natural'],2016-10-01T18:35:26.482Z,2017-12-23T21:08:46.993Z,http://makeup-api.herokuapp.com/api/v1/products/467.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/467/original/data?1514063326,[]
+465,covergirl,CoverGirl truBLEND Blush in Medium Rose,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d8969d390fd94976aee71df780f512f2_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trublend-blush-in-medium_112759.html,https://well.ca,"Never stop blushing with CoverGirl's New truBLEND blush! Features:New marbled baked formulaUltra-blendable and delivers a beautiful, multi-toned result Designed to fit light, medium and deep skin tones alikeHow to Apply: Step 1: Lightly dip brush into blush, then tap or blow off excess powder. Step 2: Next, sweep the blush over and under your cheekbone to create a beautiful, rosy looking flush. ",5.0,powder,blush,[],2016-10-01T18:35:25.098Z,2017-12-23T21:08:46.771Z,http://makeup-api.herokuapp.com/api/v1/products/465.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/465/original/open-uri20171223-4-edcwc3?1514063326,[]
+464,annabelle,Annabelle Blush ,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0af800d01a052da93b9145fb59f849ba_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-blush_108726.html,https://well.ca,"Annabelle Blush has a weightless and velvety texture that makes it easy to apply and
+ perfectly blendable. Perfect to get a healthy and youthful look! ",,powder,blush,[],2016-10-01T18:35:24.089Z,2017-12-23T21:08:46.649Z,http://makeup-api.herokuapp.com/api/v1/products/464.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/464/original/data?1514063326,"[{'hex_value': '#C97E79', 'colour_name': 'Hibicus '}, {'hex_value': '#D999AA', 'colour_name': 'Lotus '}, {'hex_value': '#D68D98', 'colour_name': 'Peony '}, {'hex_value': '#DB92A6', 'colour_name': 'Rosebud '}, {'hex_value': '#C9888C', 'colour_name': 'Spring '}]"
+463,nyx,NYX High Definition Blush,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e4842a84c9c0522ba29f1a856d841b1c_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/nyx-high-definition-blush_118146.html,https://well.ca,This NYX High Definition Blush is a high definition lightweight blush that blends evenly. This vibrant and silky blush delivers a beautiful flush of colour and is paraben free. ,4.0,powder,blush,[],2016-10-01T18:35:22.411Z,2017-12-23T21:08:46.552Z,http://makeup-api.herokuapp.com/api/v1/products/463.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/463/original/data?1514063326,"[{'hex_value': '#D27267', 'colour_name': 'Amber '}, {'hex_value': '#C58A68', 'colour_name': 'Beach Babe '}, {'hex_value': '#F0404E', 'colour_name': 'Crimson '}, {'hex_value': '#F66341', 'colour_name': 'Double Dare '}, {'hex_value': '#E54775', 'colour_name': 'Electro '}, {'hex_value': '#F27A82', 'colour_name': 'Hamptons '}, {'hex_value': '#D3766C', 'colour_name': 'Intuition '}, {'hex_value': '#F6A083', 'colour_name': 'Soft Spoken '}, {'hex_value': '#FE836C', 'colour_name': 'Summer '}, {'hex_value': '#A57762', 'colour_name': 'Taupe '}]"
+462,physicians formula,Physicians Formula Nude Wear Touch of Glow Palette in Light,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/490e2f5a880ab9d39c44876a0ea89f44_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-nude-wear-touch_102684.html?cat=328,https://well.ca,"
+Physicians Formula Nude Wear Touch of Glow Palette is an all in 1 palette can be used as an all-over illuminating powder, as a bronzer, as a blush or as a highlighter. Features: Micro-fine iridescent Mother of Pearl pigments bathe skin in the perfect balance of transparent and pearlescent shimmerHypoallergenicFragrance, Gluten & Paraben freeNon-comedogenicDermatologist approvedDirections: May be worn alone or over makeup. Blend all shades together and apply evenly over face and neck to even out skin tone. Apply lightest shade to highlight. Powder shade to even out skin tone, darkest shade as bronzer and blush shade to accentuate cheeks.Ingredients: Mica, Ethylhexyl Palmitate, Polybutene, Water, Kaolin, Diisostearyl Malate, Ethylhexyl Isononanoate, Mother of Pearl Powder, Nylon-12, Octyldodecyl Stearoyl Stearate, Calcium Aluminum Borosilicate, Boron Nitride, Lactic Acid, Magnesium Stearate, Synthetic Fluorphlogopite, Synthetic Wax, Tetrahexyldecyl Ascorbate, Tin Oxide, Tropaeolum Majus Flower/Stem/Leaf Extract, Ethylhexylglycerin, Phenoxyethanol. May Contain: Titanium Dioxide, Iron Oxides, Red 30, Red 40 Lake.",3.8,,bronzer,['Gluten Free'],2016-10-01T18:35:21.503Z,2017-12-23T21:08:50.391Z,http://makeup-api.herokuapp.com/api/v1/products/462.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/462/original/open-uri20171223-4-4rpirw?1514063330,[]
+461,dr. hauschka,Dr. Hauschka Rouge Powder ,31.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1bc9b62be0eb02ff7d07c2619dee18d1_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dr-hauschka-rouge-powder_34480.html?cat=328,https://well.ca,"Dr. Hauschka Rouge Powder is made with real silk, rose blossoms and jojoba oil to nurture the skin while contouring and adding a healthy hue to the cheeks.",5.0,,bronzer,"['Organic', 'Natural']",2016-10-01T18:35:20.179Z,2017-12-23T21:08:47.241Z,http://makeup-api.herokuapp.com/api/v1/products/461.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/461/original/data?1514063327,"[{'hex_value': '#EB9E84', 'colour_name': 'Natural Red 02 '}, {'hex_value': '#F3A5A3', 'colour_name': 'Rose 03 '}, {'hex_value': '#E5A78E', 'colour_name': 'Soft Terracotta 04 '}]"
+460,cargo cosmetics,Cargo Cosmetics Swimmables Water Resistant Blush,29.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0909a58a190eceee8bd042d9fc80b047_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/cargo-cosmetics-swimmables-water_87611.html,https://well.ca,"Cargo Cosmetics Swimmables Water Resistant Blush is a sweatproof, weatherproof blush has been tested by the make-up
+artists for Dancing With The Stars on the latest live tour.It's longwearing formula
+withstands moisture so you don’t have to fuss with re-application.
+Specially formulated with a unique silicone-coated powder that provides
+better adhesion to the skin and withstands water.
+
+
+Features:
+Silicone coated pigments provide better adhesion to skin and withstand waterL-lysine , an amino acid found naturally in the skin, increases the
+long wearing and water resistant properties because of its natural
+affinity to skinShade Range: Ingredients: Talc, Octyldodecyl Stearate, Lauroyl Lysine, Dimethicone, Zinc Stearate,
+ Methicone, Sodium Benzoate, Sodium Dehydroacetate, Benzethonium
+Chloride, Tocopheryl Acetate. May Contain: (+/-): Mica (CI 77019),
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499),
+ Bismuth Oxychloride (CI 77163), Ultramarines (CI 77007), Manganese
+Violet (CI 77742), Red 7 Lake (CI 15850:1), Red 30 Lake (CI 73360), Red
+27 Lake (CI 45410), Yellow 5 Lake (CI 19140).",5.0,powder,blush,[],2016-10-01T18:35:18.593Z,2017-12-23T21:08:46.309Z,http://makeup-api.herokuapp.com/api/v1/products/460.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/460/original/data?1514063326,"[{'hex_value': '#EB9A96', 'colour_name': 'Bali (Medium Rose Pink) '}, {'hex_value': '#F390AC', 'colour_name': 'Ibiza (Shimmering Hot Pink) '}]"
+459,mineral fusion,Mineral Fusion Blush,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f1c6dea6717aeaa8796a5f62992d8979_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/mineral-fusion-blush_91619.html,https://well.ca,"Mineral Fusion Blush features luxuriously silky, triple-milled minerals that offer a natural flush of color to brighten the complexion and create a healthy, youthful glow. Includes a powerful blend of Pomegranate, White Tea, Red Tea and Sea Kelp, plus Vitamins C and E that defend skin against free radical damage for a healthy radiance. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.Ingredients: Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Titanium Dioxide (CI 77891), Caprylic/Capric Triglyceride, Tocopheryl Acetate (Vitamin E), Ascorbyl Palmitate (Vitamin C), Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Vitis Vinifera (Grape) Seed Extract, Laminaria Ochroleuca (Sea Kelp) Extract, Aloe Barbadensis (Aloe Vera) Extract, Lauroyl Lysine, Sambucus Nigra Fruit (Elderberry), Phenoxyethanol. MAY CONTAIN (+/-): Iron Oxides (CI 77491, 77492, 77499), Carmine (CI 75470), Ultramarine (CI 77007), Manganese Violet (CI 77742). ",5.0,powder,blush,"['Gluten Free', 'Natural']",2016-10-01T18:35:16.184Z,2017-12-23T21:08:41.903Z,http://makeup-api.herokuapp.com/api/v1/products/459.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/459/original/data?1514063321,"[{'hex_value': '#BC7070', 'colour_name': 'Airy - Shimmering Mauve '}, {'hex_value': '#C88481', 'colour_name': 'Creation - Matte Rosy-pink '}, {'hex_value': '#E4958E', 'colour_name': 'Flashy - Matte Coral '}]"
+458,covergirl,CoverGirl Clean Glow Blush ,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bb0b0c2057205b8e39823c5c7fc6af45_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-clean-glow-blush_78621.html,https://well.ca,"Complete your Clean® look with a flush of lightweight, blendable color.
+This versatile 3-in-1 multi-shade compact lets you customize your color
+to create a radiant effect. Use just one color or all three!Features: 3-in-1 multi-shade compactLightweight, blendable flush of colorClean and natural lookHow to Apply: Begin with the contour, or darkest, shade in your palette and apply to the hollow space below your cheekbones.
+Apply the medium shade to the apples of your cheeks and sweep upwards toward the hairline.
+For a youthful glow, highlight the tops of your cheeks with the lightest shade.
+ ",5.0,powder,blush,[],2016-10-01T18:35:15.008Z,2017-12-23T21:08:40.969Z,http://makeup-api.herokuapp.com/api/v1/products/458.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/458/original/data?1514063320,[]
+457,covergirl,CoverGirl Clean Glow Blush,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/48492123aba0c6d096945d57a070361d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-clean-glow-blush_78620.html,https://well.ca,"Complete your Clean® look with a flush of lightweight, blendable color.
+This versatile 3-in-1 multi-shade compact lets you customize your color
+to create a radiant effect. Use just one color or all three!Features: 3-in-1 multi-shade compactLightweight, blendable flush of colorClean and natural lookHow to Apply: Begin with the contour, or darkest, shade in your palette and apply to the hollow space below your cheekbones.
+Apply the medium shade to the apples of your cheeks and sweep upwards toward the hairline.
+For a youthful glow, highlight the tops of your cheeks with the lightest shade.
+ ",,powder,blush,[],2016-10-01T18:35:14.369Z,2017-12-23T20:51:33.617Z,http://makeup-api.herokuapp.com/api/v1/products/457.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/457/original/data?1514062293,[]
+456,physicians formula,Physicians Formula Nude Wear Glowing Nude Blush,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8df6f68abe9f6bf47546254706f54e37_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-nude-wear-glowing_90087.html,https://well.ca,"This natural, luxurious blush is so lightweight you'll never even feel it. Sheer coverage with a hint of luminosity delivers a lit-from-within blushing glow.Airy formula boosts skins natural luminosity, and allows skin’s natural radiance and color to shine through. A perfect blend of blush and complexion boosting tones brighten and enhance skin tone while adding a touch of naturally radiant color.Hypoallergenic. Fragrance-Free. Gluten Free. Paraben-Free. Non-Comedogenic. Dermatologist approved. ",4.0,powder,blush,['Gluten Free'],2016-10-01T18:35:13.466Z,2017-12-23T20:51:32.291Z,http://makeup-api.herokuapp.com/api/v1/products/456.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/456/original/open-uri20171223-4-c79x3p?1514062292,[]
+455,covergirl,CoverGirl Cheekers Blush ,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d095a226cf2698dba1eba4c6e2ce9896_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-cheekers-blush_74131.html,https://well.ca,"Blush's basic rules—it has to be easy, and it has to look natural.
+That's Cheekers. Each portable mini-compact gives you a sheer blush that
+ goes on to stay true, stay for hours. It's the way to glow!Features: Stays for hoursEasy and naturalDermatologically-tested",5.0,powder,blush,[],2016-10-01T18:35:11.890Z,2017-12-23T20:51:21.297Z,http://makeup-api.herokuapp.com/api/v1/products/455.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/455/original/data?1514062281,[]
+454,e.l.f.,e.l.f. Studio Blush Palette Dark,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/73da123512d4ca1f2aebf5149e065d86_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-blush-palette-dark_99359.html,https://well.ca,"This beautiful blush palette holds 4 gorgeous shades to mix and match
+throughout the year for a custom blended color. Great for contouring,
+shading, sculpting, and highlighting, these silky smooth blushes create a
+ beautiful pigmented glow. With a mixture of complimentary matte and
+shimmer finishes, you can achieve a professional look every time.Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zince Stearate, Dimethicone, Tocopheryl Acetate (Ve).
+MAY CONTAIN: Titanium Dioxide (CI 77891), Iron OXides (CI 77491,
+CI 77492, CI 77499), Red 7 Lake (CI 15850), Ultramarines (CI 77007), Red
+ 6 Lake (CI 15850), Red 28 Lake (CI 45410). ",,powder,blush,['Vegan'],2016-10-01T18:35:11.086Z,2017-12-23T20:51:21.171Z,http://makeup-api.herokuapp.com/api/v1/products/454.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/454/original/data?1514062281,"[{'hex_value': '#DE7E73', 'colour_name': 'color 1'}, {'hex_value': '#D67088', 'colour_name': 'color 2'}, {'hex_value': '#BB5C5C', 'colour_name': 'color 3'}, {'hex_value': '#99504D', 'colour_name': 'color 4'}]"
+453,revlon,Revlon Powder Blush ,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/dd6ee943412a416ecfe9e4a1b2bed107_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-powder-blush_100975.html,https://well.ca,"Revlon Powder Blush is an ultra-soft, silky powder blush adds a natural flush of color to your
+cheeks and looks freshly applied all day. Enhance your complexion
+instantly.Features:Provides a natural flush of colour with a soft satin finishEnhances cheekbones instantlyEasy to blend, buildable colourAvailable in 9 amazing shades ",5.0,powder,blush,[],2016-10-01T18:35:08.531Z,2017-12-23T20:51:20.125Z,http://makeup-api.herokuapp.com/api/v1/products/453.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/453/original/data?1514062280,"[{'hex_value': '#9D6542', 'colour_name': 'Bronzilla '}, {'hex_value': '#f58f83', 'colour_name': 'Classy Coral '}, {'hex_value': '#f27186', 'colour_name': 'Haute Pink '}, {'hex_value': '#d47476', 'colour_name': 'Mauvelous '}, {'hex_value': '#c98077', 'colour_name': 'Naughty Nude '}, {'hex_value': '#f5989d', 'colour_name': 'Oh Baby Pink '}, {'hex_value': '#ad5063', 'colour_name': 'Wine Not '}]"
+452,maybelline,Maybelline Face Studio Master Hi-Light Light Booster Blush ,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e8c59b78ebeaec5c4b6aeba49a9ff0f6_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-face-studio-master_88836.html,https://well.ca,"Maybelline Face Studio Master Hi-Light Light Boosting blush formula has an expert
+balance of shade + shimmer illuminator for natural glow. Skin goes
+soft-lit with zero glitz.
+
+ For Best Results: Brush over all shades in palette and gently sweep over
+cheekbones, brow bones, and temples, or anywhere light naturally touches
+ the face.
+
+
+
+
+ ",5.0,powder,blush,[],2016-10-01T18:35:07.476Z,2017-12-23T20:51:17.460Z,http://makeup-api.herokuapp.com/api/v1/products/452.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/452/original/open-uri20171223-4-1pmofky?1514062277,[]
+451,physicians formula,Physicians Formula Nude Wear Glowing Nude Blush ,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f315b0da1a165666f67a8755c6f105ec_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-nude-wear-glowing_90088.html,https://well.ca,"This natural, luxurious blush is so lightweight you'll never even feel
+it. Sheer coverage with a hint of luminosity delivers a lit-from-within
+blushing glow.Airy formula boosts skins natural luminosity, and allows skin’s natural radiance and color to shine through. A
+ perfect blend of blush and complexion boosting tones brighten and
+enhance skin tone while adding a touch of naturally radiant color.Hypoallergenic. Fragrance-Free. Gluten Free. Paraben-Free. Non-Comedogenic. Dermatologist approved. ",4.0,powder,blush,['Gluten Free'],2016-10-01T18:35:06.089Z,2017-12-23T21:08:45.444Z,http://makeup-api.herokuapp.com/api/v1/products/451.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/451/original/open-uri20171223-4-1nhe8k?1514063325,[]
+450,e.l.f.,e.l.f. Contouring Blush & Bronzing Powder,3.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/adf90395cfffa4f3c2298b9f53622c81_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-contouring-blush-bronzing_117823.html?cat=328,https://well.ca,"Create a healthy and natural glow all year long with the e.l.f Contouring Blush & Bronzing Powder. The Blush highlights the cheeks to add a flush of colour, while the Bronzer accents and contours cheekbones for beautiful definition. This convenient compact has just what you need to achieve a gorgeous glow anytime, anywhere. How To Use: Brush on the ""bronze"" to the hollow of the cheeks for definition and dust around the face line to create a healthy glow. Use the ""blush"" on the apple of the cheeks to create a subtle healthy glow. Ingredients: Talc, Mica, Magnesium Stearate, Paraffinum Liquidum (Mineral Oil), Polyisobutene, Ethylhexyl Methoxycinnamate, Triacontanyl PVP, Sodium Dehydroacetate May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891), Red 40 Lake (CI 16035), Ultramarines (CI 77007) ",,,bronzer,[],2016-10-01T18:35:03.675Z,2017-12-23T21:08:44.583Z,http://makeup-api.herokuapp.com/api/v1/products/450.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/450/original/data?1514063324,"[{'hex_value': '#D6857A', 'colour_name': None}, {'hex_value': '#D3A281', 'colour_name': None}]"
+449,covergirl,CoverGirl Cheekers Blush,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1d1668b02148a8823eb19c1ce4157a4e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-cheekers-blush_74128.html,https://well.ca,"Blush's basic rules—it has to be easy, and it has to look natural.
+That's Cheekers. Each portable mini-compact gives you a sheer blush that
+ goes on to stay true, stay for hours. It's the way to glow!Features: Stays for hoursEasy and naturalDermatologically-tested",5.0,powder,blush,[],2016-10-01T18:35:02.504Z,2017-12-23T21:08:44.000Z,http://makeup-api.herokuapp.com/api/v1/products/449.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/449/original/data?1514063323,[]
+448,almay,Almay Smart Shade Powder Blush,14.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f939707421649b0ceab58c0534ec44de_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-smart-shade-powder-blush_84485.html,https://well.ca,"Brighten up your complexion with smart shade™ powder blush. This lightweight,
+smooth formula glides on easily and evenly for a look of natural
+radiance. Three shades of bricked color swirl together to create the
+perfect blush shade for your skin.Application Tips: Swirl the brush across the top of the palette. Sweep across the apples
+of your cheeks. For an all-over glow, apply subtle strokes across the
+contours of your face.
+ ",4.0,powder,blush,[],2016-10-01T18:35:01.157Z,2017-12-23T21:08:43.875Z,http://makeup-api.herokuapp.com/api/v1/products/448.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/448/original/data?1514063323,"[{'hex_value': '#FB9485', 'colour_name': 'Coral '}, {'hex_value': '#E6AC96', 'colour_name': 'Nude '}, {'hex_value': '#E99DAA', 'colour_name': 'Pink '}]"
+447,l'oreal,L'Oreal Paris True Match,16.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e4e4827631b874f898d41a90ab3de5a6_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-true-match_4395.html,https://well.ca,"True Match Blush flawlessly complements your skin's texture and tone and coordinates perfectly with True Match Makeup, Powder, and Concealer.Opti-Match technology creates uniquely true-to-life shades that flawlessly complement your skintone and undertone to perfection, leaving you with the most natural flush of colour imaginable.A unique Opti-BlendTM formula provides a skin-true texture that blends smoothly, never looks chalky or cakey. Stays fresh and natural looking hour after hour.Oil-free, vitamin-rich, and non-comedogenic.",4.8,powder,blush,[],2016-10-01T18:34:59.254Z,2017-12-23T21:08:46.196Z,http://makeup-api.herokuapp.com/api/v1/products/447.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/447/original/data?1514063326,"[{'hex_value': '#E9B899', 'colour_name': 'Tender Rose '}]"
+446,physicians formula,Physicians Formula Happy Booster Glow & Mood Boosting Blush,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cd18303ddee33a8e03e0ad53f51e38f1_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-happy-booster_61134.html,https://well.ca,"Physicians Formula Happy Booster™ Glow & Mood Boosting Blush ultra-soft and blendable blushing powder features a fresh and vibrant mix of blushing tones infused with a pop of colour to create a healthy glow. Multi-reflective pearls provide a soft iridescence to highlight contour and add radiance to cheeks. Infused with our Happy Boost Blend, featuring Happy Skin and Euphoryl, natural plant extracts which have been shown to promote a feeling of happiness by mimicking the effect of Endorphins and helping protect the skin from environmental stress. The sweet scent of Violet provides a feeling of joy each time you apply!Directions for Use: Using a soft powder brush, sweep over entire palette to evenly blend colors. Tap excess powder from brush before applying. Brush over cheeks to define and contour or apply right below cheekbones for a more defined dramatic look.Ingredients: Talc. Zea Mays (Corn) Starch. Dimethicone. Octyldodecyl Stearoyl Stearate. Zinc Stearate. Pentaerythrityl Tetraisostearate. Astrocaryum Murumuru Seed Butter. Helianthus Annuus (Sunflower) Seed Oil. Lecithin. Phytosteryl Canolate. Plukenetia Volubilis Seed Oil. Rhodiola Rosea Root Extract. Rosmarinus Officinalis (Rosemary) Leaf Extract. Theobroma Grandiflorum Seed Butter. Schinus Terebinthifolius Seed Extract. Palm Alcohol. Phenoxyethanol. Potassium Sorbate. Fragrance. May Contain: Carmine. Iron Oxides. Manganese Violet. Mica. Red 6. Red 7 Lake. Red 28 Lake. Red 30 Lake. Titanium Dioxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Non-comedogenic. Paraben-free. Dermatologist approved.",4.7,powder,blush,['Gluten Free'],2016-10-01T18:34:58.233Z,2017-12-23T21:08:46.094Z,http://makeup-api.herokuapp.com/api/v1/products/446.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/446/original/data?1514063326,[]
+445,pure anada,Pure Anada Loose Mineral Luminous Blush,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/187a238fb2afe03f3f7d0133305d845a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/pure-anada-loose-mineral-luminous_93630.html,https://well.ca,"Impart a healthy glow, with a Pure Anada luminous mineral blush!Learn how to make your own custom lip balm using your favourite shade with our easy DIY Lip Balm recipe on our blog, The Well!Shade Range: Ingredients: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide",4.0,powder,blush,"['Canadian', 'Natural']",2016-10-01T18:34:55.831Z,2017-12-23T21:08:45.969Z,http://makeup-api.herokuapp.com/api/v1/products/445.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/445/original/data?1514063325,"[{'hex_value': '#b5665f', 'colour_name': 'Autum (Neutral) '}, {'hex_value': '#8b2d46', 'colour_name': 'Hibiscus (Cool) '}, {'hex_value': '#f69476', 'colour_name': 'Mango Ice (Warm) '}]"
+444,physicians formula,Physicians Formula Mineral Wear Airbrushing Blush,15.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e096eb4264561b76a90a9a2bfb6cfca2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-mineral-wear_70987.html,https://well.ca,"Physicians Formula Mineral Wear Airbrushing Blush is an ultra-fine mineral blush delivers a radiant pop of color with a flawless airbrushed finish.Directions: Buff on blush over cheekbones to define and contour or apply right below
+ cheekbones for amore defined and dramatic look. For the most even
+application, be sure to tap excess powder from brush before applying.Ingredients: Mica, Boron Nitride, Zinc Stearate, Lauroyl Lysine, Tricaprylin,
+Magnesium Silicate, Camellia Oleifera Leaf Extract, Chamomilla Recutita
+(Matricaria) Flower Extract, Ginkgo Biloba Leaf Extract, Panax Ginseng
+Root Extract, Carthamus Tinctorius (Safflower) Seed Oil, Tocopheryl
+Acetate, Retinyl Palmitate, Ascorbyl Palmitate, Chlorphenesin, Potassium
+ Sorbate, Sodium Dehydroacetate, May Contain: Iron Oxides, Titanium
+Dioxide, Zinc OxideHypoallergenic. Fragrance-Free. Paraben-Free. Gluten Free. Dermatologist approved. Non-Comedogenic.",4.8,powder,blush,['Gluten Free'],2016-10-01T18:34:53.304Z,2017-12-23T21:08:45.797Z,http://makeup-api.herokuapp.com/api/v1/products/444.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/444/original/open-uri20171223-4-20adlg?1514063325,"[{'hex_value': '#e19792', 'colour_name': 'Natural (7859C) '}, {'hex_value': '#faaab5', 'colour_name': 'Rose (7860C) '}]"
+443,covergirl,CoverGirl Instant Cheekbones Contouring Blush,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5361038d5de79bedaca6c64b48271161_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-instant-cheekbones_33230.html,https://well.ca,"Want great bone structure? Instant Cheekbones Contouring Blush lets you
+create them instantly and easily. Each compact contains three expertly
+coordinated shades that add natural-looking contour, so you can look
+like you were born with great cheekbones, anytime!Features:3 Complementary skin-flushed shades contour your cheekbonesLightweightDermatologically testedBlendable",3.3,powder,blush,[],2016-10-01T18:34:52.147Z,2017-12-23T21:08:45.693Z,http://makeup-api.herokuapp.com/api/v1/products/443.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/443/original/data?1514063325,[]
+442,physicians formula,Physicians Formula Happy Booster Glow & Mood Boosting Powder,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f79082caeb5359d5927f1a4a0aecf3b8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-happy-booster_61125.html,https://well.ca,"Physicians Formula Happy Booster™ Glow & Mood Boosting Powder is an ultra-smooth, perfecting powder in a complementary palette of colour. It blends together to even out skin tone with a flawless radiance. Vibrant pink heart gives cheeks a healthy pop of colour. Infused with our Happy Boost Blend, featuring Happy Skin and Euphoryl, natural plant extracts which have been shown to promote a feeling of happiness by mimicking the effect of Endorphins and helping protect the skin from environmental stress. The sweet scent of Violet provides a feeling of joy each time you apply.Directions for Use: May be worn alone or over makeup. Blend all shades together and brush on powder evenly over face and neck to even out skin tone with a happy glow. For an extra pop of color, sweep brush over the pink heart and apply on cheeks. For best results on dry to very dry skin, apply moisturizer prior to using powder.Ingredients: Talc. Zea Mays (Corn) Starch. Dimethicone. Octyldodecyl Stearoyl Stearate. Pentaerythrityl Tetraisostearate. Astrocaryum Murumuru Seed Butter. Helianthus Annuus (Sunflower) Seed Oil. Lecithin. Phytosteryl Canolate. Plukenetia Volubilis Seed Oil. Rhodiola Rosea Root Extract. Rosmarinus Officinalis (Rosemary) Leaf Extract. Theobroma Grandiflorum Seed Butter. Schinus Terebinthifolius Seed Extract. Palm Alcohol. Phenoxyethanol. Potassium Sorbate. Fragrance. May Contain: Carmine. Iron Oxides. Manganese Violet. Mica. Red 6. Red 7 Lake. Red 28 Lake. Red 30 Lake. Titanium Dioxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Paraben free. Dermatologist approved. Non-Comedogenic.",4.8,powder,blush,['Gluten Free'],2016-10-01T18:34:50.790Z,2017-12-23T21:08:45.578Z,http://makeup-api.herokuapp.com/api/v1/products/442.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/442/original/open-uri20171223-4-dmq85z?1514063325,[]
+441,e.l.f.,e.l.f. Studio Blush Palette Light,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9afdb02a47f0a04fe1f7aa78c5a49f63_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-blush-palette-light_99360.html,https://well.ca,"This beautiful blush palette holds 4 gorgeous shades to mix and match
+throughout the year for a custom blended color. Great for contouring,
+shading, sculpting, and highlighting, these silky smooth blushes create a
+ beautiful pigmented glow. With a mixture of complimentary matte and
+shimmer finishes, you can achieve a professional look every time.Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zince Stearate, Dimethicone, Tocopheryl Acetate (Ve).
+MAY CONTAIN: Titanium Dioxide (CI 77891), Iron OXides (CI 77491,
+CI 77492, CI 77499), Red 7 Lake (CI 15850), Ultramarines (CI 77007), Red
+ 6 Lake (CI 15850), Red 28 Lake (CI 45410). ",4.7,powder,blush,['Vegan'],2016-10-01T18:34:49.620Z,2017-12-23T21:08:45.339Z,http://makeup-api.herokuapp.com/api/v1/products/441.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/441/original/data?1514063325,"[{'hex_value': '#EA8DA4', 'colour_name': 'color 1'}, {'hex_value': '#D58A68', 'colour_name': 'color 2'}, {'hex_value': '#CC646C', 'colour_name': 'color 3'}, {'hex_value': '#E3756F', 'colour_name': 'color 4'}]"
+440,pure anada,Pure Anada Loose Mineral Velvet Matte Blush ,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/47169d3a86232fa7eec3a0c43ed1ad06_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-loose-mineral-velvet_83216.html,https://well.ca,"Pure Anada Loose Mineral Velvet Matte Blush gives your cheeks a soft sweep of subtle color. Comes packaged in a 3 g sifter jar. Shade Range: Ingredients: Mica, Calcium Carbonate, Iron Oxides, Ultramarines, May contain: Titanium Dioxide",4.5,powder,blush,"['Canadian', 'Natural']",2016-10-01T18:34:47.620Z,2017-12-23T21:08:45.234Z,http://makeup-api.herokuapp.com/api/v1/products/440.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/440/original/data?1514063325,"[{'hex_value': '#9B593E', 'colour_name': 'Twig Blush (Neutral Tones) '}, {'hex_value': '#A25156', 'colour_name': 'Berry Blush (Cool Tones) '}, {'hex_value': '#AC564D', 'colour_name': 'Apricot Blush (Warm Tones) '}]"
+439,maybelline,Maybelline Fit Me Blush,10.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/53d5f825461117c0d96946e1029510b0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-fit-me-blush_31269.html,https://well.ca,"Maybelline Fit Me Blush has lightweight pigments blend easily and wear evenly. It provides a natural, fade-proof cheek color that leaves skin the way it was meant to be...fresh, breathing, and natural.
+
+For Best Results: For soft, natural look, brush along cheekbone, sweeping upward.",4.8,powder,blush,[],2016-10-01T18:34:46.302Z,2017-12-23T21:08:45.097Z,http://makeup-api.herokuapp.com/api/v1/products/439.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/439/original/open-uri20171223-4-1max36x?1514063325,"[{'hex_value': '#FB8684', 'colour_name': 'Deep Coral '}, {'hex_value': '#F27988', 'colour_name': 'Deep Rose '}, {'hex_value': '#C94A50', 'colour_name': 'Deep Wine '}, {'hex_value': '#FFAAAF', 'colour_name': 'Light Rose '}, {'hex_value': '#FC9D8F', 'colour_name': 'Medium Coral '}, {'hex_value': '#E89890', 'colour_name': 'Medium Nude '}, {'hex_value': '#FF93A0', 'colour_name': 'Medium Pink '}]"
+438,physicians formula,Physicians Formula Organic Wear Bronzer & Blush,21.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/57664a83a5b141160e76968fe51b51a7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear_11977.html,https://well.ca,"Physicians Formula Organic Wear 100% Natural Origin Bronzer and Blush is an easy-to-use 2-in-1 bronzer and blush that allows shades to be used individually or layered for the ultimate sunkissed, natural-looking finish.Bronzer adds warmth and depth for a naturally tan glow while blush naturally enhances and accentuates cheeks for a radiant glow.Directions for Use: May be worn alone or over makeup. Lightly brush bronzer over face and neck for a natural-looking tan glow. Sweep blush over cheekbones to define and contour or apply right below cheekbones for a more defined and dramatic look. Layer blush on top of bronzer for the ultimate effect. For the most even application, be sure to tap excess powder from brush before applying. For best results on dry to very dry skin, apply moisturizer prior to using powder.Ingredients: Mica, Zea Mays (Corn Starch)*, Octyldodecyl Stearoyl Stearate, Kaolin, Olea Europaea (Olive) Fruit Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Glyceryl Caprylate, Glycine Soja (Soybean) Oil*, Vitis Vinifera (Grape) Seed Oil*, Oryza Sativa (Rice) Hull Powder, Bambusa Arundinacea Stem Powder, Cinnamic Acid, Tocopheryl Acetate. May Contain: Titanium Dioxide, Iron Oxides, Manganese Violet, Ultramarines.100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100% Free of Parabens. 100% Free of GMO's. 100% Free of Synthetic Colors. 100% Free of Synthetic Fragrances. 100% Cruelty Free.",4.9,,bronzer,"['Gluten Free', 'Natural']",2016-10-01T18:34:45.305Z,2017-12-23T21:08:48.996Z,http://makeup-api.herokuapp.com/api/v1/products/438.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/438/original/open-uri20171223-4-1r9v0h0?1514063328,"[{'hex_value': '#C08879', 'colour_name': None}, {'hex_value': '#C3A17C', 'colour_name': None}]"
+437,pure anada,Pure Anada Pressed Mineral Cheek Colour Pan,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/43071cd57ecffc55c1e0bff29278c3a7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-pressed-mineral-cheek_83224.html,https://well.ca,"Pure Anada is pleased to bring you a lovely selection of convenient pressed mineral colors! You’ll love the silky texture and longevity of these highly wearable cheek colors.Mineral pigments and organic Jojoba are pressed together to create a natural makeup product. You can have confidence that you are making a beautiful, healthy choice!Pure Anada pressed colors are designed to be inserted into customizable magnetic compacts like the Pure Ananda Reusable Magnetic Compact. Design your own palette! Shades:Ingredients: Mica (CI 77019), Iron Oxides (CI 77492, CI 77499) Calcium Carbonate, Caprylic Triglyceride *Simmondsia Chinensis (Jojoba seed oil) Ultramarines (CI 77007), Titanium Dioxide (CI 77891) * Certified Organic IngredientVegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",4.4,powder,blush,"['Natural', 'Vegan', 'Gluten Free', 'Non-GMO', 'Canadian']",2016-10-01T18:34:42.997Z,2017-12-23T21:08:44.981Z,http://makeup-api.herokuapp.com/api/v1/products/437.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/437/original/data?1514063324,"[{'hex_value': '#d88a66', 'colour_name': 'Bronzed Clove '}, {'hex_value': '#b9484a', 'colour_name': 'Day Lily (Demi-Matte Burgundy) '}, {'hex_value': '#f47892', 'colour_name': 'Forever Summer\t (Demi-Matte Coral Pink) '}, {'hex_value': '#ee7f66', 'colour_name': 'Fresh Mandarin '}, {'hex_value': '#c14c38', 'colour_name': 'Lush Nectarine (Demi-Matte Apricot) '}, {'hex_value': '#e06989', 'colour_name': 'Strawberry Field '}, {'hex_value': '#f39f94', 'colour_name': 'Sweet Pea '}, {'hex_value': '#e07b78', 'colour_name': 'Tender Twig '}]"
+436,milani,Milani Rose Powder Blush,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4c9db52b5d1cf54fe74fc60b00ffdaa1_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-rose-powder-blush_101161.html,https://well.ca,"Now this is a blush that deserves to be seen! Gorgeous in the compact, even prettier on cheeks, this petal soft, natural-finish powder shapes, contours and highlights. Streaks? Never. Easy to use? Always. In ultra-flattering shades that you just can’t live without.Features:Real rose petals are crushed and micro-milled into the powder to naturally enhance every skin toneEasy to use, streak-free, shapes & contoursSuitable for all skin typesMade in ItalyStreak-freeApplication: Glide a brush through the color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow. Ingredients: Talc, Synthetic Wax, Aluminum Starch, Octenylsuccinate, Hydoxylated Lanolin, Isopropyl Lanoate, Petrolatum, Cyclomethicone,, Lanolin Alcohol, Cetyl Actate, Acetylated Lanolin Alcohol, Methylparabne, Proprylparaben. +/- May Contain: Synthetic Flourphlogopite, Mica, Tin Oxide, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Yellow 5 (CI 19140), Red 7 (CI 15850), Red 28 (CI 45410), Red 36 (CI 12085), Blue 1 (CI 42090), Carmine (CI 75470), Ultamarines (CI 77007), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742). ",4.6,powder,blush,[],2016-10-01T18:34:42.205Z,2017-12-23T21:08:44.788Z,http://makeup-api.herokuapp.com/api/v1/products/436.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/436/original/open-uri20171223-4-192jbo8?1514063324,"[{'hex_value': '#FF818D', 'colour_name': 'Coral Cove '}, {'hex_value': '#D06079', 'colour_name': 'Romantic Rose '}, {'hex_value': '#F4587A', 'colour_name': 'Tea Rose '}]"
+435,milani,Milani Baked Blush,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4ae353dcae46e9b97c4915566fc9190a_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-baked-blush_32703.html,https://well.ca,"This silky blush with benefits can be used so many ways. It shapes, it contours, it highlights. Sunbaked on Italian terracotta tiles, it’s buildable from sheer to vibrant. Yes, it adds a cheeky pop of colour to your complexion. Radiance and warmth, too.Features:Multi-purpose: shapes, contours and highlights cheeksEasy to use for a perfect radiant finishMirror & brush applicator includedStreak-freeBuildable from sheer to vibrantApplication: Glide brush through color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow.Ingredients: Talc, Mica, Glyceryl Ethylhexanoate/Stearate/Adipate, Dimethicone, Octyldodecyl Stearoyl Stearate, Isopropyl Myristate, Polyacrylamide, C13-14 Isoparaffin, Laureth-7, Sorbitan Stearate, Zea Mays (Corn) Starch, Lauroyl Lysine, Magnesium Aluminum Silicate, Cetearyl Ethylhexanoate, Sodium Dehydroacetate, Nylon-12, Imidazolidinyl Urea, Methylparaben, Silica, Ethylparaben, Propylparaben, Butylparaben, Titanium Dioxide (CI 77891), Iron Oxide (CI 77491). +/- May Contain: Iron Oxide (CI 77492, CI 77499), Yellow 5 (CI 19140), Red 7 (CI 15850), Yellow 6 (CI 15985), Carmine (CI 75470), Ultramarines (CI 77007). Shade Range: ",4.7,powder,blush,[],2016-10-01T18:34:41.358Z,2017-12-23T21:08:44.433Z,http://makeup-api.herokuapp.com/api/v1/products/435.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/435/original/open-uri20171223-4-1dbovcq?1514063324,"[{'hex_value': '#F2A5B2', 'colour_name': '01-Dolce Pink (Pink Shimmer) '}, {'hex_value': '#EC8079', 'colour_name': ""02-Rose D'oro (Pink & Gold Shimmer) ""}, {'hex_value': '#E2918C', 'colour_name': '03-Berry Amore (Rose Berry with Gold Shimmer ) '}, {'hex_value': '#EEA99F', 'colour_name': '05-Luminoso (Luminous Peach Shimmer ) '}, {'hex_value': '#E17A71', 'colour_name': '08-Corallina (Coral Shimmer) '}, {'hex_value': '#EC70A6', 'colour_name': '10-Delizioso Pink (Hot Pink Matte) '}, {'hex_value': '#CD2254', 'colour_name': '11-Bella Rosa (Bright Raspberry Matte) '}]"
+434,cargo cosmetics,Cargo Cosmetics Blush,26.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b684853d1ee1ffd6125cdbb0308cb9c7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-blush_87602.html,https://well.ca,"A favorite with make-up artists Cargo's blendable and easy to wear blush
+offers a stunning array of shades from ranging from delicate neutrals to
+ vibrant corals and pinks. Cargo blush is created with a moist and sheer
+ powder formulation that glides easily over the skin for a beautiful,
+natural flush. The silky smooth texture layers well for added intensity
+as desired. The pro formulation also offers longwearing and stay true
+color. Generously packaged in Cargo's oversized signature tin allowing for
+easy access with professional brushes.
+
+
+Features:
+Silky smooth texture that layer well for added intensity as desiredLongwearing and stay true colorGenerously packaged in Cargo's oversized signature tin allowing for easy access with professional brushesShade Range: Cargo Cosmetics Blush is one of our 10 Makeup Must Haves. See the full list on The Well. Ingredients: Talc, Zinc Stearate, Boron Nitride, Octyldodecyl Stearate, Octyldodecyl
+Stearoyl Stearate, Phenoxyethanol, Silica, Tocopheryl Acetate, Caprylyl
+Glycol, Carthamus Tinctorius Seed Oil, Sorbic Acid, Aloe Barbadensis
+Leaf Extract. May Contain (+/-): CI 77019 (Mica), CI 77891
+(Titanium Dioxide), CI 15850 (Red 7 Lake), CI 15850 (Red 6 Lake), CI
+15985 (Yellow 6 Lake), CI 77491 (Iron Oxides), CI 77499 (Iron Oxides),
+CI 77492 (Iron Oxides), CI 77742 (Manganese Violet), CI 77007
+(Ultramarines).
+
+",4.8,powder,blush,[],2016-10-01T18:34:39.515Z,2017-12-23T21:08:44.106Z,http://makeup-api.herokuapp.com/api/v1/products/434.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/434/original/data?1514063324,"[{'hex_value': '#ED94A0', 'colour_name': 'Catalina (Cotton Candy Pink) '}, {'hex_value': '#F9283D', 'colour_name': 'Key Largo (Tropical Punch) '}, {'hex_value': '#FA5B48', 'colour_name': 'Laguna (Tropical Melon) '}, {'hex_value': '#B9746F', 'colour_name': 'Mendocino (Wildflower Pink with a Gold Sheen) '}, {'hex_value': '#DC7861', 'colour_name': 'Rome (Soft Tangerine) '}]"
+433,cargo cosmetics,Cargo Cosmetics Contour Palette ,36.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/006d1877c44b9f612c5a9805d02b1b02_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-contour-palette_87504.html,https://well.ca,"This Cargo Cosmetics Contour Palette is a simple and easy system that can help you contour
+and highlight flawlessly.
+The textures, colours and finishes were specially designed to be 'fool
+proof'. With ease of application top of mind and the embossed shades
+give step by step directions. It's the closest thing to having a make-up
+artist in your make-up kit!
+
+Features:
+ Includes coordinated shades with a highlighter, blush and contour color, each embossed with their application stepThe embossed shades give step-by-step directions: the closest thing to having a make-up artist in your make-up kit!Textures, colors and finishes were specially designed to be 'fool-proof', with ease of application being top of mindSold in a stunning brushed silver compact with mirrorIngredients: Talc, Octyldodecyl Stearate, Octyldodecyl Stearoyl Stearate, Zinc
+Stearate, Boron Nitride, Tocopheryl Acetate,
+Phenoxyethanol, Silica, Caprylyl Glycol, Carthamus Tinctorius
+(Safflower) Seed Oil, Sorbic Acid (A Preservative), Aloe Vera (Aloe
+Barbadensis) Extract. May Contain (+/-): Mica (CI 77019),
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491/CI 77492/CI 77499),
+Red 6 Lake (CI 15850), Red 7 Lake (CI 15850:1), Red 27 Lake (CI
+45410:2), Bismuth Oxychloride (CI 77163), Manganese Violet (CI 77742),
+Ultramarines (CI 77007), Tin Oxide (CI 77861).",,,bronzer,[],2016-10-01T18:34:38.800Z,2017-12-23T21:08:48.809Z,http://makeup-api.herokuapp.com/api/v1/products/433.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/433/original/data?1514063328,"[{'hex_value': '#F3E3D5', 'colour_name': None}, {'hex_value': '#E7A185', 'colour_name': None}, {'hex_value': '#E9BB99', 'colour_name': None}]"
+432,cargo cosmetics,Cargo Cosmetics BeachBlush,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/87772297ba0794c272d7e9f751d3beac_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-beachblush_87472.html?cat=328,https://well.ca,"Imagine the perfect marriage of blush and bronzer! Four harmonious
+shades work together to provide perfectly flushed cheeks with a
+sun-drenched glow. Golden goddess effects in a flash! Cargo Cosmetics' BeachBlush™
+has earned its status as one of Cargo's most iconic products and even
+appeared as a question on Jeopardy! Packaged in Cargo's signature tin with
+generous surface area for easy swirling.
+This BeachBlush in Coral Beach is a warm peach bronze color medley.Features:
+ Four harmonious shades in one tin work together to provide the
+perfect balance of color for all skin tones, avoiding the yellow look of
+ many bronzers Light reflective shimmer particles add a radiant glow to the skin and soften the appearance of fine linesGenerously packaged with in Cargo's signature tin this medley of four
+distinct, multi-tonal bronzing and blush shades gives a beautiful and
+distinctive look to the product, unique from Cargo’s other blush and
+bronzing productsBeachBlush™ is the perfect complement to both your bronzing powder and your blushHow to Use: Apply using a fluff brushTo optimize all four shades in BeachBlush swirl the brush over all
+four color bars, combining the different tones to create one harmonious
+hueApply to the cheekbone area, dust lightly onto the apples of the
+cheeks as well as any areas of the face that would be naturally kissed
+by the sun
+Ingredients: Mica, Dimethicone, Zinc Stearate, Ethylhexyl Palmitate, Octyldodecyl
+Steaoryl Stearate, Octyldodecanol, Potassium Sorbate, Sodium Benzoate,
+Benzyl Alcohol, BHT, Tin Oxide
+May Contain (+/-): CI 77891 (Titanium Dioxide), CI 77491 / CI
+77492 / CI 77499 (Iron Oxides), CI 75470 (Carmine), CI 45410 (Red 27
+Lake), CI 19140 (Yellow 5 Lake), CI 15850 (Red 6 Lake).",,,bronzer,[],2016-10-01T18:34:37.928Z,2017-12-23T21:08:43.045Z,http://makeup-api.herokuapp.com/api/v1/products/432.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/432/original/data?1514063323,"[{'hex_value': '#CC8666', 'colour_name': None}, {'hex_value': '#E5C0AA', 'colour_name': None}, {'hex_value': '#CC9873', 'colour_name': None}]"
+431,e.l.f.,e.l.f. Studio Contouring Blush & Bronzing Powder,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/32d324c76a75429df71cd525d60318a8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-contouring-blush_93099.html?cat=328,https://well.ca,"
+
+
+
+
+ Create a healthy and natural glow all year long with this e.l.f. Studio Contouring Blush & Bronzing Powder. The Blush highlights the cheeks to add a
+flush of color, while the Bronzer accents and contours cheekbones for
+beautiful definition. This convenient compact has just what you need to
+achieve a gorgeous glow anytime, anywhere.St. Lucia Shade: How to Use: Brush on the ""bronze"" to the hollow of the cheeks for definition and
+dust around the face line to create a healthy glow. Use the ""blush"" on
+the apple of the cheeks to create a subtle healthy glow.Ingredients: Talc, Mica, Magnesium Stearate, Ethylhexyl Methoxycinnamate, Paraffinium
+ Liquidum (Mineral Oil), Hydrogenated Polyisobutene, Sodium
+Dehydroacetate, Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium
+Dioxide (CI 77981), Red No.40 Lake (CI 16035), Ultramarine Blue (CI
+77007",4.3,,bronzer,['Vegan'],2016-10-01T18:34:37.138Z,2017-12-23T21:08:48.606Z,http://makeup-api.herokuapp.com/api/v1/products/431.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/431/original/data?1514063328,"[{'hex_value': '#C89282', 'colour_name': 'color 1'}, {'hex_value': '#876A51', 'colour_name': 'color 2'}]"
+430,cargo cosmetics,Cargo Cosmetics BeachBlush ,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/62507a6df269ba7ecba37157bc4bc3e9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-beachblush_87477.html?cat=328,https://well.ca,"Imagine the perfect marriage of blush and bronzer! Four harmonious
+shades work together to provide perfectly flushed cheeks with a
+sun-drenched glow. Golden goddess effects in a flash! Cargo Cosmetics' BeachBlush™
+has earned its status as one of Cargo's most iconic products and even
+appeared as a question on Jeopardy! Packaged in Cargo's signature tin with
+generous surface area for easy swirling.
+This BeachBlush in Echo Beach is a warm berry bronze color medley.Features:
+ Four harmonious shades in one tin work together to provide the
+perfect balance of color for all skin tones, avoiding the yellow look of
+ many bronzers Light reflective shimmer particles add a radiant glow to the skin and soften the appearance of fine linesGenerously packaged with in Cargo's signature tin this medley of four
+distinct, multi-tonal bronzing and blush shades gives a beautiful and
+distinctive look to the product, unique from Cargo’s other blush and
+bronzing productsBeachBlush™ is the perfect complement to both your bronzing powder and your blushHow to Use: Apply using a fluff brushTo optimize all four shades in BeachBlush swirl the brush over all
+four color bars, combining the different tones to create one harmonious
+hueApply to the cheekbone area, dust lightly onto the apples of the
+cheeks as well as any areas of the face that would be naturally kissed
+by the sun
+Ingredients: Mica, Dimethicone, Zinc Stearate, Ethylhexyl Palmitate, Octyldodecyl
+Steaoryl Stearate, Octyldodecanol, Potassium Sorbate, Sodium Benzoate,
+Benzyl Alcohol, BHT, Tin Oxide
+May Contain (+/-): CI 77891 (Titanium Dioxide), CI 77491 / CI
+77492 / CI 77499 (Iron Oxides), CI 75470 (Carmine), CI 45410 (Red 27
+Lake), CI 19140 (Yellow 5 Lake), CI 15850 (Red 6 Lake).",5.0,,bronzer,[],2016-10-01T18:34:36.039Z,2017-12-23T21:08:43.778Z,http://makeup-api.herokuapp.com/api/v1/products/430.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/430/original/data?1514063323,"[{'hex_value': '#DB9066', 'colour_name': None}, {'hex_value': '#C26351', 'colour_name': None}, {'hex_value': '#E3A58E', 'colour_name': None}, {'hex_value': '#CE8774', 'colour_name': None}]"
+429,physicians formula,Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Blush in Rose,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7c674b3490001af91546b73c5fc45f94_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-argan-wear_102667.html,https://well.ca,"Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Blush is an exotic blush infused with 100% Pure Argan Oil.Features: Argan
+ oil that help transform skin, smoothing fine lines, brightening dull
+skin and renewing suppleness, helping to enhance skin's youthful glowHypoallergenicGluten & Paraben freeNon-comedogenicDermatologist approvedDirections: Sweep
+ brush over entire palette to evenly blend colors. Tap excess powder
+from brush before applying. Brush over cheekbones to define and contour
+ or apply right below cheekbones for a more defined and dramatic look.Ingredients: Talc,
+ Mica, Isostearyl Neopentanoate, Argania Spinosa (Argan) Kernel Oil,
+Polybutene, Ascorbyl Palmitate, C12-15 Alkyl Benzoate, Calcium Sodium
+Borosilicate, Citric Acid, Fragrance, Glyceryl Oleate, Glyceryl
+Stearate, Isopropyl Isostearate, Lecithin, Tin Oxide, Tocopherol,
+Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol. May Contain: Iron
+Oxides, Titanium Dioxide, Red 6, Red 7, Ultramarines, Yellow 5 Lake.",5.0,powder,blush,['Gluten Free'],2016-10-01T18:34:34.231Z,2017-12-23T21:08:43.426Z,http://makeup-api.herokuapp.com/api/v1/products/429.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/429/original/open-uri20171223-4-156cku8?1514063323,[]
+428,stila,Stila Convertible Colour Palette Sinrise Splendor,51.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ad55adbfdae0bb8adfe72bcbc41893ac_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/stila-convertible-colour-palette_120775.html,https://well.ca,"Stila Convertible Colour Palette is a fresh arrangement of Convertible Colour Dual Lip & Cheek Creams with five cool toned shades. They blend like a dream, leaving lips and cheeks petal soft with pretty pops of translucent colour. Sunrise Splendor Shades:English Rose (warm rose tone)Lillium (pinky nude)Cherry Blossom (pink)Fuchsia (bright pink)Tulip (deep plum)Application: For lips, apply with fingertips or lip brush. For cheeks, tap your ring finger into product and gently warm against your thumb. Then tap colour onto cheeks, blending outward and upward. Can also be applied with brush.Ingredients: Ricinus Communis (Castor) Seed Oil, Lanolin Oil, Beeswax (Cera Alba), Octyl Dodecanol, Microcrystalline Wax, Phenyl Trimethicone, Caprylic/Capric Triglyceride, Ozokerite, Hydrogenated Palm Kernel Glycerides, Octyl Palmitate, Isononyl Isononanoate, C-12-15 Alkyl Benzoate, Tocopheryl Acetate, Hydrogenated Palm Glycerides, BHT. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (Cl 15850), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Yellow 5 Lake (CI 19140).Red 22 Lake (CI 45380).",,cream,blush,[],2016-10-01T18:34:33.400Z,2017-12-23T21:08:43.243Z,http://makeup-api.herokuapp.com/api/v1/products/428.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/428/original/data?1514063323,[]
+427,stila,Stila Convertible Colour Palette Sunset Serenade,51.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6bb8e9566e2b42bfaf85b9abe36e7cde_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/stila-convertible-colour-palette_120773.html,https://well.ca,"Stila Convertible Colour Palette is a fresh arrangement of Convertible Colour Dual Lip & Cheek Creams with five warm toned shades. They blend like a dream, leaving lips and cheeks petal soft with pretty pops of translucent colour. Sunset Serenade Shades: Petunia (warm pink)Peach blossom (warm peach)Gerbera (peachy nude)Camellia (warm beige)Twilight Rose (deep rose)Application: For lips, apply with fingertips or lip brush. For cheeks, tap your ring finger into product and gently warm against your thumb. Then tap colour onto cheeks, blending outward and upward. Can also be applied with brush.Ingredients: Ricinus Communis (Castor) Seed Oil, Lanolin Oil, Beeswax (Cera Alba), Octyl Dodecanol, Microcrystalline Wax, Phenyl Trimethicone, Caprylic/Capric Triglyceride, Ozokerite, Hydrogenated Palm Kernel Glycerides, Octyl Palmitate, Isononyl Isononanoate, C-12-15 Alkyl Benzoate, Tocopheryl Acetate, Hydrogenated Palm Glycerides, BHT. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (Cl 15850), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Yellow 5 Lake (CI 19140).Red 22 Lake (CI 45380).",,cream,blush,[],2016-10-01T18:34:32.344Z,2017-12-23T21:08:43.144Z,http://makeup-api.herokuapp.com/api/v1/products/427.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/427/original/data?1514063323,[]
+421,anna sui,Anna Sui Cream Cheek Colour,27.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3fd71730443a4f57b798668c24d0ad19_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-suicream-cheek-colour_115150.html,https://well.ca,This Anna Sui Cream Cheek Colour is an oil-based gel formula that blends colour into the skin while promoting radiance in the cheeks. Its pore smoothing powder creates a soft focus effect that leaves skin looking smooth and poreless.Directions: Apply with the unique sponge by dabbing the colour onto your cheeks and blending.,,cream,blush,[],2016-10-01T18:34:26.479Z,2017-12-23T21:08:41.639Z,http://makeup-api.herokuapp.com/api/v1/products/421.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/421/original/data?1514063321,"[{'hex_value': '#FFA8AC', 'colour_name': 'Baby Pink (300) '}, {'hex_value': '#E7807F', 'colour_name': 'Coral Pink (301) '}, {'hex_value': '#E1506F', 'colour_name': 'Poppy (302) '}, {'hex_value': '#C32F3D', 'colour_name': 'Anna Red (400) '}, {'hex_value': '#E95E49', 'colour_name': 'Super Orange (600) '}, {'hex_value': '#DC6C68', 'colour_name': 'Beige Pink (700) '}]"
+420,nyx,NYX Rouge Cream Blush,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7e559a82a8c8b56d75ae5f108d8449ba_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-rouge-cream-blush_105937.html,https://well.ca,"NYX Rough Cream Blush is a long-lasting, sheer blusher color in a velvety smooth cream.Features:Provides radiant, long-lasting color and a fresh, dewy glowFormula is infused with minerals that hydrate and condition the skinLong-lasting color in the form of a velvety smooth cream",2.0,cream,blush,[],2016-10-01T18:34:24.983Z,2017-12-23T21:08:41.488Z,http://makeup-api.herokuapp.com/api/v1/products/420.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/420/original/open-uri20171223-4-1w3nykx?1514063321,"[{'hex_value': '#E4878D', 'colour_name': 'Boho Chic (CB11) Light Blue-Toned Pink '}, {'hex_value': '#D4696F', 'colour_name': 'Glow (CB05) Plummy Pink '}, {'hex_value': '#F18F8E', 'colour_name': 'Natural (CB02) Soft Light Pink '}, {'hex_value': '#EC6A4E', 'colour_name': 'Orange (CB09) Soft Orange '}, {'hex_value': '#CA7769', 'colour_name': 'Tea Rose (CB03) Medium Beige-Pink '}]"
+419,l'oreal,L'Oreal Paris Visible Lift Blur Blush ,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4099ce5656b195d2ec1b845d2b678e25_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-visible-lift-blur_96606.html,https://well.ca,"Create an instantly just kissed glow with L'Oreal Paris Visible Lift Blur™ Blush. The
+cushiony soft texture glides over skin to blur away dullness for
+instantly radiant looking skin.Ingredients: CYCLOPENTASILOXANE / DIMETHICONE
+CROSSPOLYMER / ALUMINA / DISODIUM
+STEAROYL GLUTAMATE / ALUMINUM
+HYDROXIDE [+/- MAY CONTAIN: MICA / CI 77891 - TITANIUM
+DIOXIDE / CI 45410 - RED 28 LAKE / CI
+73360 - RED 30 / CI 19140 - YELLOW 5
+LAKE / CI 77491, CI 77492, CI 77499 -
+IRON OXIDES]
+
+",,cream,blush,[],2016-10-01T18:34:24.363Z,2017-12-23T21:08:41.364Z,http://makeup-api.herokuapp.com/api/v1/products/419.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/419/original/data?1514063321,"[{'hex_value': '#F26F81', 'colour_name': 'Soft Berry '}, {'hex_value': '#F2869D', 'colour_name': 'Soft Pink '}]"
+418,marcelle,Marcelle Cream Blush,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8d1dc771f1dbdf2fe5e3cb378c44f1fb_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/marcelle-cream-blush_94562.html,https://well.ca,"
+ Marcelle’s Cream Blushes beautifully blend for
+a flawless application. The richly pigmented shades provide a veil of
+colour for a healthy glow.Compact includes a handy sponge applicator. ",5.0,cream,blush,['Canadian'],2016-10-01T18:34:23.030Z,2017-12-23T21:08:41.237Z,http://makeup-api.herokuapp.com/api/v1/products/418.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/418/original/data?1514063321,"[{'hex_value': '#BC6E7E', 'colour_name': 'Heatherwood '}, {'hex_value': '#D88798', 'colour_name': 'Raspberry '}, {'hex_value': '#F3A0A8', 'colour_name': 'Coral '}, {'hex_value': '#D46472', 'colour_name': 'Pink Mademoiselle '}]"
+417,revlon,Revlon PhotoReady Cream Blush,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1b84cb453bc5527d4ecb11b5967cd135_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-photoready-cream-blush_84552.html,https://well.ca,"Revlon PhotoReady™ Cream Blush was
+created by Global Artistic Director Gucci Westman for the Spring 2012
+collection. Inspired by the glowing skin of a beach beauty, these silky
+cream blushes glide on smoothly provide a dewy flush of color for a
+healthy, gorgeous glow.Features: Creamy blush provides buildable, beautiful flush of colorLightweight formula with silky soft feel on skinBlends evenly over cheeks for smooth applicationPhotochromatic pigments bend and reflect light to provide cheeks with a beautiful glow",5.0,cream,blush,[],2016-10-01T18:34:20.813Z,2017-12-23T21:08:40.772Z,http://makeup-api.herokuapp.com/api/v1/products/417.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/417/original/data?1514063320,[]
+416,,DaLish Lip Cheek Balm,15.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3a23201f66be485784f542c43a4b3569_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dalish-lip-cheek-balm_98198.html?cat=1978,https://well.ca,"A little goes a long way with this richly pigmented multi-use balm that can be used on cheeks and lips for a fresh, happy glow. Start with one dab of DaLish Lip Cheek Balm on the apples of cheeks and use your fingers to massage in colour where you want it. Pearl-like pigments means the pretty tint won’t fall flat on lips. Directions: Apply directly on to lips for balm use and dab directly onto cheeks for blush use. Blend woth your fingers till you reach your desired look. Shade Range: BO1 - Dusty Rose – shade with a hint of bronzer. Perfect for fair to medium tones.
+
+
+
+
+ BO2 - Coral – that has a real punch to it. Perfect for all skin tones.
+
+
+
+
+ BO3 - Bubble Gum Pink – Has a great pop of colour and perfect for all skin tones.
+
+
+
+
+ BO4 - Bronzer – Perfect for all colour tones and ideal for contouring.
+
+
+
+
+ BO5 - Deep Plum – Perfect for all skin tones. - See more at: //www.dalishcosmetics.com/product/lipcheek-balms-75-natural#sthash.9DGfyyKW.dpufBO1 - Dusty Rose – shade with a hint of bronzer. Perfect for fair to medium tones.BO2 - Coral – that has a real punch to it. Perfect for all skin tones.BO3 - Bubble Gum Pink – Has a great pop of colour and perfect for all skin tones.BO4 - Bronzer – Perfect for all colour tones and ideal for contouring.BO5 - Deep Plum – Perfect for all skin tones.Ingredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglycerides, Copernicia Cerifera (Carnauba) Wax, Cetyl Alcohol, Hydrogenated Castor oil, Cetyl Palmitate, Beeswax, Sorbitan Palmitate, Sorbitan Olivate, Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus officinalis (Rosemary) Leaf Extract, Benzyl Alcohol, Benzoic Acid, Dehydroacetic Acid, Sorbic Acid, Tocopherol, Vanillin, May contain (+/-), Titanium Dioxide CI 77891, Iron Oxides CI 77491, Mica CI 77019, Red 7 Lake CI 15850, Yellow 5 Lake CI 19140, Red 27 Lake CI 45410, Red 30 Lake CI 73360, Blue 1 Lake CI 42090, Carmine CI 75470. *Contains natural Antioxidant Contains organic castor oil and Carnauba Wax ",2.3,cream,blush,"['Canadian', 'Natural']",2016-10-01T18:34:19.742Z,2017-12-23T21:08:40.672Z,http://makeup-api.herokuapp.com/api/v1/products/416.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/416/original/data?1514063320,"[{'hex_value': '#cc7c7d', 'colour_name': 'BO1 - Dusty Rose '}, {'hex_value': '#bf3938', 'colour_name': 'BO2 - Coral '}, {'hex_value': '#e2707a', 'colour_name': 'BO3 - Bubble Gum Pink '}, {'hex_value': '#a76b4f', 'colour_name': 'BO4 - Bronzer '}, {'hex_value': '#7c3545', 'colour_name': 'BO5 - Deep Plum '}]"
+415,physicians formula,Physicians Formula Super BB All-in-1 Beauty Balm Cheek & Lip in Berry Pink,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/468d19513d1f01f1e59806ccdd4222fe_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-super-bb-all-in-1_102736.html,https://well.ca,"Physicians Formula Super BB All-in-1 Beauty Balm Cheek & Lip in Berry Pink is a great mulch-purpose product to pop into your purse. Features: HypoallergenicParaben, Gluten & Fragrance freeNon-comedogenicDermatologist approvedDirections: Apply desired amount to cheeks & lips and blend with fingertip or brush. Reapply as needed.Ingredients: Caprylic/Capric Triglyceride, Polyethylene, Silica, Dimethicone, Hydrogenated Polyisobutene, Phenylpropyldimethylsiloxysilicate, Octyldodecanol, Euphorbia Cerifera (Candelilla) Wax, Hydrogenated Coco-Glycerides, Propylene Glycol Ricinoleate, Copernicia Cerifera (Carnauba) Wax, Mica, Calcium Aluminum Borosilicate, Flavor, Perilla Ocymoides Seed Oil, Salix Alba (Willow) Bark Extract, BHT, Glycerin, Lysolecithin, Polysilicone-11, Tin Oxide, Tocopheryl Acetate, Triethoxycaprylylsilane, Water, Phenoxyethanol. May Contain: Titanium Dioxide, Orange 5 Lake, Red 6 Lake, Red 7 Lake, Red 28 Lake, Red 30 Lake.",4.0,cream,blush,['Gluten Free'],2016-10-01T18:34:18.458Z,2017-12-23T21:08:40.580Z,http://makeup-api.herokuapp.com/api/v1/products/415.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/415/original/data?1514063320,[]
+414,maybelline,Maybelline Dream Bouncy Blush,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/51eacb9efebbaee39399e65ffe3d9416_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-dream-bouncy-blush_50689.html,https://well.ca,"Now, blush has bounce! Freshest flush ever:• New bouncy texture is formulated with silicone elastomers• Lightweight like a powder, yet melts seamlessly into skin like a cream giving you a fresh flush• Dermatologist tested• Allergy tested• Non-comedogenic
+
+
+
+
+ For best results: With your fingertips, blend a small amount of
+ blush onto the apples of your cheeks, applying from your cheekbones to
+your temples. To build colour intensity, apply more blush.
+ ",4.5,cream,blush,[],2016-10-01T18:34:17.251Z,2017-12-23T21:08:40.418Z,http://makeup-api.herokuapp.com/api/v1/products/414.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/414/original/open-uri20171223-4-cjvuw0?1514063320,"[{'hex_value': '#ecc3d5', 'colour_name': 'Fresh Pink '}, {'hex_value': '#ee9cb1', 'colour_name': 'Hot Tamale '}, {'hex_value': '#ecbaba', 'colour_name': 'Peach Satin '}, {'hex_value': '#c25159', 'colour_name': 'Plum Wine '}]"
+413,anna sui,Anna Sui Lip Colour Stain,26.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1c87435efe0a260a66b3df7cd58aaed0_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-sui-lip-colour-stain_115171.html,https://well.ca,This Anna Sui Lip Colour Stain includes a tinting ingredient that achieves long-lasting colour and helps diminish vertical lines on the lips. Directions: Apply directly to your lips for a natural stain.,,lip_stain,lipstick,[],2016-10-01T18:34:15.808Z,2017-12-23T21:08:40.279Z,http://makeup-api.herokuapp.com/api/v1/products/413.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/413/original/data?1514063320,"[{'hex_value': '#A85988', 'colour_name': '(300) '}, {'hex_value': '#DA5067', 'colour_name': '(301) '}, {'hex_value': '#D94C52', 'colour_name': '(302) '}, {'hex_value': '#DA3055', 'colour_name': '(400) '}, {'hex_value': '#6B203E', 'colour_name': '(401) '}, {'hex_value': '#E8544A', 'colour_name': '(600) '}]"
+412,revlon,Revlon Colorstay Moisture Stain,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/df00e1e6268dc7d208b993d5692c9772_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-colorstay-moisture-stain_100976.html,https://well.ca,"Revlon Colorstay Moisture Stain offers a new level of glossy wet color!It gives you saturated lips with brilliant shine and vivid colorFeatures:Drenches lips in glossy wet colorUltra-light creamy lipstain with Vitamin E and Aloe
+88% of women felt lips were instantly moisturized without stickiness
+
+ ",4.0,lip_stain,lipstick,[],2016-10-01T18:34:15.291Z,2017-12-23T21:08:40.166Z,http://makeup-api.herokuapp.com/api/v1/products/412.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/412/original/data?1514063320,[]
+411,revlon,Revlon ColorBurst Balm Stain,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cf54199ffb803951bf6342b59e3c58a5_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-colorburst-balm-stain_53709.html,https://well.ca,"Revlon ColorBurst Balm Stain is a pampering balm fused with a
+lightweight lipstain in an adorable chubby crayon. Revlon ColorBurst Balm Stain gives softer, smoother lips with a perfect flush of color
+that lasts hour after hour.
+The gel formula comes in 12 vibrant shades that match any look or mood and the crayon is retractable so no sharpener is needed!
+
+ Expert Tips: Step 1 - Apply Revlon ColorBurst Balm Stain evenly to clean, bare lips. Build color and coverage as desired. Step 2 - Reapply as desired for moisturizing shine throughout the day.Revlon Just Bitten Kissable Balm Stain is one of our 10 Makeup Must Haves. See the full list on The Well. ",4.0,lip_stain,lipstick,[],2016-10-01T18:34:12.450Z,2017-12-23T21:08:40.059Z,http://makeup-api.herokuapp.com/api/v1/products/411.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/411/original/data?1514063320,"[{'hex_value': '#e898bc', 'colour_name': 'Cherish '}, {'hex_value': '#d74844', 'colour_name': 'Romantic '}, {'hex_value': '#cd8083', 'colour_name': 'Honey '}, {'hex_value': '#c16576', 'colour_name': 'Rendezvous '}, {'hex_value': '#b45858', 'colour_name': 'Adore '}, {'hex_value': '#a65875', 'colour_name': 'Crush '}, {'hex_value': '#a64877', 'colour_name': 'Smitten '}]"
+410,wet n wild,Wet n Wild Mega Slicks Lip Balm Stain,3.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/be634f08e36f3a6f18feed1c68065596_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/wet-n-wild-mega-slicks-lip-balm_86420.html,https://well.ca,"Now you can amp up your lips with one stick for a kissable pout in no
+time.To keep you pucker-perfect, these all lip balm stains glide on
+ smoothly while conditioning the lips. Enriched with Acai Palm Oil, this
+ amazing formula forms a protective shield on the lips to prevent
+feathering. Complete with six great shades and continuous moisture, the
+formula leaves the lips with a unique minty, cooling sensation. No
+matter how long the kiss, this balm will last and last. ",4.2,lip_stain,lipstick,[],2016-10-01T18:34:11.682Z,2017-12-23T21:08:39.765Z,http://makeup-api.herokuapp.com/api/v1/products/410.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/410/original/data?1514063319,"[{'hex_value': '#8E304A', 'colour_name': '124 Lady and the Vamp '}, {'hex_value': '#DF1536', 'colour_name': '125 Red-dy or Not '}, {'hex_value': '#FD86BC', 'colour_name': '127 A Stiff Pink '}, {'hex_value': '#CE5858', 'colour_name': '128 Pinky Promise '}, {'hex_value': '#DE9777', 'colour_name': '129 Nudist Colony '}]"
+409,nyx,NYX Ombre Lip Duo,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/58650edc46ff5ed6705f5dfdb0776b5d_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/nyx-ombre-lip-duo_118288.html?cat=477,https://well.ca,Dress your lips in two-toned style with the NYX Ombre Lip Duo. The 2-in-1 lip colours are inspired by the Ombre trend and each lip duo features two coordinating shades of lip liner and satiny matte lipstick to create the perfect Ombre colour.Featured Colours:True red lipstick with black lip liner,,,lip_liner,[],2016-10-01T18:34:05.587Z,2017-12-23T21:08:39.954Z,http://makeup-api.herokuapp.com/api/v1/products/409.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/409/original/data?1514063319,[]
+408,marcelle,Marcelle Forever Sharp Waterproof Lip Liner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5ede5c35db258a2416472fe8f93c2d75_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-forever-sharp-waterproof_120903.html,https://well.ca,"Say goodbye to sharpeners forever with the Marcelle Forever Sharp Waterproof Lip Liner.The
+ Forever Sharp Waterproof Lip Liner has a velvety-smooth tip that softly
+ lines and corrects slight imperfections to create a perfect pout. The
+rich, matte colour blends easily to provide a natural finish.Hypoallergenic and perfume-free.",,,lip_liner,['Canadian'],2016-10-01T18:33:55.084Z,2017-12-23T21:08:39.676Z,http://makeup-api.herokuapp.com/api/v1/products/408.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/408/original/data?1514063319,"[{'hex_value': '#C73932', 'colour_name': 'Rouge '}, {'hex_value': '#F07E84', 'colour_name': 'Coral Pink '}, {'hex_value': '#CC5A7C', 'colour_name': 'French Rose '}, {'hex_value': '#DF6973', 'colour_name': 'Fuchsia '}, {'hex_value': '#D4817C', 'colour_name': 'Nude Pink '}, {'hex_value': '#CC5B6B', 'colour_name': 'Pink Mademoiselle '}]"
+407,nyx,NYX Ombre Lip Duo ,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a4e135cd10297f09958503e830d58124_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/nyx-ombre-lip-duo_118291.html?cat=477,https://well.ca,Dress your lips in two-toned style with the NYX Ombre Lip Duo. The 2-in-1 lip colours are inspired by the Ombre trend and each lip duo features two coordinating shades of lip liner and satiny matte lipstick to create the perfect Ombre colour.Featured Colours:Pink Nude lipstick with Bright Pink lip liner,,,lip_liner,[],2016-10-01T18:33:49.776Z,2017-12-23T21:08:39.860Z,http://makeup-api.herokuapp.com/api/v1/products/407.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/407/original/data?1514063319,[]
+406,covergirl,CoverGirl Lip Perfection Lipliner ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9b00f1bed71b9d46399663a8ef364a9a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-lip-perfection-lipliner_74475.html,https://well.ca,"High conditioning lip liner. Created to work perfectly with Lip
+Perfection Lipstick, CoverGirl's lip liner formula contains over 60% skin
+conditioners, so you can line and define with conditioning colour.Features: Shades pair perfectly with Lip Perfection LipstickContains Vitamin EPencil requires sharpener",,,lip_liner,[],2016-10-01T18:33:48.833Z,2017-12-23T21:08:39.578Z,http://makeup-api.herokuapp.com/api/v1/products/406.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/406/original/data?1514063319,[]
+405,marcelle,Marcelle Waterproof Lip Definition Lip Liner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2daab464be400117104710b2d0a93246_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-waterproof-lip-definition_100259.html,https://well.ca,"
+ Marcelle Waterproof Lip Definition Lip Liner offers you waterproof and perfect line definition in a single lip liner.
+Its velvety smooth tip softly lines and corrects slight imperfections
+ to create a perfect pout. Easy to blend for a more natural look. Its
+long-lasting formula was designed to resist water, humidity and heat.
+The rich, matte colour provides a most natural finish.
+
+Hypo-allergenic and perfume free.Shade Range: ",,,lip_liner,"['Canadian', 'Gluten Free']",2016-10-01T18:33:47.733Z,2017-12-23T21:08:39.474Z,http://makeup-api.herokuapp.com/api/v1/products/405.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/405/original/data?1514063319,"[{'hex_value': '#b8676e', 'colour_name': 'Jewel '}, {'hex_value': '#a6636a', 'colour_name': 'Nude '}, {'hex_value': '#c96e73', 'colour_name': 'Pebble '}, {'hex_value': '#c16574', 'colour_name': 'Perfect Rose '}, {'hex_value': '#d4575f', 'colour_name': 'Sienna '}, {'hex_value': '#a25b59', 'colour_name': 'Spice '}]"
+404,cargo cosmetics,Cargo Cosmetics Reverse Lip Liner,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/41643c6b163f42085540373b8858196b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-reverse-lip-liner_87685.html,https://well.ca,"A Cargo Innovation and the only liner for lip gloss!Use this nifty tool to line your lips from the outside in. This natural
+coloured pencil adds definition and fullness to the lip line as it locks
+ colour in place. It is applied around the outer edges of the lip line
+and blended up and out to create a highlight around the mouth for the
+look of fuller lips.
+
+
+Features:
+Using the Reverse Lip Liner around the mouth will clean up the lip
+line, remove redness from around the mouth and prevent the messy
+feathering of lip colorThe smooth, wax based formula will also create a barrier around the
+mouth to prevent lipstick from bleeding and hold lip color on longer –
+locks color in placeShade Range: How to Use: Using soft feathery application strokes, apply the Reverse Lip Liner to the otter edges of the lip lineBlend upwards and outwards to soften the look of the line and give a highlight and lift to the mouthIngredients: C10-18 Triglycerides, Talc, Hydrogenated Vegetable Oil, Caprylic/Capric
+Triglyceride, Rhus Succedanea Fruit Wax, Tocopherol, Ascorbyl Palmitat",5.0,,lip_liner,[],2016-10-01T18:33:47.223Z,2017-12-23T21:08:39.361Z,http://makeup-api.herokuapp.com/api/v1/products/404.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/404/original/data?1514063319,[]
+403,marcelle,Marcelle 2 in 1 Retractable Plumping Lip Liner ,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/12b80abdb096e4bd949309febf299e66_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-2-in-1-retractable-plumping_100256.html,https://well.ca,"
+ With Marcelle 2 in 1 Retractable Plumping Lip Liner, the lips have it!
+It's the only lip liner you'll ever need! Its creamy formula and
+gel-like texture soften the contours of your lips and, thanks to the
+Maxi-Lip complex, replenish volume to create lovely, luscious lips! With
+ ingredients like jojoba oil and vitamin E it also helps reduce the
+effects of fine lines.
+When you're in a hurry, you'll simply love its retractable mechanism,
+ lip brush and built-in sharpener, ever so practical!
+Hypo-allergenic and tested under dermatological control. Contains no talc, gluten or parabens.Shade Range: ",3.0,,lip_liner,"['Canadian', 'Gluten Free']",2016-10-01T18:33:46.081Z,2017-12-23T21:08:39.247Z,http://makeup-api.herokuapp.com/api/v1/products/403.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/403/original/data?1514063319,"[{'hex_value': '#a25d60', 'colour_name': 'Cinnamon '}, {'hex_value': '#863e4c', 'colour_name': 'Cool Berry '}, {'hex_value': '#cc7e68', 'colour_name': 'Natural '}, {'hex_value': '#845946', 'colour_name': 'Nude Attitude '}, {'hex_value': '#a2615b', 'colour_name': 'Perfect Nude '}, {'hex_value': '#cb7671', 'colour_name': 'Rose Velours '}]"
+402,nyx,NYX Lip Primer,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6762de575de61e3987070e2cde8009b7_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-lip-primer_105941.html,https://well.ca,"Use NYX Lip Primer to create the perfect canvas for lip colour with this texture and color enhancing primer. Ensures that lip product lasts and does not go outside the lines. Features:Creates a smooth, uniform canvasPreps and primes lips for smooth and long wearKeeps lip color from fading or featheringBoth color correcting and texture adjusting formula makes lip color look its bestHow to Use: Apply all over lips prior to lip pencil, lipstick and gloss.",5.0,,lip_liner,[],2016-10-01T18:33:44.789Z,2017-12-23T21:08:38.630Z,http://makeup-api.herokuapp.com/api/v1/products/402.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/402/original/open-uri20171223-4-1410iph?1514063318,"[{'hex_value': '#C08D72', 'colour_name': 'Deep Nude (LPR02) Sheer Deep Nude '}, {'hex_value': '#EBBAA2', 'colour_name': 'Nude (LPR01) Sheer Nude '}]"
+401,,Bonne Bell Lip Liner,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4d5dae99dd3884292e941f95392201b9_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/bonne-bell-lip-liner_101856.html,https://well.ca,Create the perfect lip look Bonne Bell Lip Liners and add definition to your lips.The twist up tip glides on smooth and no sharpener is required. They're so easy to use!,4.5,,lip_liner,[],2016-10-01T18:33:42.894Z,2017-12-23T21:08:37.933Z,http://makeup-api.herokuapp.com/api/v1/products/401.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/401/original/data?1514063317,"[{'hex_value': '#95374f', 'colour_name': 'Bliss Berry '}, {'hex_value': '#c04941', 'colour_name': 'Cruise Coffee '}, {'hex_value': '#7a1533', 'colour_name': 'Getaway Berry '}, {'hex_value': '#f79e83', 'colour_name': 'Hollywood Beige '}]"
+400,l'oreal,L'Oreal Paris Colour Riche Lip Liner,11.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0d3cb34004a3290519b914ceaa0d67c8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche-lip-liner_50854.html,https://well.ca,"Colour Riche Creamy Anti-Feathering Lip Liners create definition and coordinate perfectly with Colour Riche Lipcolour. Colour Riche Lip Liner is formulated with ultra-hydrating Omega 3 and protective Vitamin E to keep lips moisturized, soft and supple. ",,,lip_liner,[],2016-10-01T18:33:41.322Z,2017-12-23T21:08:37.317Z,http://makeup-api.herokuapp.com/api/v1/products/400.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/400/original/data?1514063317,"[{'hex_value': '#B7656D', 'colour_name': 'All About Pink '}, {'hex_value': '#6D071D', 'colour_name': 'Always Red '}, {'hex_value': '#A05F51', 'colour_name': 'Au Naturale '}, {'hex_value': '#AE7374', 'colour_name': 'Beyond Pink '}, {'hex_value': '#891635', 'colour_name': 'Lasting Plum '}, {'hex_value': '#7B4C43', 'colour_name': 'Nudes For Life '}, {'hex_value': '#AE7269', 'colour_name': 'Timeless Coral '}, {'hex_value': '#7C183E', 'colour_name': 'Truly Burgundy '}]"
+399,annabelle,Annabelle Stay Sharp Waterproof Lipliner,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bc487b5ce253ed22f045302a4f0b051c_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-stay-sharp-waterproof_97733.html,https://well.ca,"
+ Stop looking, you have just found the sharpest tool in the shed!
+Annabelle introduces the very first to mass market
+self-sharpening lipliners with the Stay Sharp Waterproof Lipliner.
+Annabelle’s truly innovative concept will keep beautistas on point and
+sharpeners away.The Stay Sharp secret is in the cap! The Annabelle Stay Sharp twist-on
+cap includes a sharpener. Every time the cap is twisted back on the
+pencil, the blades sharpen the tip to perfection and neatly keep the
+shavings. No fuss, no mess!Shade Range: Key Features: Shelf-sharpening pencilNo mess: lead shavings are kept inside the capFine tip for extra-precise applicationExtremely soft lead for a smooth, gliding applicationWaterproof formulaIntense pigmentation for best colour pay off and coverage
+
+ ",,,lip_liner,[],2016-10-01T18:33:40.139Z,2017-12-23T21:08:37.194Z,http://makeup-api.herokuapp.com/api/v1/products/399.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/399/original/data?1514063317,"[{'hex_value': '#804e37', 'colour_name': 'Nude '}, {'hex_value': '#854e39', 'colour_name': 'Java '}, {'hex_value': '#9c1114', 'colour_name': 'Glam Red '}, {'hex_value': '#862546', 'colour_name': 'Berry '}, {'hex_value': '#bb0c4d', 'colour_name': 'Strike A Rose '}, {'hex_value': '#953447', 'colour_name': 'Vintage '}]"
+398,maybelline,Maybelline Color Sensational Lipliner,8.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6607c1b7eb717dfbd3c228b61e4c5148_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational_14541.html,https://well.ca,"Keep your Maybelline lip color beautiful with matching lip liners that won't smudge, smear or bleed for smooth, defined lips. For best results: Line your lips starting in the center of your upper lip. Work from the
+center to outer edges of your lips using small strokes, following the
+contour of your mouth. Follow the same technique for your bottom lip. To
+ extend the wear of your favorite lip color or lip gloss, first fill in
+your lips completely with lip liner. ",3.5,,lip_liner,[],2016-10-01T18:33:39.513Z,2017-12-23T21:08:35.034Z,http://makeup-api.herokuapp.com/api/v1/products/398.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/398/original/open-uri20171223-4-11xbwij?1514063314,"[{'hex_value': '#A15638', 'colour_name': 'Nude '}, {'hex_value': '#7B4344', 'colour_name': 'Plum '}, {'hex_value': '#854337', 'colour_name': 'Raisin '}, {'hex_value': '#B3705A', 'colour_name': 'Toast '}]"
+397,l'oreal,L'Oreal Paris Infallible Never Fail Lip Liner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0b1191651b7aef22b11e96f8c7c548d4_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/loreal-paris-infallible-never-fail_51407.html,https://well.ca,"L'Oreal Paris Infallible Never Fail Lip Liner is the perfect long-lasting lip liner.No touch-ups. No feathering. No fading! Just a rich and creamy formula that goes on smooth and even, leaving your lips soft and comfortable for hours. ",4.2,,lip_liner,[],2016-10-01T18:33:38.828Z,2017-12-23T21:08:34.886Z,http://makeup-api.herokuapp.com/api/v1/products/397.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/397/original/open-uri20171223-4-4rl281?1514063314,"[{'hex_value': '#6d3735', 'colour_name': 'Brown '}, {'hex_value': '#803339', 'colour_name': 'Plum '}, {'hex_value': '#862c3b', 'colour_name': 'Red Wine '}, {'hex_value': '#884f3f', 'colour_name': 'Nude '}, {'hex_value': '#945a62', 'colour_name': 'Rose '}, {'hex_value': '#ae4a52', 'colour_name': 'Mauve '}, {'hex_value': '#ce6e7e', 'colour_name': 'Pink '}]"
+396,nyx,NYX Slim Lip Pencil ,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/aa363598f8a9d629d3ade5c140e373d0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-slim-lip-pencil_106558.html,https://well.ca,"Slim trim but never prim NYX Slim Lip Pencils come in a variety of dashing shades to suit your look.Features:Buttery long-wearing lip liner formulaGoes on easily and resists bleeding High pigmentation for bold wear and great colour payoffIngredients: Sorbitan Isostearate, Isocetyl Stearate,Phenyl Trimethicone, Polyethylene, Euphorbia Cerifera (Candelilla) Wax,Butyrospermum Parkii (Shea Butter) Unsaponifiables, Beeswax, SimmondsiaChinensis (Jojoba) seed oil, Caprylic/Capri Triglyceride, Nylon-12,Octyldodecanol, Polyglyceryl-2 Diisostearate, Silica, CoperniciaCerifera (Carnauba) Wax, Hydrogenated, Coconut Oil, Tocopherol,VP/Hexadecene Copolymer, Stearalkonium Hectorite, StearylGlycyrrhetinate, Propylparaben, Prolylene Carbonate. ",5.0,,lip_liner,[],2016-10-01T18:33:37.171Z,2017-12-23T21:08:32.899Z,http://makeup-api.herokuapp.com/api/v1/products/396.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/396/original/open-uri20171223-4-pmcfhy?1514063312,"[{'hex_value': '#931659', 'colour_name': 'Bloom '}, {'hex_value': '#762528', 'colour_name': 'Cabaret '}, {'hex_value': '#6E3246', 'colour_name': 'Currant '}, {'hex_value': '#E46EBE', 'colour_name': 'Dolly Pink '}, {'hex_value': '#B32464', 'colour_name': 'Fuchsia '}, {'hex_value': '#955C51', 'colour_name': 'Natural '}, {'hex_value': '#8D644B', 'colour_name': 'Nude Beige '}, {'hex_value': '#BA6E68', 'colour_name': 'Nude Pink '}, {'hex_value': '#BB878D', 'colour_name': 'Pale Pink '}, {'hex_value': '#A85A49', 'colour_name': 'Peekaboo Netural '}, {'hex_value': '#B12652', 'colour_name': 'Pinky '}, {'hex_value': '#6B2635', 'colour_name': 'Plum '}, {'hex_value': '#742C49', 'colour_name': 'Prune '}, {'hex_value': '#D35A63', 'colour_name': 'Rose '}]"
+395,e.l.f.,e.l.f. Studio Lip Primer & Plumper,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2220d3e4e86c537c59ea5f3cea99e2cc_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-lip-primer-plumper_93439.html,https://well.ca,"Achieve longer lasting lip color and sexy plumped lips with e.l.f. Studio Lip Primer & Plumper. The Primer
+creates a base for lip color for no budge, no smudge pigment that lasts
+all day. The cinnamon scented Plumper enhances your lips with a subtle
+plumping tingle effect for fuller, larger looking lips.How to Use:
+
+ Apply the ""prime"" to bare lips and
+ blend in to help hold color to the lips all day. Use the ""plump"" alone
+ or on top of primer or color to achieve a naturally fuller lip. Ingredients: Ethylhexyl Palmitate, Talc, Ozokerite, Polyisobutene, Synthetic
+Fluorphlogopite, Bis-Diglyceryl polyacyladipate-2, Euphorbia Cerifera
+(Candelilla) Wax, Ceresin, Copernicia Cerifera (Carnauba) Wax,
+Microcrystalline Wax (Cera Microcristallina), Tricontanyl PVP
+
+May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI
+77492, CI 77499)
+
+
+",3.7,,lip_liner,['Vegan'],2016-10-01T18:33:36.185Z,2017-12-23T21:08:38.510Z,http://makeup-api.herokuapp.com/api/v1/products/395.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/395/original/data?1514063318,[]
+394,revlon,Revlon ColorStay Lip Liner,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/afcbc5e035eab277db61144a9a3de035_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-lip-liner_3841.html,https://well.ca,"Perfect any lip look with Colorstay Lipliner, now updated to include full-coverage, sheer, and clear shades. Exclusive Colorstay technology with SoftFlex provides longwearing definition, helps lipcolor last longer and prevents feathering and bleeding. ",5.0,,lip_liner,[],2016-10-01T18:33:35.371Z,2017-12-23T21:08:38.412Z,http://makeup-api.herokuapp.com/api/v1/products/394.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/394/original/data?1514063318,"[{'hex_value': '#FF3399', 'colour_name': 'Fuschia '}, {'hex_value': '#FFB2E6', 'colour_name': 'Soft Pink '}, {'hex_value': '#71161E', 'colour_name': 'Plum '}, {'hex_value': '#883027', 'colour_name': 'Nude '}, {'hex_value': '#931919', 'colour_name': 'Wine '}, {'hex_value': '#C03C2D', 'colour_name': 'Sienna '}, {'hex_value': '#EC444A', 'colour_name': 'Pink '}]"
+393,milani,Milani Color Statement Lipliner,3.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/386b5089c2fac40c4b01e0a17dc7a1f0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/milani-color-statement-lipliner_89094.html,https://well.ca,"Inspired by the Milan Runway, two new shades to line and fill-in lips. Features:True instant colour in one stroke applicationLong wearing, easy-glide formulaNo dragSharpens with Milani’s Duo SharpenerNon-feathering formulaApplication: To outline your lips, make an X on the center of your upper lip (lip cleavage). Following the contour of your mouth, start from the outer edges of your lips and work your way towards center of your upper lip (where the x is marked). This will prevent from making one arch higher, pointier or rounder than the other. Tip: Lipliner helps extend the wear & keeps your lipstick from feathering. When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades. Create a custom lipcolor by using a contrasting lipliner and lipstick shade. Before applying your lipliner, pat your lips lightly with your foundation or pressed powder puff, which also helps keep you lipstick from feathering. Ingredients: Ethylhexyl Palmitate, Synthetic Wax, Zeolite, Stearyl Dimethicone, Bis-Diglyceryl Polyacyladipate-2, Hydrogenated Polydicyclopentadiene-2, Polyethylene, Diisostearyl Malate, Pentaerythrityl Tetra-di-t-Butyl Hydroxyhydrocinnamate, Mica, Titanium Dioxide (CI 77891). +/- May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 28 (CI 45410), Yellow 5 (CI 19140), Carmine (CI 75470), Blue 1 (CI 42090).",4.7,,lip_liner,[],2016-10-01T18:33:34.558Z,2017-12-23T21:08:38.318Z,http://makeup-api.herokuapp.com/api/v1/products/393.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/393/original/data?1514063318,"[{'hex_value': '#F2ACA2', 'colour_name': 'All Natural '}, {'hex_value': '#932C49', 'colour_name': 'Bordeaux '}, {'hex_value': '#BE386D', 'colour_name': 'Fuchsia '}, {'hex_value': '#BD7B85', 'colour_name': 'Nude '}, {'hex_value': '#EC81A9', 'colour_name': 'Pretty Pink '}, {'hex_value': '#C56D61', 'colour_name': 'Spice '}, {'hex_value': '#A2051A', 'colour_name': 'True Red '}]"
+392,sante,Sante Lip Duo Contour and Gloss Pencil,20.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d203321e1481ff3e90906b92c960c524_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/sante-lip-duo-contour-and-gloss_51588.html,https://well.ca,"Sante Lip Duo Pencils have two products in one. A lipliner for perfect contours
+and lipgloss for a sexy finish. They come in trendy colors and have a moisturizing texture.
+Vegan and gluten-free. Not tested on animals.Colours:",4.4,,lip_liner,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:33:33.446Z,2017-12-23T21:08:38.219Z,http://makeup-api.herokuapp.com/api/v1/products/392.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/392/original/open-uri20171223-4-jjp4xg?1514063318,"[{'hex_value': '#93474f', 'colour_name': 'No.3 Glamorous Look '}]"
+391,marcelle,Marcelle Flawless Compact Foundation,17.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/00148ac1311be275b6653eec741b135a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-flawless-compact-foundation_120920.html,https://well.ca,"The Marcelle Flawless Compact Foundation is inspired by the cutting-edge colour marching technology (adaptive pigments). This Flawless Skin-Fusion Foundation blends with skin for a natural finish without clogging pores. Based on popular demand, the Flawless Skin-Fusion Foundation is now available in a compact format! It instantly conceals dark circles, redness and all other imperfections.",,cream,foundation,['Canadian'],2016-10-01T18:33:32.374Z,2017-12-23T21:08:38.121Z,http://makeup-api.herokuapp.com/api/v1/products/391.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/391/original/data?1514063318,"[{'hex_value': '#E1AC8C', 'colour_name': 'Ivory '}, {'hex_value': '#C99B77', 'colour_name': 'Buff Beige '}, {'hex_value': '#D5AC8C', 'colour_name': 'Classic Ivory '}, {'hex_value': '#BA8A62', 'colour_name': 'Medium Beige '}, {'hex_value': '#C49068', 'colour_name': 'Natural Beige '}, {'hex_value': '#C6956D', 'colour_name': 'Nude Beige '}]"
+390,revlon,Revlon PhotoReady Insta-Fix Makeup,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c4d5400687c823f37bf21301859c616d_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-photoready-insta-fix-makeup_101108.html,https://well.ca,"Look flawless anytime, anywhere with Revlon
+ PhotoReady Insta-Fix™ Makeup. This instant skin retoucher can be used
+ all over the face to conceal flaws and is perfect for touch ups on the
+go. Revlon PhotoReady Insta-Fix™ Makeup provides Light to Medium coverage.",,cream,foundation,[],2016-10-01T18:33:28.252Z,2017-12-23T21:08:36.469Z,http://makeup-api.herokuapp.com/api/v1/products/390.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/390/original/open-uri20171223-4-1xru960?1514063316,"[{'hex_value': '#f9e3d5', 'colour_name': 'Ivory '}, {'hex_value': '#faefdc', 'colour_name': 'Vanilla '}, {'hex_value': '#f8e5d1', 'colour_name': 'Shell '}, {'hex_value': '#f0d7c4', 'colour_name': 'Nude '}, {'hex_value': '#eacfbb', 'colour_name': 'Golden Beige '}, {'hex_value': '#f2cdaf', 'colour_name': 'Natural Beige '}, {'hex_value': '#f3c8aa', 'colour_name': 'Medium Beige '}, {'hex_value': '#e2a98e', 'colour_name': 'Rich Ginger '}, {'hex_value': '#ca9774', 'colour_name': 'Caramel '}]"
+389,marcelle,Marcelle BB Cream-to-Powder Makeup,22.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4ca356be704dce025868182946e52080_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-bb-cream-to-powder-makeup_100226.html?cat=581,https://well.ca,"A perfect addition to Marcelle's best skin enhancing line, Marcelle BB Cream-to-Powder Makeup has a creamy texture at first touch, but transforms to a
+ silky, powdery finish upon contact with the skin. Its practical compact
+ with mirror and sponge built-in is ideal for all-day touch-ups to
+maintain a perfect and even skin. Can be used alone or over the BB Cream
+ for more coverage.
+
+Hypo-allergenic and perfume-free. Paraben free, oil free, and non-comedogenic. Shade Range: ",5.0,cream,foundation,['Canadian'],2016-10-01T18:33:26.416Z,2017-12-23T21:08:36.333Z,http://makeup-api.herokuapp.com/api/v1/products/389.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/389/original/data?1514063316,"[{'hex_value': '#eabe9b', 'colour_name': 'Light to Medium '}, {'hex_value': '#daa778', 'colour_name': 'Medium to Dark '}]"
+388,physicians formula,Physicians Formula Super BB All-in-1 Beauty Balm Stick,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4d7d79376ed827d7e587d849e16f2136_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-super-bb-all-in-1_102737.html?cat=581,https://well.ca,"Physicians Formula Super BB All-in-1 Beauty Balm Stick is a concealer, and foundation touch up tool. It's ideal for perfecting, concealing, smoothing, brightening, moisturizing, protecting, firming, priming+filling and line softening.Features: HypoallergenicParaben, gluten and fragrance freeNon comedogenicDermatologist approvedDirections: Apply the stick directly onto face starting at the center and blending outward using fingertips. Layer for additional coverage.Ingredients: Phenyl Trimethicone, Dimethicone, Caprylic/Capric Triglyceride, Isocetyl Stearate, Euphorbia Cerifera (Candelilla) Wax, Mica, Microcrystalline Wax, Cetyl Ethylhexanoate, Polymethylsilsesquioxane, Copernicia Cerifera (Carnauba) Wax, Butyrospermum Parkii (Shea) Butter, Ethylhexyl Palmitate, Synthetic Beeswax, Calcium Aluminum Borosilicate, Phenoxyethanol, Salix Alba (Willow) Bark Extract, Perilla Ocymoides Seed Oil, Ascorbyl Palmitate, Tetrahexyldecyl Ascorbate, Tocopheryl Acetate, Arachidyl Alcohol, BHT, Castor Oil Phosphate, Cetyl PEG/PPG-101-10/1 Dimethicone, Glycerin, HDI/Trimethylol Hexyllactone Crosspolymer, Hexyl Laurate, Lysolecithin, Ozokerite, Palmitic Acid, Polyglyceryl-2 Isostearate, Silica, Stearic Acid, Triethoxycaprylylsilane, Water. May Contain: Iron Oxides, Titanium Dioxide.",2.5,cream,foundation,['Gluten Free'],2016-10-01T18:33:25.085Z,2017-12-23T21:08:36.185Z,http://makeup-api.herokuapp.com/api/v1/products/388.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/388/original/data?1514063316,"[{'hex_value': '#fbd0bd', 'colour_name': 'Light '}, {'hex_value': '#f4c1a4', 'colour_name': 'Light / Medium '}]"
+387,physicians formula,Physicians Formula Nude Wear Touch of Glow Stick in Nude Glow,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2f58780bf027e35f8f354a8f9b7acc3e_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-nude-wear-touch_102685.html,https://well.ca,"
+Physicians Formula Nude Wear Touch of Glow Stick is an all-around concealer, foundation, and highlighter touch up tool. The lightweight, glide on formula helps erase the appearance of imperfections and restore the glow of natural, naked skin.Features: Vanishes dark circles, fine lines, shadows and signs of fatigueHypoallergenicGluten, Fragrance, Paraben & Oil freeDermatologist approvedDirections: Apply all over face or to any imperfection and gently blend with fingertip to even out skin tone.Ingredients: Phenyl Trimethicone, Dimethicone, Caprylic/Capric Triglyceride, Isocetyl Stearate, Euphorbia Cerifera (Candelilla) Wax/Cire de Candelilla, Mica, Microcrystalline Wax/Cire Microcristalline, Ceryl Ethylhexanoate, Polymethylsilsesquioxane, Butryospermum Parkii (Shea) Butter, Copernicia Cerifera (Carnauba) Wax/Cire de Carnauba, Synthetic Beeswax, Ethylhexyl Palmitate, Calcium Aluminum Borosilicate, Phenoxyethanol, Lactic Acid, Nylon-12, HDI/Trimethylol Hexyllactone Crosspolymer, Lauroyl Lysine, Synthetic Fluorphlogopite, Boron Nitride, Silica, Arachidyl Alcohol, Cetyl PEG/PPG-10/1 Dimethicone, Hexyl Laurate, Ozokerite, Palmitic Acid, Polyglyceryl-2 Isostearate, Stearic Acid, BHT, Ascorbyl Palmitate, Tetrahexyldecyl Ascorbate, Tocopherol Acetate. May Contain/Peut Contenir: Iron Oxides, Titanium Dioxide.",4.0,cream,foundation,['Gluten Free'],2016-10-01T18:33:21.967Z,2017-12-23T21:08:36.063Z,http://makeup-api.herokuapp.com/api/v1/products/387.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/387/original/data?1514063316,[]
+386,covergirl,CoverGirl & Olay Simply Ageless Foundation ,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fd47eaa9241a010e48fc32cf4611d772_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-olay-simply-ageless_74462.html,https://well.ca,"This breakthrough formula with Olay Regenerist Serum and SPF 22 stays
+suspended over fine lines and wrinkles, unlike the leading anti-aging
+department store foundation that can gather in wrinkles and make skin
+look older. Clinically shown to provide significant improvement in skin
+condition in just four weeks.Features: SPF 22Stays suspended over fine lines and wrinklesEven coverageDermatologically-tested",5.0,cream,foundation,[],2016-10-01T18:33:17.473Z,2017-12-23T21:08:35.386Z,http://makeup-api.herokuapp.com/api/v1/products/386.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/386/original/open-uri20171223-4-t8thf8?1514063315,[]
+385,sante,Sante Soft Cream Foundation,27.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e468ef6f9534484e1f21e0f971d92c48_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/sante-soft-cream-foundation_51624.html,https://well.ca,"Sante soft cream foundation has precious mineral pigments for a
+velvety, especially flawless complexion. Gives your skin a fresh,
+pleasant feel with cupuacu butter, pomegranate extract and valuable
+organic jojoba oil. Free of paraffin and silicone oils. Colours: Ingredients: AQUA (WATER), HYDROGENATED VEGETABLE OIL, GLYCINE SOJA (SOYBEAN) OIL*, GLYCERIN, SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL*, SQUALANE, TALC, POTASSIUM CETYL PHOSPHATE, PALMITIC ACID, STEARIC ACID, PARFUM (ESSENTIAL OILS), HYDROGENATED PALM GLYCERIDES, THEOBROMA GRANDIFLORUM SEED BUTTER*, PUNICA GRANATUM SEED EXTRACT*, SORBITOL, GALACTOARABINAN, XANTHAN DUM, HYDROGENATED LECITHIN, SODIUM CITRATE, ASCORBYL PALMITATE, LECITHIN, CITRIC ACID, TOCOPHEROL, HYDROGENATED PALM GLYCERIDES CITRATE, FARNESOL, [+/- CI 77891 (TITANIUM DIOXIDE), CI 77492 (IRON OXIDES), CI 77491 (IRON OXIDES)] * organically grown",3.8,cream,foundation,['Natural'],2016-10-01T18:33:16.833Z,2017-12-23T21:08:35.690Z,http://makeup-api.herokuapp.com/api/v1/products/385.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/385/original/data?1514063315,[]
+384,covergirl,CoverGirl Ultimate Finish Liquid Powder Makeup ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1aa7e9e399d24c2a747137df51026ed2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-ultimate-finish-liquid_76722.html,https://well.ca,"Get the beauty of a liquid, a powder and concealer in one makeup!
+Ultimate Finish glides on weightlessly to cover and conceal where you
+need it, then dries to the soft finish of a powder. For an ultimate
+natural look—beautiful and wondrous. It's all you need—all in one!Features: Oil and fragrance freeHypoallergenicDermatologically-tested",5.0,cream,foundation,[],2016-10-01T18:33:15.900Z,2017-12-23T21:08:35.807Z,http://makeup-api.herokuapp.com/api/v1/products/384.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/384/original/data?1514063315,[]
+383,revlon,Revlon Colorstay Whipped Creme Makeup,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/037b446c36900da96e12fde1be625a76_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-whipped-creme_54357.html,https://well.ca,"Finally, truly decadent makeup offers
+ultimate performance. The mousse-like texture of Revlon Colorstay Whipped Creme Makeup feels like silk on your
+skin. And, the time release formula balances skin for a flawless look.
+All day flexible wear without flaking, caking or feeling heavy.Features: Buildable to full coverage for flawless skin
+Soft, matte finish all day long
+Withstands heat and humidity – great for summer",4.4,cream,foundation,[],2016-10-01T18:33:14.237Z,2017-12-23T21:08:34.642Z,http://makeup-api.herokuapp.com/api/v1/products/383.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/383/original/data?1514063314,"[{'hex_value': '#f5dbc8', 'colour_name': 'Nude '}, {'hex_value': '#f2dfc9', 'colour_name': 'Buff '}, {'hex_value': '#ebcaaf', 'colour_name': 'Warm Golden '}, {'hex_value': '#eaccb3', 'colour_name': 'True Beige '}, {'hex_value': '#e9cdb2', 'colour_name': 'Medium Beige '}]"
+382,maybelline,Maybelline Dream Smooth Mousse Foundation,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fb79e7facf701176d4113527c284613f_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-dream-smooth-mousse_28944.html,https://well.ca,"Why You'll Love ItUnique cream-whipped foundation provides 100% baby-smooth perfection.
+
+Skin looks and feels hydrated for 14 hours - never rough or dry
+Lightweight formula provides perfectly moisturizing coverage
+Blends seamlessly and feels fresh all-day
+Oil-free, Fragrance-free, Dermatologist Tested, Allergy Tested, Non-comedogenic – won’t clog pores.
+Safe for sensitive skin
+
+ ",3.8,cream,foundation,[],2016-10-01T18:33:13.645Z,2017-12-23T21:08:34.195Z,http://makeup-api.herokuapp.com/api/v1/products/382.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/382/original/open-uri20171223-4-8avct4?1514063314,[]
+381,revlon,Revlon New Complexion One-Step Makeup,18.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3b9b3cd1bce690e330f335cd696bb098_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-new-complexion-one-step_3998.html,https://well.ca,"Give your skin a bright, natural looking finish in one easy step! This creamy formula combines the coverage of a liquid with the finish of a powder for a natural, even finish. Formulated with a special mineral complex to naturally brighten your skin it offers perfect, long-lasting coverage with SPF 15 protection.",4.2,cream,foundation,[],2016-10-01T18:33:12.962Z,2017-12-23T21:08:33.889Z,http://makeup-api.herokuapp.com/api/v1/products/381.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/381/original/data?1514063313,"[{'hex_value': '#FBCCA0', 'colour_name': 'Ivory Beige '}, {'hex_value': '#F3C391', 'colour_name': 'Tender Peach '}, {'hex_value': '#E5B383', 'colour_name': 'Natural Beige '}, {'hex_value': '#E2AB70', 'colour_name': 'Honey Beige '}, {'hex_value': '#E0AD7C', 'colour_name': 'Medium Beige '}, {'hex_value': '#D79A78', 'colour_name': 'Warm Beige '}]"
+380,maybelline,Maybelline Fit Me Shine-Free Foundation Stick,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d04e7c2ed65dabe1dca4eed9aa268e95_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-fit-me-shine-free_79864.html,https://well.ca,"Get flawless, shine-free skin instantly and on-the-go for tailor-made
+mattifying coverage. The anti-shine core has ultra-lightweight powders
+built in to the stick foundation to instantly dissolve excess oil. Features: Maybelline's first gel stick foundation with an anti-shine core
+Fresh gel foundation blends to a flawless matte finish
+Lightweight powders in the anti-shine core instantly dissolve excess oil",4.7,cream,foundation,[],2016-10-01T18:33:11.836Z,2017-12-23T21:08:33.623Z,http://makeup-api.herokuapp.com/api/v1/products/380.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/380/original/open-uri20171223-4-13lju4x?1514063313,"[{'hex_value': '#FFE4C6', 'colour_name': 'Porcelain (110) '}, {'hex_value': '#FFE5C1', 'colour_name': 'Ivory (115) '}, {'hex_value': '#FFD9B9', 'colour_name': 'Classic Ivory (120) '}, {'hex_value': '#FACFA8', 'colour_name': 'Natural Beige (220) '}, {'hex_value': '#D39B70', 'colour_name': 'Toffee (330) '}, {'hex_value': '#CA8B67', 'colour_name': 'Coconut (355) '}]"
+379,maybelline,Maybelline Dream Matte Mousse Foundation,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/029889b345c76a70e8bb978b73ed1a87_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-dream-matte-mousse_3747.html,https://well.ca,"Maybelline Dream Matte Mouse Foundation is a revolutionary air-soft mousse that provides perfecting coverage for 100% velvet-matte complexion. It's non-comedogenic, fragrance-free, dermatologist-tested, allergy-tested and ideal for normal to oily skin.For best results: Apply smoothly and evenly to your face and blend with your fingertips.
+
+ ",4.4,cream,foundation,[],2016-10-01T18:33:10.614Z,2017-12-23T21:08:33.441Z,http://makeup-api.herokuapp.com/api/v1/products/379.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/379/original/open-uri20171223-4-1koue12?1514063313,"[{'hex_value': '#f3d7b3', 'colour_name': 'Classic Ivory '}, {'hex_value': '#dfc5a8', 'colour_name': 'Light Beige '}, {'hex_value': '#edd3ac', 'colour_name': 'Nude '}, {'hex_value': '#f5dfc3', 'colour_name': 'Porcelain Ivory '}, {'hex_value': '#d9bcaf', 'colour_name': 'Pure Beige '}, {'hex_value': '#d8bda8', 'colour_name': 'Sandy Beige '}]"
+378,e.l.f.,e.l.f. Studio HD Mattifying Cream Foundation,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b9a2310c06b11611ab850051c90d06b0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-hd-mattifying-cream_93392.html,https://well.ca,"This high-definition, oil-free, lightweight foundation is perfect for
+normal to oily skin types. The cream-to-powder formula minimizes fine
+lines and leaves a natural, long-lasting, matte finish. Includes a
+compact sponge for easy application and portable beauty.Shade Range: Ingredients: Ethylhexl Palmitate, Octyldodecanol, Synthetic Wax, Copernicia Cerifera
+(Carnauba) Wax, Caprylic/Capric Triglyceride, Tridecyl Trimellitate,
+Mica, Nylon-12, Silica, Triacontanyl PVP, Polyglyceryl-4 Isostearate,
+Propylparaben, Tocopheryl Acetate MAY CONTAIN: Iron Oxides (CI
+77491, CI 77492, CI 77499), Manganese Violet (CI 77492), Red No. 33 Lake
+ (CI 17200), Blue No. 1(CI 42090), Yellow No. 5 Lake (CI 19140),
+Titanium Dioxide (CI 77891), Red No.40 Lake (CI 16035), Chromium
+Hydroxide Green (CI 77289). ",4.8,cream,foundation,['Vegan'],2016-10-01T18:33:09.497Z,2017-12-23T21:08:33.304Z,http://makeup-api.herokuapp.com/api/v1/products/378.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/378/original/data?1514063313,"[{'hex_value': '#ECB78F', 'colour_name': 'Sand '}]"
+377,mineral fusion,Mineral Fusion Sheer Tint Foundation,37.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ad193b9a7696d646f5d398e1550f2f04_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/mineral-fusion-sheer-tint-foundation_119082.html,https://well.ca,"Mineral Fusion Sheer Tint Foundation is a lightweight, hydrating foundation with a dewy finish that provides sheer coverage for a perfectly even skin tone. The blend of Pomegranate, Red Tea, White Tea and Sea Kelp offer age-defying antioxidant protection to defend against free radical damage and give skin a healthy radiance. This foundation is formulated with only the safest, most gentle ingredients plus the natural UV protection of minerals and skin soothing botanicals. Great for use on all skin types.Features:Sheer coverage for neutral skinFlawless CoverageAge-DefyingSkin SoothingFree of artificial colour or fragranceTalc freeHypo-allergenicCruelty FreeParaben FreePhthalate FreeIngredients: Water, Squalane (Olive), Tridecyl Neopentanoate, Titanium Dioxide, Propylene Glycol Dicaprylate/Dicaprate, Vegetable Glycerin, Cetearyl Alcohol, Polysorbate 80, Glyceryl Stearate SE, Cyclomethicone, Hydrogenated Polyisobutene, Dimethicone Crosspolymer-3, Sorbitol, Triethanolamine, Stearic Acid, Sorbitan Sesquioleate, Cetyl Alcohol, Dimethicone, Laureth-7, Magnesium Aluminum Silicate, Cyclopentasiloxane, Xanthan Gum, Hydroxyethyl Acrylate/Sodium Acryloyldimethyl Taurate Copolymer, Polysorbate 60, Cellulose Gum, PEG-12 Dimethicone, Carthamus Tinctorius (Safflower) Seed Oil, Vitis Vinifera (Grape) Seed Extract, Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Caprylic/Capric Triglyceride, Laminaria Ochroleuca (Sea Kelp) Extract, Gluconolactone, Sodium Benzoate. MAY CONTAIN (+/-): Iron Oxides.Vegan, Gluten Free",,cream,foundation,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:33:01.981Z,2017-12-23T21:08:38.025Z,http://makeup-api.herokuapp.com/api/v1/products/377.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/377/original/data?1514063317,[]
+376,pure anada,Pure Anada Loose mineral foundation,25.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ffcc22368c1a34e5478730e6cba8790d_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/pure-anada-loose-mineral-foundation_120386.html,https://well.ca,"Pure Anada mineral foundation has the ability to provide full coverage,
+while still feeling light and natural. No more silicone based
+foundations that can stifle your pores. With Pure Anada your skin can
+“breathe”. This results in a healthier, younger looking complexion.You
+ can be assured that when you use Pure Anada, you are using a truly
+natural product. Pure Anada has done the research, and are committed to
+using the safest, purest ingredients available. It is not necessary to
+add preservatives to this loose mineral products. The raw minerals used
+in Pure Anada are inert, and do not support the growth of bacteria, mold
+ or fungi.Pure Ananda boasts an extensive array of mineral
+colors to suit all skin tones, and personal preferences. With the proper
+ application techniques, Pure Anada mineral cosmetics can be used by all
+ women! Mature skin types enjoy the light, luminous texture, while
+problematic skin types take advantage of the full, soothing coverage.
+These products are concentrated; a little goes a long way! This makes
+Pure Anada very affordable. We want The mineral ingredients in
+Pure Anada have properties that are beneficial to your skin! For
+example: Titanium Dioxide reflects the sun’s harsh rays away from your
+skin. Zinc Oxide soothes irritation, and Silica blurs fine lines and
+wrinkles.Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron Oxides, Ultramarines Note: Deeper, global foundation shades do not contain Titanium Dioxide.Brush not included.",,mineral,foundation,"['Canadian', 'Natural']",2016-10-01T18:32:58.664Z,2017-12-23T21:08:32.175Z,http://makeup-api.herokuapp.com/api/v1/products/376.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/376/original/open-uri20171223-4-z19hbw?1514063312,"[{'hex_value': '#FBC657', 'colour_name': 'Amber Honey '}, {'hex_value': '#F4E2C2', 'colour_name': 'Artic Alabaster '}, {'hex_value': '#E7C078', 'colour_name': 'Atlantic Bisque '}, {'hex_value': '#F2B276', 'colour_name': 'Beige In Banff '}, {'hex_value': '#DBA621', 'colour_name': 'Cappuccino '}, {'hex_value': '#E3AE2C', 'colour_name': 'Caramel '}, {'hex_value': '#A85226', 'colour_name': 'Cocoa '}, {'hex_value': '#924C17', 'colour_name': 'Ebony '}, {'hex_value': '#F5D090', 'colour_name': 'Flaxen Field '}, {'hex_value': '#DA8F23', 'colour_name': 'Hazlenut '}, {'hex_value': '#E2BF80', 'colour_name': 'Ivory Chinook '}, {'hex_value': '#C4923E', 'colour_name': 'Maple Sugar '}, {'hex_value': '#F0D468', 'colour_name': 'Mountain Sunset '}, {'hex_value': '#CFAE61', 'colour_name': 'Niagara Fawn '}, {'hex_value': '#F6E6B2', 'colour_name': 'Nothern Light '}, {'hex_value': '#FDCB70', 'colour_name': 'Pacific Tan '}, {'hex_value': '#FBDCB7', 'colour_name': 'Prairie Rose '}, {'hex_value': '#ECC665', 'colour_name': 'Soft Wheat '}, {'hex_value': '#F9D084', 'colour_name': 'Sunkissed Canadian '}, {'hex_value': '#A05F21', 'colour_name': 'Sweet Chocolate '}]"
+375,dr. hauschka,Dr. Hauschka Translucent Face Powder Compact,35.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/85f0104f060f5f6e76dc18f5c8e728e6_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-translucent-face-powder_34481.html,https://well.ca,"Dr. Hauschka Translucent Face Powder Compact contains a nourishing combination of rose, anthyllis, witch hazel, black tea and silk that mattifies the skin and keeps your make-up in place.",,mineral,foundation,[],2016-10-01T18:32:56.992Z,2017-12-23T21:08:32.027Z,http://makeup-api.herokuapp.com/api/v1/products/375.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/375/original/data?1514063311,[]
+374,physicians formula,Physicians Formula Mineral Wear Talc-Free All-In-One ABC Cushion Foundation,20.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3c711478d1b8a9f1c7d9f2c1cdffdb41_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/physicians-formula-mineral-wear_112333.html,https://well.ca,"1st Ever Mineral ABC Cushion Foundation! Weightless mineral formula provides the multi-tasking benefits of an alphabet cream with the gentle, flawless, skin-perfecting effects of minerals. Revolutionary cushion foundation instantly corrects visible imperfections, blurs fine lines and pores with a perfected airbrushed finish.ABC Cushion Technology: Ultra-fluid, lightweight formula delivers an instantly smoothing & firming effect, while hydrating skin for effortless perfection. Unique cushion sponge delivery system dispenses the perfect dose. Each tap delivers customizable light to medium coverage.Features:Featuring a proprietary ABC blend of complexion enhancing minerals, soothing plant extracts, smoothing antioxidants and skin nourishing vitamins for moisturizing & brightening benefits that leave skin with a luminous finishLuxurious puff applicator provides a cooling & skin refreshing finish upon applicationUltra-convenient for on-the-go!Directions: Apply pressure onto cushion with puff applicator to release the perfect dose of foundation for customizable light to medium coverage. Gently pat puff onto skin. Flip cushion for extended foundation usage. Close inner lid tightly to prevent product from drying out. Ingredients: Mineral Water, Ethyl Macadamiate, Cyclopentasiloxane, Dimethicone, Zinc Oxide, Cyclohexasiloxane, Cetyl PEG/PPG-10/1 Dimethicone, Butylene Glycol, Mica, Calcium Aluminum Borosilicate, Polyethylene, Polyglyceryl-4 Isostearate, Water/Eau, PEG/PPG-18/18 Dimethicone, Smithsonite Extract, Malachite Extract, Rhodochrosite Extract, Glycyrrhiza Glabra (Licorice) Root Extract, Retinyl Palmitate, Alpha-Arbutin, Helianthus Annuus (Sunflower) Seed Oil, Glycerin, Ethylhexylglycerin, Tocopheryl Acetate, Tetrahexyldecyl Ascorbate, Tocopherol, Aluminum Hydroxide, Alumina, Dimethicone/Methicone Copolymer, Dimethicone/PEG-10/15 Crosspolymer, Disodium Cocoyl Glutamate, Disodium EDTA, Dimethicone/Polyglycerin-3 Crosspolymer, Hexyl Laurate, Magnesium Sulfate, Malic Acid, Polysorbate 20, Sodium Chloride, Sodium Cocoyl Glutamate, Synthetic Fluorphlogopite, Sodium Citrate, Trimethylsiloxysilicate, Triethoxycaprylylsilane, PEG-32, PEG-10 Dimethicone, Silica, Hexylene Glycol, Dipropylene Glycol, Caprylyl Glycol, Phenoxyethanol ",4.0,mineral,foundation,"['Gluten Free', 'Natural']",2016-10-01T18:32:55.338Z,2017-12-23T21:08:31.670Z,http://makeup-api.herokuapp.com/api/v1/products/374.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/374/original/open-uri20171223-4-dmlykh?1514063311,"[{'hex_value': '#F1CEAF', 'colour_name': 'Light '}, {'hex_value': '#E1AF7E', 'colour_name': 'Light/Medium '}, {'hex_value': '#C18D5C', 'colour_name': 'Medium '}]"
+373,nyx,NYX Mineral Stick Foundation,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f502dbd04258fd8b613887935f0daa53_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-mineral-stick-foundation_105944.html,https://well.ca,"NYX Mineral Stick Foundation is a luxurious formula that is easy to apply and blend. Use on the entire face or isolated areas that need a little extra attention. Can be blended with fingertips, sponge or foundation brush.Features:Creamy stick foundation that gives a matte satin finishGlides on effortlessly providing medium to full coverage with a natural finishYou can wear as little or as much as you want to get the desired coverage Easy to blend and comfortable to wear at the same timeHow to Use: Apply directly to face from stick or apply using fingers, sponge or brush. Layer and blend for desired result. Set with powder.",5.0,mineral,foundation,[],2016-10-01T18:32:53.266Z,2017-12-23T21:08:31.256Z,http://makeup-api.herokuapp.com/api/v1/products/373.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/373/original/open-uri20171223-4-13g3uut?1514063311,"[{'hex_value': '#F7B990', 'colour_name': 'Fair (MSF01) Fair Complexion with Beige Undertone '}, {'hex_value': '#EFAE76', 'colour_name': 'Golden Beige (MSF06) Medium Complexion with Golden Undertone '}, {'hex_value': '#E0A772', 'colour_name': 'Medium Beige (MSF05) Medium Complexion with Beige Pink Undertone '}, {'hex_value': '#E8C196', 'colour_name': 'Porcelain (MSF02) Light Complexion with Pink Undertone '}]"
+372,nyx,NYX Stay Matte But Not Flat Powder Foundation,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ae8ef30ce1bbfbc56d28f98343d54f4d_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-stay-matte-but-not-flat-powder_106554.html?cat=582,https://well.ca,"Want a matte finish to help you achieve a flawless complexion? The NYX Stay Matte Not Flat Powder Foundation is the perfect finish to flatter all skin tones! Features:Get a naturally flawless look with minimal effortComes in a variety of shades to suit your skin toneProvides the perfect shine-free finish that lasts all dayMineral enriched, talc and oil freeWater & sweat resistantFeels like silk on skinIngredients: Nylon-12, Hydrogenated Polyisobutene, Magnesium Stearate, Silica, Phenyl Trimethicone, Bis-Diglyceryl Polyacyladipate-2, Cyclopentasiloxane, Dimethiconol, Zinc Stearate, Boron Nitride, Methylparaben, Propylparaben, Tocopheryl Acetate. MAY CONTAIN / PEUT CONTENIR (+/-): Mica,Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, 77492, 77499). ",,mineral,foundation,[],2016-10-01T18:32:51.547Z,2017-12-23T21:08:30.619Z,http://makeup-api.herokuapp.com/api/v1/products/372.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/372/original/open-uri20171223-4-1dn9nbh?1514063310,"[{'hex_value': '#E9CEB1', 'colour_name': 'Ivory '}, {'hex_value': '#E8C29E', 'colour_name': 'Natural '}, {'hex_value': '#E3BA94', 'colour_name': 'Soft Beige '}]"
+371,milani,Milani Cream-To-Powder Makeup,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/296c3f69ab7abdc797d6f0f7092f7a58_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-cream-to-powder-makeup_12180.html?cat=581,https://well.ca,"Meet your new photo-opp BFF. This oil-free, not-quite-foundation - a complexion perfector if ever there was one - glides on as a cream and magically morphs into a powder. Laced with light diffusers for minimizing imperfections, it yields a soft matte, camera-ready finish.Features:Silky, creamy-smooth easy application, blends to a natural matte powder finishOptical light diffusers minimize imperfectionsMirror & sponge applicator includedStreak-freeEasy to useApplication: Apply cream to powder foundation evenly all over face with provided flocked sponge, beginning at the center of the face and blending outward. Tips: Can be used as a corrector to cover up dark circles and blemishes. For light to medium coverage, apply in circular motions. For more full coverage, use a patting or stippling motion. Ingredients: Dimethicone, Isopropyl Isostearate, Neopentyl Glycol Diethylhexanoate, Tribehenin, Isostearyl Behenate, Silica, Nylon-12, Tridecyl Trimellitate, Talc, Euphorbia Cerifera Cera (Candelilla Wax), Myristyl Myristate, Polyethylene, Trimethylsiloxysilicate, Sorbitan Trioleate, Tocopheryl Acetate, Isopropyl Titanium Triisostearate, Ethylene/Methacrylate Copolymer, Lauroyl Lysine, Myristyl Laurate, Fragrance (Parfum), Propylparaben, Retinyl Palmitate, Glycine Soja (Soybean) Oil, Myristyl Alcohol, Camellia Sinensis Leaf Extract, Benzyl Alcohol, Coumarin, Limonene, Benzyl Salicylate, Linalool, Citronellol, Benzyl Benzoate, Geraniol. +/- May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Ultamarines (CI 77007). ",4.4,cream,foundation,[],2016-10-01T18:32:50.290Z,2017-12-23T21:08:35.167Z,http://makeup-api.herokuapp.com/api/v1/products/371.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/371/original/open-uri20171223-4-13ofctx?1514063315,"[{'hex_value': '#E7C1AD', 'colour_name': 'Buff '}, {'hex_value': '#CDA08E', 'colour_name': 'Medium Beige '}, {'hex_value': '#C58160', 'colour_name': 'Sand '}, {'hex_value': '#AC6F48', 'colour_name': 'Spiced Almond '}]"
+370,physicians formula,Physicians Formula Mineral Wear Flawless Complexion Kit ,29.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c150e6cb030d8b4c8c63a12e6e599332_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-mineral-wear_58605.html?cat=1977,https://well.ca,"Physicians Formula Mineral Wear Flawless Complexion Kit is ideal for extra sensitive or breakout-prone skin! The ultra-gentle, minimalist formulations help reduce irritation and breakout.Kit Includes: Physicians Formula Mineral Wear Talc-Free Mineral Blush (5.5 g) Mineral Wear Talc-Free Mineral Face Powder (9 g)Mineral Wear Talc-Free Matte Finishing Veil (16.5 g) - Translucent",4.8,powder,blush,['Gluten Free'],2016-10-01T18:32:48.923Z,2017-12-23T21:08:30.276Z,http://makeup-api.herokuapp.com/api/v1/products/370.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/370/original/open-uri20171223-4-ev2twx?1514063310,[]
+369,physicians formula,Physicians Formula Mineral Wear Correcting Kit ,29.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/83eaa459937a099c51594ef9578b3821_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-mineral-wear_58609.html?cat=582,https://well.ca,"Physicians Formula Mineral Wear Flawless Complexion Kit is ideal for
+extra sensitive or breakout-prone skin! The ultra-gentle, minimalist
+formulations help reduce irritation and breakout.Kit Includes: Mineral Wear Talc-Free Mineral Correcting Concealer (11.6 g) - Cover + HighlightMineral Wear Talc-Free Mineral Correcting Powder (8.2 g)Mineral Wear Talc-Free Mineral Loose Powder (10 g) ",4.7,mineral,foundation,['Gluten Free'],2016-10-01T18:32:47.547Z,2017-12-23T21:08:30.036Z,http://makeup-api.herokuapp.com/api/v1/products/369.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/369/original/open-uri20171223-4-1dnyc8c?1514063310,[]
+368,physicians formula,Physicians Formula Mineral Wear Airbrushing Pressed Powder ,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cca454e907546544ca9b5b183bb8a96c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-mineral-wear_58593.html?cat=582,https://well.ca,"Physicians Formula Mineral Wear Airbrushing Pressed Powder's ultra-fine mineral powder delivers impeccable coverage for a flawless airbrushed finish. Visibly reduces the appearance of fine lines, wrinkles, pores and sun damage.Directions for Use: Apply liberally 15 minutes before sun exposure. Use water resistant
+sunscreen if swimming or sweating. Reapply at least every 2 hours.
+Children under 6 months: Ask a doctor. Sun Protection Measures.
+Spending time in the sun increases your risk of skin cancer and early
+skin aging. To decrease this risk, regularly use a sunscreen with a
+broad spectrum SPF of 15 or higher and other sun protection measures
+including: limit time in the sun, especially 10 a.m. - 2 p.m. Wear
+long-sleeve shirts, pants, hats, and sunglasses.Ingredients: Titanium Dioxide, Zinc Oxide. Inactive Ingredients: Mica, Zinc Stearate,
+ Tricaprylin, Boron Nitride, Lauroyl Lysine, Camellia Oleifera Leaf
+Extract, Chamomilla Recutita (Matricaria) Flower Extract, Ginkgo Biloba
+Leaf Extract, Panax Ginseng Root Extract, Carthamus Tinctorius
+(Safflower) Seed Oil, Tocopheryl Acetate, Retinyl Palmitate, Ascorbyl
+Palmitate, Magnesium Silicate, Chlorphenesin, Potassium Sorbate, Sodium
+Dehydroacetate, May Contain: Iron Oxides, Titanium Dioxide.Hypoallergenic. Fragrance free. Paraben free. Non-Comedogenic. Dermatologist approved. ",4.7,mineral,foundation,['Gluten Free'],2016-10-01T18:32:46.151Z,2017-12-23T21:08:29.879Z,http://makeup-api.herokuapp.com/api/v1/products/368.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/368/original/open-uri20171223-4-1g1823t?1514063309,"[{'hex_value': '#ffffee', 'colour_name': 'Translucent (7586C) '}, {'hex_value': '#ecc9a3', 'colour_name': 'Creamy Natural (7587C) '}]"
+367,pure anada,Pure Anada Pressed Sheer Matte Foundation Pan,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e604b3ea443d37f002b6e74d12733427_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-pressed-sheer-matte_83508.html,https://well.ca,"Pure Anada Pressed Sheer Matte Foundation Pan is sheer, and matte and comes in a convenient pan form. Perfect to pop into your own magnetic compact like the Pure Ananda Reusable Magnetic Compact. Design your own palette! Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron
+Oxides, Ultramarines, *Simmondsia Chinensis ( Jojoba) Seed
+Oil, Caprylic/capric triglyceride
+*Certified Organic Ingredients",4.3,mineral,foundation,"['Canadian', 'Natural']",2016-10-01T18:32:43.895Z,2017-12-23T21:08:29.773Z,http://makeup-api.herokuapp.com/api/v1/products/367.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/367/original/data?1514063309,"[{'hex_value': '#ecd1bb', 'colour_name': 'Porcelain (Ultra Fair) '}, {'hex_value': '#E3B89B', 'colour_name': 'Light '}]"
+366,maybelline,Maybelline Mineral Power Natural Perfecting Powder Foundation,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c77ad2da76259cfd67a9a9432f635bfb_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-mineral-power-natural_5900.html?cat=582,https://well.ca,"Why You'll Love ItMineral Power Powder Foundation with micro-minerals provides a more natural, healthier, luminous look.
+Discover the natural power of micro-minerals:
+100% natural mica creates a more natural luminosity Complete, yet refined coverage Provides buildable, even coverage Preservative-free, talc-free, oil-free, fragrance-free Medium to Full Coverage",3.9,mineral,foundation,[],2016-10-01T18:32:42.283Z,2017-12-23T21:08:29.561Z,http://makeup-api.herokuapp.com/api/v1/products/366.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/366/original/open-uri20171223-4-q5cytj?1514063309,"[{'hex_value': '#FFD59E', 'colour_name': 'Classic Ivory '}]"
+365,physicians formula,Physicians Formula Mineral Wear Airbrushing Loose Powder ,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9ad93ab35e838c5a1669cc934c6d93b6_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-mineral-wear_58573.html?cat=582,https://well.ca,"Physicians Formula Talc-Free Mineral Wear Airbrushing Loose Powder is an ultra-fine mineral powder delivers impeccable coverage for a flawless airbrushed finish. Visibly reduces the appearance of fine lines, wrinkles, pores and sun damage. Formulated with soothing plant extracts, protective antioxidants, nourishing Vitamins C and E. The result is a visibly firm, smooth, healthy and youthful complexion.Directions for Use: May be worn alone or over makeup. Invert jar and gently tap to allow
+powder to gather in tray. Open the sifter lid and lightly buff powder
+over face and neck to even out complexion. For the most even
+application, be sure to tap excess powder from brush before applying.
+For best results on dry to very dry skin, apply moisturizer prior to
+using powder.Ingredients: Mica. Boron Nitride. Zinc Stearate. Lauroyl Lysine. Tricaprylin.
+Magnesium Silicate. Carthamus Tinctorius (Safflower) Seed Oil.
+Chamomilla Recutita (Matricaria) Flower Extract. Panax Ginseng Root
+Extract. Ginkgo Biloba Leaf Extract. Camellia Oleifera Leaf Extract.
+Ascorbyl Palmitate. Tocopheryl Acetate. Retinyl Palmitate.
+Chlorphenesin. Potassium Sorbate. Sodium Dehydroacetate. May Contain:
+Iron Oxides. Titanium Dioxide.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Non-Comedogenic.",4.6,mineral,foundation,['Gluten Free'],2016-10-01T18:32:40.412Z,2017-12-23T21:08:29.446Z,http://makeup-api.herokuapp.com/api/v1/products/365.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/365/original/open-uri20171223-4-15ax46q?1514063309,"[{'hex_value': '#f3e2dc', 'colour_name': 'Translucent Light (7314C) '}, {'hex_value': '#fce3d6', 'colour_name': 'Creamy Natural (7315C) '}, {'hex_value': '#f5d6c1', 'colour_name': 'Natural Beige (7316C) '}]"
+364,pure anada,Pure Anada Loose Mineral Foundation ,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5d746a1619119260de309df7396e5d7c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-loose-mineral-foundation_83210.html,https://well.ca,"Pure Anada mineral foundation has the ability to provide full coverage,
+while still feeling light and natural. No more silicone based
+foundations that can stifle your pores. With Pure Anada your skin can
+“breathe”. This results in a healthier, younger looking complexion.You can be assured that when you use Pure Anada, you are using a truly natural product. Pure Anada has done the research, and are committed to using the safest, purest ingredients available. It is not necessary to add preservatives to this loose mineral products. The raw minerals used in Pure Anada are inert, and do not support the growth of bacteria, mold or fungi.Pure Ananda boasts an extensive array of mineral colors to suit all skin tones, and personal preferences. With the proper application techniques, Pure Anada mineral cosmetics can be used by all women! Mature skin types enjoy the light, luminous texture, while problematic skin types take advantage of the full, soothing coverage. These products are concentrated; a little goes a long way! This makes Pure Anada very affordable. We want The mineral ingredients in Pure Anada have properties that are beneficial to your skin! For example: Titanium Dioxide reflects the sun’s harsh rays away from your skin. Zinc Oxide soothes irritation, and Silica blurs fine lines and wrinkles.Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron Oxides, Ultramarines Note: Deeper, global foundation shades do not contain Titanium Dioxide.Brush not included.",3.9,mineral,foundation,"['Canadian', 'Natural']",2016-10-01T18:32:37.791Z,2017-12-23T21:08:29.343Z,http://makeup-api.herokuapp.com/api/v1/products/364.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/364/original/data?1514063309,"[{'hex_value': '#906832', 'colour_name': 'Amber Honey (Deep - Yellow Tone) '}, {'hex_value': '#C48B5E', 'colour_name': 'Beige in Banff (Medium - Cool Tones) '}, {'hex_value': '#8F5E31', 'colour_name': 'Caramel '}, {'hex_value': '#5D2E17', 'colour_name': 'Cinnamon '}, {'hex_value': '#322415', 'colour_name': 'Cocoa '}, {'hex_value': '#583B1C', 'colour_name': 'Hazelnut '}, {'hex_value': '#FBD8A8', 'colour_name': 'Ivory Chinook (Fair - Warm Tones) '}, {'hex_value': '#936F44', 'colour_name': 'Pacific Tan (Medium - Neutral Tones) '}, {'hex_value': '#F7AC8C', 'colour_name': 'Prairie Rose (Fair - Cool Tones) '}]"
+362,covergirl,CoverGirl Outlast Stay Luminous Foundation Creamy Natural (820) ,12.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b074403f4a1c12a7920199e4d8fabe78_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-outlast-stay-luminous_105789.html,https://well.ca,"CoverGirl Outlast Stay Luminous Foundation is perfect for achieving
+a dewy finish and a subtle glow. It is oil-free, with a non-greasy formula gives
+your skin a natural luminosity that lasts all day! This all day foundation hydrates skin while providing
+flawless coverage.Features: Oil-freeLong lastingGive your skin a natural glowing lookDirections: Apply primer first to help your look last all day.Dot foundation on forehead, cheeks and chin. Blend using fingertips, or a makeup sponge if desired.Use a Pressed Powder to finish and voila! Your look is ready to last.",,liquid,foundation,[],2016-10-01T18:32:33.809Z,2017-12-23T21:08:29.018Z,http://makeup-api.herokuapp.com/api/v1/products/362.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/362/original/data?1514063308,"[{'hex_value': '#E6C29B', 'colour_name': 'Creamy Natrual (820)'}, {'hex_value': '#E6C29B', 'colour_name': 'Buff Beige (825)'}, {'hex_value': '#E4C5A2', 'colour_name': 'Medium Beige (842)'}, {'hex_value': '#E3C8A3', 'colour_name': 'Classic Ivory (810)'}]"
+356,mineral fusion,Mineral Fusion Liquid Foundation,37.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/28f3263536f9d9650997790baf329bbe_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/mineral-fusion-liquid-foundation_119099.html,https://well.ca,"Mineral Fusion Liquid Foundation is a luxurious, full-coverage mineral foundation that blends easily for naturally flawless skin. With a unique fusion of antioxidant-rich Rosehip Oil, Pomegranate, and Vitamin C plus the collagen-boosting Peptide help firm skin and prevent signs of aging without a heavy or greasy feeling. Formulated with only the safest, most gentle ingredients, the natural UV protection of minerals, plus skin-soothing Licorice Root, Aloe Vera, and Lavender and nourishing Shea Butter. Great for use on all skin types.Features:Flawless, Full CoverageAge-DefyingSkin-SoothingFree of artificial colour or fragranceParaben FreeCruelty FreePhthalate FreeHypo-allergenicIngredients: Aqua, Caprylic/capric triglyceride, Cera alba, Stearic acid, Glycerol caprylate, Glycol palmitate, Glyceryl stearate, Silica, Oryza Sativa (Rice) starch, Mica, Dimethicone, Butyrospermum Parkii (Shea Butter) Fruit, Palmitoyl Tripeptide-5, Aloe Barbadensis (Aloe) Leaf extract, Roman Anthemis Nobilis (Chamomile) extract, Lavandula Angustifolia (Lavender) extract, Punica Granatum (Pomegranate) extract, Glycyrrhiza glabra (Licorice) Root Powder, L-ascorbic-acid (Vitamin C), Tocopherol (Vitamin E), Phenoxyethanol. MAY CONTAIN (+/-): Titanium dioxide, Black Iron oxide, Red Iron Oxide, Yellow Iron Oxide.",4.0,liquid,foundation,"['Gluten Free', 'Natural']",2016-10-01T18:32:25.658Z,2017-12-23T21:08:27.641Z,http://makeup-api.herokuapp.com/api/v1/products/356.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/356/original/data?1514063307,"[{'hex_value': '#C28C5E', 'colour_name': 'Olive 2 - for olive skin with green undertones '}, {'hex_value': '#D7C1B3', 'colour_name': 'Warm 1 - for light to medium skin with golden undertones '}]"
+354,maybelline,Maybelline Dream Velvet Foundation,18.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/24517c6c81c92eda31cd32b6327c1298_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-dream-velvet-foundation_112738.html?cat=581,https://well.ca,"This Maybelline Dream Velvet Foundation is a refreshing gel-whipped foundation that leaves complexion perfected and smooth with a velvety, soft-matte finish. Skin stays hydrated for 12 hours. Features:Maybelline’s first hydrating matte foundation for 100% velvet-smooth perfectionUnique gel-whipped formulaIdeal for normal to combination skin, medium coverage For best results apply Maybelline Dream Velvet Foundation using Maybelline Dream Blender",2.5,cream,foundation,[],2016-10-01T18:32:21.385Z,2017-12-23T21:08:36.656Z,http://makeup-api.herokuapp.com/api/v1/products/354.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/354/original/open-uri20171223-4-ouczfl?1514063316,"[{'hex_value': '#D39D7B', 'colour_name': 'Caramel '}, {'hex_value': '#F5CAB9', 'colour_name': 'Classic Ivory '}, {'hex_value': '#B37560', 'colour_name': 'Coconut '}, {'hex_value': '#F3BEAC', 'colour_name': 'Creamy Natural '}, {'hex_value': '#E4A890', 'colour_name': 'Honey Beige '}, {'hex_value': '#F6D2BC', 'colour_name': 'Ivory '}, {'hex_value': '#E2B598', 'colour_name': 'Natural Beige '}, {'hex_value': '#F1BEAB', 'colour_name': 'Nude '}, {'hex_value': '#F8E0D4', 'colour_name': 'Porcelain Ivory '}, {'hex_value': '#EEBAA4', 'colour_name': 'Pure Beige '}, {'hex_value': '#EFC2A1', 'colour_name': 'Sandy Beige '}, {'hex_value': '#FAE2D6', 'colour_name': 'Warm Porcelain '}]"
+353,maybelline,Maybelline Superstay Better Skin Foundation ,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c7d967ef502ecd79ab7ab466c4952d82_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-superstay-better-skin_112548.html,https://well.ca,"The Maybelline Superstay Better Skin Foundation reduces the appearance of spots, bumps, dullness and redness to give you brighter, smoother and more even skin. Features:Longwear that improves skin every minute you're in it: brighter, smoother and more even.With micro-flex technology and the antioxidant power of Actyl-C.Ideal for sensitive skin. Good for all skin types. Medium to full coverageHow to Apply: Apply evenly to your face and blend with your fingers. ",3.0,liquid,foundation,[],2016-10-01T18:32:19.867Z,2017-12-23T21:08:27.318Z,http://makeup-api.herokuapp.com/api/v1/products/353.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/353/original/open-uri20171223-4-q9ubsf?1514063307,"[{'hex_value': '#9A6438', 'colour_name': 'Coconut '}, {'hex_value': '#DCBCA3', 'colour_name': 'Ivory '}, {'hex_value': '#ECD3B2', 'colour_name': 'Porcelain '}, {'hex_value': '#C99F6D', 'colour_name': 'Rich Tan '}, {'hex_value': '#CA9B5F', 'colour_name': 'Sun Beige '}]"
+352,nyx,NYX Stay Matte But Not Flat Liquid Foundation,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b5a40b7f3a55feb97f7b16987f1fe8c7_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-stay-matte-but-not-flat-liquid_106808.html,https://well.ca,"NYX Stay Matte But Not Flat Liquid Foundation provides full coverage with a mineral enriched matte finish. The oil-free and water-based formula is perfect whether you are in the studio or out and about all day! Features:Oil freeWater basedFull coverageMineral enrichedMatte finishIngredients: Water / Aqua / Eau, Cyclopentasiloxane, Cyclohexasiloxane, Cetyl Ethylhexanoate, Beeswax / Cera Alba / Cire d’Abeille, Disteardimonium Hectorite Propylene Carbonate, Polyglyceryl-4 Isostearate, Cetyl PEG/PPG-10/1 Dimethicone, Hexyl Laurate, Glyceryl Laurate, Stearyl Dimethicone, Polyglyceryl-4 Oleate, Phenoxyethanol,Methylparaben, Tocopheryl Acetate, Ascorbyl Palmitate, Butylparaben, Ethylparaben, Propylparaben. MAY CONTAIN / PEUT CONTENIR (+/-): Titanium Dioxide ( CI 77891 ), Iron Oxides ( CI 77491, 77492, 77499 ).",4.0,liquid,foundation,[],2016-10-01T18:32:18.634Z,2017-12-23T21:08:27.072Z,http://makeup-api.herokuapp.com/api/v1/products/352.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/352/original/open-uri20171223-4-1ep703w?1514063306,"[{'hex_value': '#EAD3B3', 'colour_name': 'Ivory '}, {'hex_value': '#E8BD90', 'colour_name': 'Natural '}, {'hex_value': '#D2AD84', 'colour_name': 'Nude '}, {'hex_value': '#CF9A79', 'colour_name': 'Tan '}, {'hex_value': '#C38E6A', 'colour_name': 'Tawny '}]"
+350,l'oreal,L'Oreal Paris True Match Lumi Glow Liquid Foundation,16.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2a38b2c75a247fe6d1038431964dd24c_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/loreal-paris-true-match-lumi-glow_107479.html,https://well.ca,"The ultimate in luminosity. L’Oréal Paris introduces its first liquid highlighter specifically crafted to highlight key features or illuminate all-over. Designed in Golden, Rose, and Ice shades that flatter every skintone from warm to neutral to cool. Features:Golden Illuminator enhances peachy or yellow tones in warm skintonesRose Illuminator enhances yellow, peachy, pink or blue tones in neutral skintonesIce Illuminator enhances pink or blue tones in cool skintonesHighlight key features or illuminate all-overLightweight formulaFor every skintone & undertoneINGREDIENTS: AQUA/WATER/EAU, DIMETHICONE, GLYCERIN, ALCOHOL DENAT, SYNTHETIC FLUORPHLOGOPITE, DIMETHICONE/POLYGLYCERIN-3, CROSSPOLYMER, ACRYLAMIDE/SODIUM, ACRYLOYLDIMETHYLTAURATE COPOLYMER, PHENOXYETHANOL, ISOHEXADECANE, CAPRYLYL GLYCOL, POLYSORBATE 80, DIPROPYLENE, GLYCOL TIN OXIDE ",3.0,liquid,foundation,[],2016-10-01T18:32:15.758Z,2017-12-23T21:08:26.250Z,http://makeup-api.herokuapp.com/api/v1/products/350.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/350/original/open-uri20171223-4-vetytd?1514063306,"[{'hex_value': '#E2A587', 'colour_name': 'Golden '}, {'hex_value': '#F9E6E0', 'colour_name': 'Ice '}, {'hex_value': '#DBA777', 'colour_name': 'Rose '}]"
+349,covergirl,"CoverGirl Ready, Set Gorgeous Liquid Makeup 105",8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/414eb9180f66dd8a75ddd34b307e3a36_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-ready-set-gorgeous-liquid_97267.html,https://well.ca,"CoverGirl Ready, Set Gorgeous foundation provides a flawless, natural look that lasts all day in one simple step!Features:Blends easily to even skin tone for a flawless lookShine free look lasts all dayOil free, won't clog poresApplication Tips: Dot foundation on forehead, cheeks and chin. Blend using fingertips or a makeup sponge. Use with any COVERGIRL Pressed Powder to help your look last.",2.0,liquid,foundation,[],2016-10-01T18:32:14.608Z,2017-12-23T21:08:26.081Z,http://makeup-api.herokuapp.com/api/v1/products/349.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/349/original/data?1514063306,"[{'hex_value': '#F5C8A6', 'colour_name': '105'}, {'hex_value': '#E6B98F', 'colour_name': '115'}, {'hex_value': '#EEC392', 'colour_name': '210'}, {'hex_value': '#9A7751', 'colour_name': '320'}, {'hex_value': '#F5C497', 'colour_name': '215'}, {'hex_value': '#F8D5A7', 'colour_name': '110'}, {'hex_value': '#F4C891', 'colour_name': '220'}]"
+348,covergirl,CoverGirl Outlast Stay Fabulous 3-in-1 Foundation,12.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5b6bdfe942b6ffccbd2ca3f37e500744_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-outlast-stay-fabulous_74018.html,https://well.ca,"CoverGirl Outlast Stay Fabulous 3-in-1 foundation is an all-in-one foundation with a long-lasting formula that fuses primer,
+concealer, and foundation in one easy step! The 3-in-1 formula provides a
+ flawless look that lasts all day long.Features: All day, longwear formulaPrimer, concealer, and foundation in oneSmooth, flawless finishFoundation + Sunscreen SPF 20",,liquid,foundation,[],2016-10-01T18:32:12.257Z,2017-12-23T21:08:25.875Z,http://makeup-api.herokuapp.com/api/v1/products/348.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/348/original/data?1514063305,[]
+347,,DaLish Silk to Matte Foundation,44.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e98af12555201b5d34a30e3029191c6d_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dalish-silk-to-matte-foundation_98219.html,https://well.ca,"This long-wear DaLish foundation starts out silky smooth—best applied using your fingers—and dries to a radiant matte finish. Light coverage ensures a natural-looking result, yet the buildable formula evens tone where you need it, for a perfect, cake-free base. Sunflower seed oil, rich in Vitamins A, D, and E, moisturizes, calms and protects skin without clogging pores. Shade Range: F01 - light – for very fair skin tones.FO2 - medium – DaLish's most popular shade. Fair to medium tones.FO3 - dark – for darker tone skin.Ingredients: Water, Coconut Alkanes, Coco-Caprylare/Caprate, Glycerin, Sorbitan Olivate, Polyglyceryl-3 Diisostearate, Caprylic/Capric Triglycerides, Carthamus Tinctoriur (Safflower) Oleosomes, Cetyl Palmitate, Sorbitan Palmitate, Sorbitan Olivate, Zinc Stearate, Sodium Benzoate, Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus Officinals (Rosemary) Leaf Extract, Benzyl Alcohol, Dehydroacetic Acid, Benzoic Acid, Sorbic Acid, Tocopherol, Jojoba Ester May contain (+/-), Titanium Dioxide CI 77891, Mica CI 77019, Iron Oxide CI 77491, Iron Oxide CI 77492, Iron Oxide CI 77499. *Contains natural antioxidant* PEG free * ",4.0,liquid,foundation,"['Canadian', 'Natural']",2016-10-01T18:32:11.060Z,2017-12-23T21:08:25.741Z,http://makeup-api.herokuapp.com/api/v1/products/347.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/347/original/data?1514063305,"[{'hex_value': '#edbc92', 'colour_name': 'F01 - light '}, {'hex_value': '#dc8c68', 'colour_name': 'FO2 - medium '}, {'hex_value': '#ba6839', 'colour_name': 'FO3 - dark '}]"
+345,l'oreal,L'Oreal Paris Visible Lift Blur Foundation ,18.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c207687e567547445338321ae28c9b96_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-visible-lift-blur_96664.html,https://well.ca,"Discover instantly ageless skin. L'Oreal Paris Visible Lift Blur™ features Opti-Blur™
+technology with a cushiony soft texture that glides on to blur the look
+of lines, wrinkles and uneven skin tone in seconds. Skin looks
+flawlessly smooth, instantly perfected.Ingredients: CYCLOPENTASILOXANE,
+AQUA, ETHYLHEXYL
+METHOXYCINNAMATE,
+DIMETHICONE
+CROSSPOLYMER,
+GLYCERIN, ISOTRIDECYL
+ISONONANOATE, PEG-9
+POLYDIMETHYLSILOXYETHYL
+DIMETHICONE,
+DISTEARDIMONIUM
+HECTORITE,
+PHENOXYETHANOL,
+PEG-10 DIMETHICONE,
+HYDROLYZED WHEAT
+PROTEIN/PVP
+CROSSPOLYMER,
+DISODIUM STEAROYL
+GLUTAMATE,
+CHLORPHENESIN,
+METHYLPARABEN,
+LYCIUM BARBARUM
+FRUIT EXTRACT,
+ACRYLATES
+COPOLYMER,
+POTASSIUM SORBATE,
+ETHYLPARABEN,
+TOCOPHEROL,
+ASCORBYL PALMITATE,
+PANTHENOL, PEG-9,
+ALUMINUM HYDROXIDE,
+CITRIC ACID, SODIUM
+PCA, UREA, TREHALOSE,
+POLYQUATERNIUM-51,
+SOLUBLE COLLAGEN,
+SODIUM HYALURONATE.
+[+/- : CI 77891, MICA,
+CI 77492, CI 77491,
+CI 77499]
+
+
+",,liquid,foundation,[],2016-10-01T18:32:08.987Z,2017-12-23T21:08:25.277Z,http://makeup-api.herokuapp.com/api/v1/products/345.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/345/original/data?1514063305,"[{'hex_value': '#F9D4B6', 'colour_name': 'Light Ivory '}, {'hex_value': '#FCD1B9', 'colour_name': 'Classic Ivory '}, {'hex_value': '#E4B99C', 'colour_name': 'Nude Beige '}, {'hex_value': '#EAC2A8', 'colour_name': 'Creamy Natural '}, {'hex_value': '#E1B090', 'colour_name': 'Natural Buff '}, {'hex_value': '#D09F80', 'colour_name': 'Natural Beige '}, {'hex_value': '#D3A389', 'colour_name': 'Buff Beige '}, {'hex_value': '#D2A279', 'colour_name': 'Sun Beige '}]"
+344,covergirl,CoverGirl Clean Liquid Makeup Normal Skin ,9.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/19422d63bf6e51c128bc2fa457fa61dc_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-clean-liquid-makeup-normal_74981.html,https://well.ca,"Clean Makeup’s formula lets your skin breathe, goes on easily and blends
+ perfectly, so the world doesn't see makeup, just the look of great
+skin. The sensitive skin formula is fragrance and oil free, and is
+suitable for sensitive skin. Features: Light coverage, not heavy or cakeyNon-comedogenic (won't clog pores)Dermatologically tested",5.0,liquid,foundation,[],2016-10-01T18:32:08.168Z,2017-12-23T21:08:23.076Z,http://makeup-api.herokuapp.com/api/v1/products/344.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/344/original/data?1514063303,[]
+343,cargo cosmetics,Cargo Cosmetics Liquid Foundation,42.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/369c6a7dc5ce002dd66b2271256b84c9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-liquid-foundation_87617.html,https://well.ca,"Cargo Cosmetics Liquid Foundation is a smooth-as-silk, liquid foundation for sheer coverage that can be
+built as required for professional coverage. It offers a long-wearing
+finish without the need for heavy powder. The blend-able, lightweight
+and oil-free formulation, makes it ideal for oily skin types, while
+innovative skin conditioners hydrate dry skin types without adding oil.
+The sleek, recyclable plastic pouch package is so smart – it allows you
+to squeeze out just the right amount, using every drop of your purchase.
+ It is cleaner and more hygienic than any traditional screw-top or pump
+bottle.
+
+
+Features:
+Oil-free Anti-oxidants to nourish the skinExcellent cover yet feels weightlessAll skin typesSleek, silver-colored plastic pouch package is so smart – it allows you to squeeze out just the right amount, use every drop of their
+purchase, and is cleaner and more hygienic than any traditional
+screw-top or pump bottle.Key Ingredients: Vitamin E is a powerful anti-oxidant, helping the skin to fight the damaging effects of the environmentVitamin C augments the skin’s ability to fight free radicals
+that are caused by UV rays and an effective treatment of fine lines as
+well as helping to heal minor woundsGlycerin maintains and boost the skin’s natural water content by acting to draw moisture to the skinShade Range: Ingredients: Water (Aqua), Cyclopentasiloxane, Butylene Glycol, Dimethicone
+Crosspolymer, Octyldodecyl Neopentanoate, Glycerin, Hexyl Laurate,
+Polyglyceryl-4-Isostearate, Cetyl Peg/Ppg 10/1 Dimethicone, Dimethicone,
+ Tocopherol, Tetrahexyldecyl Ascorbate, Glycyrrhiza Glabra (Licorice)
+Root Extract, Peg/Ppg-18 /18 Dimethicone, Nylon-12 Fluorescent
+Brightener 230 Salt, Polyvinylalcohol Crosspolymer, Acetyl Glucosamine,
+Phytantriol, Silica, Lysine, Potassium Chloride, Zinc Chloride, Sodium
+Chloride, Magnesium Chloride, Sodium Dehydroacetate,
+Triethoxycaprylylsilane, Disodium Edta, Sodium Hyaluronate, Hexylene
+Glycol, Caprylyl Glycol, May Contain (+/-): Mica, Iron Oxides (Ci 77491,
+ Ci 77492, Ci 77499), Titanium Dioxide (Ci 77891)
+
+
+
+
+
+",,liquid,foundation,[],2016-10-01T18:32:07.108Z,2017-12-23T21:08:23.793Z,http://makeup-api.herokuapp.com/api/v1/products/343.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/343/original/data?1514063303,"[{'hex_value': '#CC9157', 'colour_name': 'F-70 '}, {'hex_value': '#EAD4AB', 'colour_name': 'F-10 '}, {'hex_value': '#F1C69C', 'colour_name': 'F-20 '}, {'hex_value': '#AF7A52', 'colour_name': 'F-30 '}, {'hex_value': '#B48C5B', 'colour_name': 'F-40 '}, {'hex_value': '#C8A480', 'colour_name': 'F-45 '}, {'hex_value': '#DBA157', 'colour_name': 'F-50 '}, {'hex_value': '#BC7E4D', 'colour_name': 'F-60 '}, {'hex_value': '#AE704B', 'colour_name': 'F-80 '}, {'hex_value': '#834127', 'colour_name': 'F-90 '}, {'hex_value': '#492117', 'colour_name': 'F-100 '}]"
+342,covergirl,CoverGirl Smoothers All-Day Hydrating Makeup ,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/edd3139c31a9f0561b93d1b68b21a442_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-smoothers-all-day_75020.html,https://well.ca,"Smooth, even coverage makes imperfections virtually vanish before your
+eyes, while the vitamin-enriched formula helps direct moisture to your
+skin’s surface, improving your skin’s condition over time.
+This liquid foundation glides on effortlessly for lightweight coverage
+that lasts for hours.Features:HypoallergenicFragrance FreeOil-FreeWon't clog pores",,liquid,foundation,[],2016-10-01T18:32:02.606Z,2017-12-23T21:08:23.403Z,http://makeup-api.herokuapp.com/api/v1/products/342.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/342/original/data?1514063303,[]
+341,covergirl,CoverGirl Clean Oil Control Makeup ,9.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/700e432a504f4784792e84d498c982b7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-clean-oil-control-makeup_74942.html,https://well.ca,"With CoverGirl's Clean Oil Control Makeup, you'll get all the shine control you
+want – without the drying coverage you don't. The Clean foundation with
+gentle oil absorbing powders and skin conditioners, help prevent
+dryness. Best of all, it won't clog pores, for a clean, shine-free face,
+ hour after hour!Features: Oil and fragrance freeNon-comedogenic (won’'t clog pores)Dermatologically-testedWon’'t clog pores",4.0,liquid,foundation,[],2016-10-01T18:31:59.388Z,2017-12-23T21:08:23.280Z,http://makeup-api.herokuapp.com/api/v1/products/341.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/341/original/data?1514063303,[]
+340,physicians formula,Physicians Formula Nude Wear Touch of Glow Foundation,18.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b94e7fe160e5564b9a8282938d3dabae_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-nude-wear-touch_102682.html,https://well.ca,"
+Physicians Formula Nude Wear Touch of Glow Foundation is a weightless fluid foundation that dresses your skin in an illuminating veil of radiance. This airy foundation is formulated with translucent, 100% perfecting nude pigments.Features: HypoallergenicFragrance, Paraben, Gluten & Oil freeNon-ComedogenicDermatologist ApprovedDirections: Shake bottle before each use. Apply foundation directly onto enclosed Perfecting Foundation brush and blend with brush until desired coverage is achieved.Ingredients: Cyclopentasiloxane, Water, Cyclohexasiloxane, Butylene Glycol, Dimethicone, Cetyl PEG/PPG-10/1 Dimethicone, Mica, Silica, Polyglyceryl-4 Isostearate, PEG/PPG-18/18 Dimethicone, Tropaeolum Majus Flower/Leaf/Stem Extract, Lactic Acid, Dimethicone/PEG-10/15 Crosspolymer, PEG-10 Dimethicone, Glycerin, Calcium Aluminum Borosilicate, Sodium Chloride, Nylon-12, Dimethicone/Polyglycerin-3 Crosspolymer, Hexyl Laurate, Tribehenin, Magnesium Sulfate, Polysorbate 20, Synthetic Fluorphlogopite, Disodium Cocoyl Glutamate, Caprylyl Glycol, Ethylhexylglycerin, Hexylene Glycol, Tocopheryl Acetate, Triethoxycaprylylsilane, Sodium Cocoyl Glutamate, Tetrahexyldecyl Ascorbate, Lauroyl Lysine, Dipropylene Glycol, Sodium Citrate, Tocopherol, Phenoxyethanol. May Contain: Iron Oxides, Titanium Dioxide.",4.5,liquid,foundation,['Gluten Free'],2016-10-01T18:31:57.911Z,2017-12-23T21:08:22.947Z,http://makeup-api.herokuapp.com/api/v1/products/340.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/340/original/data?1514063302,"[{'hex_value': '#f2d7c2', 'colour_name': 'Light '}]"
+339,maybelline,Maybelline Dream Wonder Liquid Touch Foundation,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ccb99ad6ac7f31a2a73454bdbda01d99_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-dream-wonder-liquid-touch_96732.html,https://well.ca,"Maybelline Dream Wonder Liquid Touch Foundation's breakthrough texture fuses with skin. A finish so impeccable, yet undetectable.Features:Exclusive dropperMedium to full coverage, ideal for normal skinFor Best Results: Shake well. Unscrew cap. Holding dropper vertically, allow foundation to drop onto fingertip. Apply to face as usual.",,liquid,foundation,[],2016-10-01T18:31:57.182Z,2017-12-23T21:08:22.715Z,http://makeup-api.herokuapp.com/api/v1/products/339.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/339/original/data?1514063302,"[{'hex_value': '#DDA17B', 'colour_name': 'Sun Beige (85) '}]"
+338,covergirl,CoverGirl Advanced Radiance Age Defying Liquid Makeup ,12.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9b13eee88cc626be90db443abb6e8bb9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-advanced-radiance-age_75009.html,https://well.ca,"Take 5 years off the look of your skin.* This smooth liquid foundation
+with Olay ingredients blends into the skin, covering fine lines and
+wrinkles, for radiant, beautiful coverage that actually helps give you a
+ youthful looking appearance.
+ * Tested among women 35-65.Features:Protects with SPF 10Suitable for sensitive skinDermatologically-testedNon-comedogenic (won't clog pores)Oil-free
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+",5.0,liquid,foundation,[],2016-10-01T18:31:55.954Z,2017-12-23T21:08:22.837Z,http://makeup-api.herokuapp.com/api/v1/products/338.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/338/original/data?1514063302,[]
+337,revlon,Revlon Photoready Airbrush Effect Makeup,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b0d39978c1aeee0d1dd0dfe186e25c75_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-photoready-airbrush-effect_101107.html,https://well.ca,"Revlon Photoready Airbrush Effect Makeup has a revolutionary formula with Light-Filtering
+Technology delivers a poreless, airbrushed look.
+Soft-focus pigments create a luminous finish.
+your skin has never looked so flawless.
+ Features: High Resolution Shades SPF 20 Medium to Full Coverage
+",,liquid,foundation,[],2016-10-01T18:31:54.590Z,2017-12-23T21:08:22.349Z,http://makeup-api.herokuapp.com/api/v1/products/337.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/337/original/open-uri20171223-4-po7z4r?1514063302,"[{'hex_value': '#F9C8AD', 'colour_name': 'Ivory '}, {'hex_value': '#f7e8cc', 'colour_name': 'Vanilla '}, {'hex_value': '#fee0c1', 'colour_name': 'Shell '}, {'hex_value': '#e8c3a5', 'colour_name': 'Nude '}, {'hex_value': '#ebb486', 'colour_name': 'Natural Beige '}, {'hex_value': '#ecaa7d', 'colour_name': 'Medium Beige '}, {'hex_value': '#DFA585', 'colour_name': 'Cool Beige '}, {'hex_value': '#dfb698', 'colour_name': 'Golden Beige '}, {'hex_value': '#d5845d', 'colour_name': 'Rich Ginger '}, {'hex_value': '#af622e', 'colour_name': 'Caramel '}, {'hex_value': '#A0633E', 'colour_name': 'Cappuccino '}, {'hex_value': '#94583F', 'colour_name': 'Mocha '}]"
+336,revlon,Revlon Age Defying Firming + Lifting Makeup,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0215f4c5565bd4e8215969c6aa93e89c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-age-defying-firming-lifting_92471.html,https://well.ca,"Revlon Age Defying Firming + Lifting Makeup is an advanced anti-aging multi-benefit makeup. Firm. Lift. Hydrate. Cover.
+93% of women saw noticeably improved skin.*
+This all-in-one formula combines hyaluronic acid, a potent dose of
+moisturizing ingredients and our exclusive Triple Lift Complex™. Relax
+the look of expression lines, give skin a smooth, tightened feel and
+boost hydration 3X. For a radiant, rejuvenated look.**
+
+*after 8 weeks **skin feels tighter after 4 weeks, rejuvenated after 1Directions: Apply with fingertips,
+sponge or brush, blend foundation onto skin, starting in the center of
+your face, forehead, nose and chin blending outward
+",4.5,liquid,foundation,[],2016-10-01T18:31:52.442Z,2017-12-23T21:08:22.145Z,http://makeup-api.herokuapp.com/api/v1/products/336.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/336/original/data?1514063302,"[{'hex_value': '#E5BEA5', 'colour_name': 'Warm Beige '}]"
+335,l'oreal,L'Oreal Paris True Match Lumi Cushion Foundation,26.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0350aac08c86bccd97c2a5ca26b15ae9_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-paris-true-match-lumi_112632.html,https://well.ca,"Liquid foundation revolutionized – a fresh luminous glow in a tap. Introducing the new L'Oreal Paris True Match Lumi Cushion, an innovative cushion drenched in liquid foundation. Tap a little for a fresh natural glow, tap on more to build a new level of luminous coverage.Features:Effortless applicationCompletely buildableOn-the-go coverageFormulated with Precise Match Technology to match your skin’s tone and textureAvailable in 8 true-to-skin shadesFinish: fresh & luminousCoverage: sheer to medium, buildable coverageFor all skin types",4.0,liquid,foundation,[],2016-10-01T18:31:51.174Z,2017-12-23T21:08:21.988Z,http://makeup-api.herokuapp.com/api/v1/products/335.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/335/original/data?1514063301,"[{'hex_value': '#D09A7A', 'colour_name': 'Buff Beige '}, {'hex_value': '#DDB494', 'colour_name': 'Classic Buff '}, {'hex_value': '#E1BD9E', 'colour_name': 'Classic Ivory '}, {'hex_value': '#EEB895', 'colour_name': 'Creamy Natural '}, {'hex_value': '#F0C8A4', 'colour_name': 'Light Ivory '}, {'hex_value': '#ECB991', 'colour_name': 'Nude Beige '}, {'hex_value': '#E09E69', 'colour_name': 'Perfect Beige '}, {'hex_value': '#C5936D', 'colour_name': 'Suntan '}]"
+334,cargo cosmetics,Cargo Cosmetics OneBase for Face,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/04c6f1353fdaf82d48a9d3ecf0d619f4_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-onebase-for-face_87688.html,https://well.ca,"Many women don’t need foundation everywhere.
+OneBase™ allows you to cover areas around the eyes, nose and mouth to
+conceal imperfections. It then blends out perfectly to natural skin. Cargo's OneBase combines superior coverage and precision application in the ease of a
+sleek tube and wand combination. It is the perfect product for those who
+ do not want full-face foundation coverage – designed for natural
+coverage in key facial areas. Nourishing ingredients and conditioning
+properties provide moisture to the skin. Fragrance free and excellent
+for delicate, sensitive skin with essential essences that condition the
+skin and will not clog the pores.
+
+
+Features:
+Nourishing ingredients and conditioning properties provide moisture to the skinFragrance -free and excellent for delicate, sensitive skin Sold in a sleek, malleable metal tube with a touch wand that is both easy and practical ALL SKIN TYPESKey Ingredients: Vitamin E helps the skin to fight the damaging effects of the
+ environment and helps to moisturize the skin and repair minor damage
+found on the surface of the skinChamomile Extract is a natural essential essence that is
+ideal for dry and sensitive skin types. Its naturally soothing and
+relaxing properties make it an exceptional ingredient for skin care
+productsAvocado Extract is rich in natural vitamins that help to nourish the skinShade Range: Application: Using enclosed touch wand, dab OneBase to key areas of the face blend out with finger tipsUse under the eyes and on eyelids to brighten the eye area and prime the lids for shadowIf desired, OneBase can be used alone as a foundation replacement for
+ key facial areas, or under liquid foundation for full-face coverageIngredients: Water (Aqua), Cyclomethicone, Propylene Glycol, Talc, Triethanolamine,
+Polyglyceryl-3 Diisostearate, Dimethicone Copolyol, Sodium Chloride,
+Methylparaben, Methicone, Propylparaben, Tribehenin, Tocopheryl Acetate,
+ Anthemis Nobilis Flower Extract, Aloe Barbadensis Extract, Persea
+Gratissima (Avocado) Oil, Retinyl Palmitate, Glycosaminoglycans, Sodium
+Chondroitin Sulfate. May Contain (+/-): Titanium Dioxide (CI 77891),
+Iron Oxides (CI 77491, CI 77492, CI 77499), Carmine (CI 75470), Chromium
+ Oxide Green (CI 77288), Manganese Violet (CI 77742), Ultramarines (CI
+77007).",5.0,liquid,foundation,[],2016-10-01T18:31:49.838Z,2017-12-23T21:08:21.880Z,http://makeup-api.herokuapp.com/api/v1/products/334.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/334/original/data?1514063301,"[{'hex_value': '#E9BFA6', 'colour_name': '01 - Very fair with yellow undertone '}, {'hex_value': '#CEA98E', 'colour_name': '025 - Medium/Fair with neutral undertone '}, {'hex_value': '#D19478', 'colour_name': '03 - Medium/Fair with golden undertone '}, {'hex_value': '#A26C52', 'colour_name': '04 - Medium/Dark with yellow undertone '}, {'hex_value': '#C06F54', 'colour_name': '045 - Medium/Dark with goldenundertone '}, {'hex_value': '#975A3E', 'colour_name': '05 - Dark with neutral undertone '}]"
+333,physicians formula,Physicians Formula Youthful Wear Spotless Foundation,18.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/99d879544d3e44842f2437e17c9ef52a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-youthful-wear_90013.html,https://well.ca,"Physicians Formula Youthful Wear Spotless Foundation is the 1st-to-Market ultra-fluid foundation delivers skin-perfecting coverage, an incredible sensorial experience and a finish so natural, it looks invisible on the skin.The 35% silicone formula creates a revolutionary, weightless liquid veil texture, combining the best of both worlds: flawless, spotless coverage + the feeling you have no makeup on at all.With just one drop, skin is immediately brighter, smoother and more even!Hypoallergenic. Paraben-Free. Gluten Free. Dermatologist approved. Non-Comedogenic. Clinically Tested. ",4.7,liquid,foundation,['Gluten Free'],2016-10-01T18:31:47.887Z,2017-12-23T21:08:21.628Z,http://makeup-api.herokuapp.com/api/v1/products/333.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/333/original/data?1514063301,"[{'hex_value': '#F6C9A0', 'colour_name': 'Light (6223C) '}, {'hex_value': '#E4A788', 'colour_name': 'Medium (6224C) '}]"
+332,annabelle,Annabelle SkinTrue Foundation,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c1b6c4f04c4f2c43ec1331049e65c280_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/annabelle-skintrue-foundation_97867.html,https://well.ca,"
+ Truly flawless, natural-looking skin is what you can expect
+from Annabelle SkinTrue Foundation. Its oil-Free, soft and matte finish makes you feel
+ like you're wearing nothing at all, just beautiful skin. It blends
+easily to even out the skin tone yet feels extremely light and natural.
+Oil-Free. Shade Range: ",5.0,liquid,foundation,[],2016-10-01T18:31:46.533Z,2017-12-23T21:08:15.056Z,http://makeup-api.herokuapp.com/api/v1/products/332.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/332/original/open-uri20171223-4-1uhm6nz?1514063295,"[{'hex_value': '#e8c1aa', 'colour_name': 'Medium Beige '}, {'hex_value': '#f2d9c1', 'colour_name': 'Natural Ivory '}, {'hex_value': '#ac7a65', 'colour_name': 'Soft Tan '}, {'hex_value': '#b98c78', 'colour_name': 'Sun Beige '}, {'hex_value': '#dcab98', 'colour_name': 'True Beige '}]"
+331,almay,Almay Smart Shade Skintone Matching Makeup ,17.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/afcbd92c05ea8b6452eabc80e2b9d549_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-smart-shade-skintone-matching_92875.html,https://well.ca,"Almay Smart Shade™ makeup makes it easy to find “the one” with just three skintone-adjusting shades to choose from, not hundreds! It adjusts to the natural tones and nuances of your skin with breakthrough new Almay ToneMimic™ shade-sensing bead technology which intuitively transforms to your skintone for all day natural looking coverage in your perfect shade. Contains broad spectrum SPF 15. HYPOALLERGENIC. DERMATOLOGIST TESTED. MADE FOR SENSITIVE SKIN.Shade Range: ",4.5,liquid,foundation,[],2016-10-01T18:31:45.487Z,2017-12-23T21:08:15.319Z,http://makeup-api.herokuapp.com/api/v1/products/331.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/331/original/data?1514063295,"[{'hex_value': '#DFBA9C', 'colour_name': 'Light '}, {'hex_value': '#E5B598', 'colour_name': 'Light Medium '}, {'hex_value': '#CF9776', 'colour_name': 'Medium '}]"
+330,l'oreal,L'Oreal Visible Lift Serum Absolute,20.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/39be9facd53cf124ff38e9a25de09e10_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-visible-lift-serum-absolute_27672.html,https://well.ca,"Introducing a breakthrough in age minimizing makeup.Only Visible Lift Serum Absolute features an age reversing serum of 5 ingredients in 1 luminous makeup. This new makeup instantly evens skin tone with a luxuriously lightweight formula that doesn't settle into lines and wrinkles.In 4 weeks, the potent formula addresses 5 sighs of aging to visibly transform skin to smoother, firmer, brighter, even, flawless.5 proven results :
+
+45% more even skin tone
+72% saw more youthful skin
+75% reduction inf ine lines and wrinkles
+79% saw fewer imperfections
+90% saw smoother skin
+
+Finish : LuminousCoverage : MediumSkin Type : All skin types",4.3,liquid,foundation,[],2016-10-01T18:31:43.856Z,2017-12-23T21:08:13.827Z,http://makeup-api.herokuapp.com/api/v1/products/330.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/330/original/data?1514063293,"[{'hex_value': '#DFBDA2', 'colour_name': 'Classic Ivory '}, {'hex_value': '#C38961', 'colour_name': 'Honey Beige '}, {'hex_value': '#E3C7AA', 'colour_name': 'Light Ivory '}, {'hex_value': '#E5C5A3', 'colour_name': 'Soft Ivory '}]"
+329,almay,Almay Smart Shade Anti-Aging Skintone Matching Makeup,17.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/39ef46015c299f19fad898e6ce14f131_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-smart-shade-anti-aging_92874.html,https://well.ca,"Almay Smart Shade™ anti-aging makeup makes it easy to find “the one” with just three skintone-adjusting shades to choose from, not hundreds! It adjusts to the natural tones and nuances of your skin with breakthrough new Almay ToneMimic™ shade-sensing bead technology which intuitively transforms to your skintone for your perfect shade while helping to erase flaws and imperfections. 4 out of 5 women saw an instant reduction in the appearance of fine lines and wrinkles. Helps protect against sun damage with broad spectrum SPF 20. HYPOALLERGENIC. DERMATOLOGIST TESTED. MADE FOR SENSITIVE SKIN. Shade Range: ",4.2,liquid,foundation,[],2016-10-01T18:31:42.820Z,2017-12-23T21:08:13.695Z,http://makeup-api.herokuapp.com/api/v1/products/329.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/329/original/data?1514063293,"[{'hex_value': '#E3B591', 'colour_name': 'Light '}, {'hex_value': '#E3B08F', 'colour_name': 'Light Medium '}, {'hex_value': '#D89A75', 'colour_name': 'Medium '}]"
+328,almay,Almay Truly Lasting Color Makeup,17.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f080c72085d7746687375cdcfdf62a94_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-truly-lasting-color-makeup_6586.html,https://well.ca,"Longwear meets skincare.tlc truly lasting color makeup delivers up to 16 hours of flawless coverage that won't rub off - even in heat and humidity. Plus, it nourishes skin with antioxidant green tea to protect, vitamin E to help smooth and lemon extract to brighten... for all day, natural radiance. Now, that's tlc.hypoallergenic • oil-free • won't clog pores • dermatologist tested",4.5,liquid,foundation,[],2016-10-01T18:31:41.763Z,2017-12-23T21:08:21.518Z,http://makeup-api.herokuapp.com/api/v1/products/328.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/328/original/data?1514063301,"[{'hex_value': '#EBC2A6', 'colour_name': 'Ivory '}, {'hex_value': '#EBBE9F', 'colour_name': 'Naked '}, {'hex_value': '#E3B18E', 'colour_name': 'Beige '}]"
+327,covergirl,CoverGirl Outlast Stay Fabulous 3-in-1 Foundation ,12.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f047b24948adf8c9d5f6b795db107920_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-outlast-stay-fabulous_74021.html,https://well.ca,"CoverGirl Outlast Stay Fabulous 3-in-1 foundation is an all-in-one foundation with a long-lasting formula that fuses primer,
+concealer, and foundation in one easy step! The 3-in-1 formula provides a
+ flawless look that lasts all day long.Features: All day, longwear formulaPrimer, concealer, and foundation in oneSmooth, flawless finishFoundation + Sunscreen SPF 20",4.0,liquid,foundation,[],2016-10-01T18:31:40.657Z,2017-12-23T21:08:21.416Z,http://makeup-api.herokuapp.com/api/v1/products/327.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/327/original/data?1514063301,[]
+326,l'oreal,L'Oreal Paris True Match Lumi Healthy Luminous Foundation,20.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7d8276b94863d7cff212d0161b5c632e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-true-match-lumi_55277.html,https://well.ca,"Finally, makeup that creates skin so healthy - it's luminous.True Match Lumi Healthy Luminous Makeup combines 3 powerful ingredients that work to improve your complexion the more you wear them. 40% pure water for all-day hydration;Antioxidants and Vitamins C and E for improved clarity and skin tone and;Liquid Light Technology for an instant, luminous glowIsn't it time your met your match?Additional Features: SPF 20Lightweight, buildable coverage that lasts up to 8 hoursFor all skin typesSafe for sensitive skinNon-Comedogenic. Dermatologist tested. Allergy tested. ",5.0,liquid,foundation,[],2016-10-01T18:31:39.021Z,2017-12-23T21:08:21.316Z,http://makeup-api.herokuapp.com/api/v1/products/326.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/326/original/data?1514063301,"[{'hex_value': '#f6d6bc', 'colour_name': 'Porcelain/ Light Ivory '}, {'hex_value': '#f0d1b2', 'colour_name': 'Nude Beige '}, {'hex_value': '#cfa37d', 'colour_name': 'Natural Beige '}, {'hex_value': '#d4ad89', 'colour_name': 'Soft Ivory/ Classic Ivory '}, {'hex_value': '#e5bd99', 'colour_name': 'Natural Buff '}]"
+325,l'oreal,L'Oreal Paris Infallible Pro-Matte Foundation,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/268da4d7967fad9c153af24ee8d2e026_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-paris-infallible-pro-matte_102002.html,https://well.ca,"Longwear foundation without the compromise. Never masky, never cakey, never dull – Infallible Pro-Matte™ is L’Oréal’s next generation of longwearing makeup.The micro-sponge technology absorbs excess oil and shine to create a dimensional matte finish without the need for a heavy or caked-on look. Use a sponge to buff it out for a sheer and natural look or apply in layers for more complete coverage. ",4.3,liquid,foundation,[],2016-10-01T18:31:37.761Z,2017-12-23T21:08:21.089Z,http://makeup-api.herokuapp.com/api/v1/products/325.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/325/original/data?1514063301,"[{'hex_value': '#efcba7', 'colour_name': 'Classic Ivory '}, {'hex_value': '#e5ad8c', 'colour_name': 'Shell Beige '}, {'hex_value': '#e7b381', 'colour_name': 'Natural Beige '}, {'hex_value': '#eeb57e', 'colour_name': 'Golden Beige '}, {'hex_value': '#e2ab82', 'colour_name': 'Natural Buff '}, {'hex_value': '#daa273', 'colour_name': 'Sun Beige '}, {'hex_value': '#d29e6e', 'colour_name': 'Fresh Beige '}, {'hex_value': '#ac7f55', 'colour_name': 'Caramel Beige '}, {'hex_value': '#ba713e', 'colour_name': 'Soft Sable '}]"
+324,revlon,Revlon ColorStay Makeup for Normal / Dry Skin,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/197e268a36cdc0b05fc8758a2d959485_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-makeup-for-normal_3936.html,https://well.ca,"Revlon ColorStay Makeup provides longwearing coverage with a lightweight
+formula that won’t cake, fade, or rub off. With Time Release
+Technology, this oil-free, moisture-balance formula is especially
+formulated for normal or dry skin to continuously provide hydration.Features: Makeup feels comfortable and wears for up to 24 hours
+Medium to full coverage
+Comes in a range of beautiful shades
+
+ ",4.6,liquid,foundation,[],2016-10-01T18:31:36.448Z,2017-12-23T21:08:20.956Z,http://makeup-api.herokuapp.com/api/v1/products/324.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/324/original/data?1514063300,"[{'hex_value': '#F9C79F', 'colour_name': 'Buff '}, {'hex_value': '#F2BC94', 'colour_name': 'Sand Beige '}, {'hex_value': '#E9B39A', 'colour_name': 'Natural Beige '}, {'hex_value': '#D6A285', 'colour_name': 'True Beige '}]"
+323,dr. hauschka,Dr. Hauschka Foundation,39.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/965ec1b8b64ab44496aa44f6b4a1ea01_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dr-hauschka-foundation_103110.html,https://well.ca,"Dr. Hauschka Foundation features pomegranate essence, macadamia and coconut oil that preserve the moisture
+content of the skin and offer it protection. Available in five shades,
+the foundation does not cover the skin but instead balances out
+unevenness, giving the complexion a smooth, vibrant look.Features: Truly natural and/or organic cosmetics, certified to NATRUE and/or BDIH standardsFree from synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGVeganDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients: Water (Aqua), Alcohol, Simmondsia Chinensis (Jojoba) Seed Oil, Anthyllis Vulneraria Extract, Cocos Nucifera (Coconut) Oil, Caprylic/Capric Triglyceride, Glycerin, Cetearyl Alcohol, Punica Granatum Fruit Extract, Prunus Armeniaca (Apricot) Kernel Oil, Butyrospermum Parkii (Shea) Butter, Macadamia Ternifolia Seed Oil, Daucus Carota Sativa (Carrot) Root Extract, Euphorbia Cerifera (Candelilla) Wax, Fragrance (Parfum), Limonene*, Linalool*, Geraniol*, Citronellol*, Benzyl Benzoate*, Benzyl Salicylate*, Farnesol*, Coumarin*, Citral*, Eugenol*, Benzyl Alcohol*, Bentonite, Xanthan Gum, Sodium Cetearyl Sulfate, Silica. [May contain (+/-) Mica, Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007)].*from natural essential oils ",4.7,liquid,foundation,"['Vegan', 'Natural']",2016-10-01T18:31:34.008Z,2017-12-23T21:08:20.854Z,http://makeup-api.herokuapp.com/api/v1/products/323.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/323/original/data?1514063300,"[{'hex_value': '#eac9a6', 'colour_name': '01 Macadamia '}, {'hex_value': '#dab394', 'colour_name': '02 Almond '}, {'hex_value': '#d1ae9b', 'colour_name': '03 Chestnut '}, {'hex_value': '#deb386', 'colour_name': '04 Hazelnut '}, {'hex_value': '#ca9576', 'colour_name': '05 Nutmeg '}]"
+322,e.l.f.,e.l.f. Studio Flawless Finish Foundation,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f930f8fcd14f31ce1700faf24c4606f5_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-flawless-finish_93427.html,https://well.ca,"Achieve a flawless complexion with the silky smooth e.l.f. Studio
+Flawless Finish Foundation. The lightweight and oil-free formula blends
+in naturally for a beautiful semi-matte finish. This liquid foundation
+applies easily and lasts all day for visibly brighter and radiant
+looking skin. Using e.l.f.'s Flawless Finish Foundation not only restores
+uneven skin textures and tones, but most importantly, the SPF 15
+protects your skin against harmful sun damage!Shade Range:
+
+
+ ACTIVE INGREDIENTS: Octyl Salicylate 2%, Titanium Dioxide 5.5% INACTIVE INGREDIENTS:
+ Water (Aqua), Cyclopentasiloxane, Isododecane, Hydrogenated
+Polyisobutene, Cetyl PEG/PPG-10/1 Dimethicone, Polyglyceryl-4
+Isostearate, Polymethyl Methacrylate, Sorbitan Sesquiisostearate,
+Butylene Glycol, Talc, Dimethicone, Disteardimonium Hectorite, Magnesium
+ Sulfate, Glycerin, Phenoxyethanol, Synthetic Beeswax, Potassium
+Sorbate, Propylene Carbonate, Boron Nitride, Barium Sulfate, Caprylyl
+Glycol
+May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499)
+
+
+ ",4.0,liquid,foundation,['Vegan'],2016-10-01T18:31:32.515Z,2017-12-23T21:08:20.732Z,http://makeup-api.herokuapp.com/api/v1/products/322.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/322/original/data?1514063300,"[{'hex_value': '#F1C6A3', 'colour_name': 'Porecelain '}, {'hex_value': '#E7B88E', 'colour_name': 'Sand '}]"
+321,maybelline,Maybelline Dream Liquid Mousse,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1ca6a4a442b9aa6b5f3d94da77d8846c_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-dream-liquid-mousse_12303.html,https://well.ca,"Airbrushed perfection made possible:Air-whipped liquid makeup for 100% poreless skin
+
+Breakthrough finish cushions and smooths for the most flawless, luminous coverage
+Lightweight air-whipped formula blends to virtually eliminate pores and imperfections
+Innovative shade-match pump makes finding your perfect shade a dream
+",4.4,liquid,foundation,[],2016-10-01T18:31:31.590Z,2017-12-23T21:08:12.680Z,http://makeup-api.herokuapp.com/api/v1/products/321.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/321/original/open-uri20171223-4-4z6wpb?1514063292,"[{'hex_value': '#FFD59E', 'colour_name': 'Classic Ivory (Light 2) '}, {'hex_value': '#CB9E6C', 'colour_name': 'Natural Beige (Medium 2.5) '}, {'hex_value': '#FFD9A6', 'colour_name': 'Natural Ivory (Light 3) '}, {'hex_value': '#FBD8AA', 'colour_name': 'Porcelain Ivory (Light 1) '}, {'hex_value': '#CE9E88', 'colour_name': 'Pure Beige (Medium 2) '}]"
+320,maybelline,Maybelline FIT ME! Matte + Poreless Foundation,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/257993e12625cc45a72ec03636ffa5c5_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/maybelline-fit-me-matte-poreless_100974.html,https://well.ca,"Maybelline FIT ME! Matte + Poreless Foundation goes beyond skin tone
+ matching to fit the unique texture issues of normal to oily skin for
+the ultimate natural skin fit.
+
+While some foundations can exaggerate pores and oily skin, only Maybelline's
+pore-minimizing foundation contains their genius blurring micro-powders
+that erase pores and absorb oil for a naturally matte and
+poreless-looking finish.Dermatologist and allergy tested. Does not clog pores. Oil-free.
+
+
+",4.4,liquid,foundation,[],2016-10-01T18:31:30.291Z,2017-12-23T21:08:12.553Z,http://makeup-api.herokuapp.com/api/v1/products/320.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/320/original/data?1514063292,"[{'hex_value': '#fadbc7', 'colour_name': 'Porcelain '}, {'hex_value': '#f1c7b1', 'colour_name': 'Natural Ivory '}, {'hex_value': '#e8b89b', 'colour_name': 'Ivory '}, {'hex_value': '#e6ba9f', 'colour_name': 'Classic Ivory '}, {'hex_value': '#e5b495', 'colour_name': 'Nude Beige '}, {'hex_value': '#e2ae8e', 'colour_name': 'Buff Beige '}, {'hex_value': '#dead87', 'colour_name': 'Natural Beige '}, {'hex_value': '#dfa585', 'colour_name': 'Pure Beige '}, {'hex_value': '#d9a37f', 'colour_name': 'Sun Beige '}, {'hex_value': '#bc855f', 'colour_name': 'Toffee '}, {'hex_value': '#b37750', 'colour_name': 'Coconut '}]"
+319,revlon,Revlon ColorStay Makeup for Combination / Oily Skin,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/844f8a41bfd962e75295db3b75ad3167_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-makeup-for_3937.html,https://well.ca,"Revlon ColorStay Makeup provides longwearing coverage with a lightweight
+formula that won’t cake, fade, or rub off. With Time Release Technology
+ specifically formulated for combination or oily skin to control oil
+absorption and shine. Your look stays flawless throughout the day. Features: Makeup feels comfortable and wears up to 24 hours.Medium to full coverage.Comes in a great range of beautiful shades.
+",3.8,liquid,foundation,[],2016-10-01T18:31:28.181Z,2017-12-23T21:08:20.629Z,http://makeup-api.herokuapp.com/api/v1/products/319.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/319/original/data?1514063300,"[{'hex_value': '#FACAAA', 'colour_name': 'Ivory '}, {'hex_value': '#F9C79F', 'colour_name': 'Buff '}, {'hex_value': '#D6A285', 'colour_name': 'True Beige '}]"
+318,l'oreal,L'Oreal Paris True Match Super Blendable Makeup ,18.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c71a2c6a4f7d41ceb60f068780bcfba5_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-true-match-super_4385.html,https://well.ca,"True Match Super-Blendable Makeup precisely matches your skin’s tone
+and texture and coordinates perfectly with True Match Powder, Blush and
+Concealer. Formulated with Precise Match Technology so you can control
+coverage and fine-tune it.The ultra-pure formula contains no oils,
+fragrances, or pore-clogging fillers, so all you see is beautiful,
+radiant, flawless skin.
+Features:Finish: NaturalCoverage: Light to mediumSkin Type: For all skin types",4.1,liquid,foundation,[],2016-10-01T18:31:27.115Z,2017-12-23T21:08:20.531Z,http://makeup-api.herokuapp.com/api/v1/products/318.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/318/original/data?1514063300,"[{'hex_value': '#FEDABC', 'colour_name': 'C1 Alabaster '}, {'hex_value': '#A96E40', 'colour_name': 'C6 Soft Sable '}, {'hex_value': '#A27651', 'colour_name': 'C7 Nut Brown '}, {'hex_value': '#E4BA8B', 'colour_name': 'N3 Natural Buff '}, {'hex_value': '#C89F7B', 'colour_name': 'N5 True Beige '}, {'hex_value': '#FFE8CC', 'colour_name': 'W1 Porcelain '}, {'hex_value': '#FEDFBF', 'colour_name': 'W2 Light Ivory '}, {'hex_value': '#E5BF9E', 'colour_name': 'W3 Nude Beige '}, {'hex_value': '#DAB68D', 'colour_name': 'W5 Sand Beige '}, {'hex_value': '#B07E59', 'colour_name': 'W8 Creme Cafe '}]"
+317,maybelline,Maybelline Fit Me Foundation with SPF,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/eccb88d484b8c929fd349b0995a5dba2_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-fit-me-foundation-with_31187.html,https://well.ca,"It’s face makeup that fits you!Features: No oils, no waxes, no nonsenseNatural, Light to medium coverage that leaves skin the way it was meant to be. Fresh, breathing, flawless.Exclusive transluscent base and lightweight pigments allow skin’s natural highs and lows to show through.New shades formulated specifically for women of color contain
+revolutionary 5-D pigment technology to balance your skin’s authentic
+tones and highlights.SPF 18",3.8,liquid,foundation,[],2016-10-01T18:31:25.764Z,2017-12-23T21:08:20.342Z,http://makeup-api.herokuapp.com/api/v1/products/317.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/317/original/open-uri20171223-4-13jpajg?1514063300,"[{'hex_value': '#F7C2A5', 'colour_name': 'Ivory (115) '}, {'hex_value': '#EFC1A0', 'colour_name': 'Classic Ivory (120) '}, {'hex_value': '#E6B18F', 'colour_name': 'Nude Beige (125) '}, {'hex_value': '#CE996F', 'colour_name': 'Natural Beige (220) '}]"
+316,pure anada,Pure Anada Smooth & Conceal Liquid Foundation,25.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/066dd839fc77495347ecfe44a4636e57_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/pure-anada-smooth-conceal-liquid_97726.html,https://well.ca,"Smooth and conceal fine lines and imperfections with this
+moisturizing, full coverage formula from Pure Anada. A non-greasy texture with the
+skin-loving benefits of virgin, organic coconut oil. Infused with Argan
+ & Sea Buckthorn, this truly is superfood for your skin!
+Apply directly to clean, moisturized skin, making sure to blend well.
+For less coverage, you may mix the foundation with your favorite moisturizer.Shade Range: Arctic Alabaster - A porcelain shade of foundation for the very lightest of skin tones. A white shade of foundation slight pink undertones, Arctic Alabaster is perfect for people who can never find a foundation light enough for their complexion.Beige in Banff - This is a medium shade of foundation for a lady who has a deep pink complexion. It also blends well on tanned Caucasian skin with beige, (as opposed to gold) undertones.Prairie Rose - This is a cool beige shade in the light range. It suites the fair complexion that has obvious pink undertones.Atlantic Bisque - A popular fair shade of foundation due to its balanced beige undertones.Sunkissed Canadian - This shade is perfect for a fair complexion with a bit of a ""pink"" tan! It has warm rose, rather than gold undertones. Our most popular shade!Pacific Tan - A neutral shade that exudes more bronze than golden tones for women with tanned complexions.Ivory Chinook - This is a warm neutral shade that looks very natural on a variety of light skin types. It helps tone down redness and even skin tone. Soft Wheat - This is a warm neutral shade that is darker than Ivory Chinook. Its warm undertones help tone down redness and even skin tone.Amber Honey - This foundation suits Caucasian women with very dark, golden tanned skin. Because of it's high concentration of yellow pigment, it can also be worn by certain ethnic groups.Flaxen Field - A cool, olive shade of foundation for light to medium skin tones. It is perfect for people who find other shades too ""orange"". Suitable for some Asian complexions.Niagara Fawn - A cool olive shade of foundation for medium to deep skin tones. For deep olive, tanned complexions and many other ethnicities.Cappuccino - A deep, warm olive foundation.Swiss Chocolate - A neutral chocolate brown that suits many deep skin tonesEbony - A deep brown/black shade of foundation for the darkest of skin tones.Ingredients: Water (Aqua), Caprylic / Capric
+Triglyceride, (Derived from Coconut), Cetearyl Olivate, Sorbitan
+Olivate, Simmondsia Chinensis (Organic Jojoba) Seed Oil, Cocos Nucifera
+(Virgin Organic Coconut Oil), Ricinus Communis (Castor Seed Oil),
+Argania Spinosa (Argan Oil), Hippophae Rhamnoides (Sea Buckthorn), Cetyl
+ Alcohol, Mica, Titanium Dioxide, Zinc Oxide, Iron Oxides, Ultramarines,
+ Sorbitol, Leuconostoc/Radish Root Ferment Filtrate",4.1,liquid,foundation,"['Canadian', 'Natural']",2016-10-01T18:31:22.885Z,2017-12-23T21:08:20.219Z,http://makeup-api.herokuapp.com/api/v1/products/316.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/316/original/data?1514063300,"[{'hex_value': '#fde8ba', 'colour_name': 'Arctic Alabaster '}, {'hex_value': '#f9b982', 'colour_name': 'Beige in Banff '}, {'hex_value': '#f6c9a0', 'colour_name': 'Prairie Rose '}, {'hex_value': '#fcd48f', 'colour_name': 'Atlantic Bisque '}, {'hex_value': '#fabd68', 'colour_name': 'Sunkissed Canadian '}, {'hex_value': '#ecaf54', 'colour_name': 'Pacific Tan '}, {'hex_value': '#f2bd6f', 'colour_name': 'Soft Wheat '}, {'hex_value': '#e0a32d', 'colour_name': 'Amber Honey '}, {'hex_value': '#f0d781', 'colour_name': 'Flaxen Field '}, {'hex_value': '#dca240', 'colour_name': 'Niagara Fawn '}, {'hex_value': '#ef9a30', 'colour_name': 'Cappuccino '}, {'hex_value': '#bc6f36', 'colour_name': 'Swiss Chocolate '}, {'hex_value': '#96442e', 'colour_name': 'Ebony '}]"
+315,e.l.f.,e.l.f. Studio Tinted Moisturizer,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fa4c4e189875760b7d75f327706096f9_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-tinted-moisturizer_93466.html?cat=580,https://well.ca,"Achieve even skin tone
+and naturally radiant skin with this moisturizing sheer tint of color.
+The smooth formula enhances your complexion with the nourishing key
+ingredients Aloe, Cucumber and Vitamins A, C & E.Shades:
+
+
+ ACTIVE: Benzophenone-3, Ethylhexyl Isopalmitate, Titanium Dioxide.
+INACTIVE: Water, Mineral Oil, Cyclomethicone, C12-15 Alkyl Benzoate,
+Propylene Glycol, Dimethicone, Steareth-21 Cetearyl Alcohol,
+Ceteareth-2, Glyceryl Stearate, Xanthan Gum, Methylparaben,
+Propylparabem, Tocopherol(VE), Retinyl Acetate(VA), Ascorbyk
+Palmitate(VC), Aloe Barbadensis (Aloe Vera) Leaf Juice, Cucumis Sativus
+(Cucumber) Fruit Extract, MAY CONTAIN: Iron Oxides (CI 77491, CI 77492,
+CI 77499), Titanium Dioxide (CI 77891)
+
+ ",3.8,liquid,foundation,['Vegan'],2016-10-01T18:31:21.140Z,2017-12-23T21:08:20.082Z,http://makeup-api.herokuapp.com/api/v1/products/315.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/315/original/data?1514063300,"[{'hex_value': '#EFC698', 'colour_name': 'Porecelain '}, {'hex_value': '#EBB579', 'colour_name': 'Nude '}, {'hex_value': '#D99A67', 'colour_name': 'Beige '}]"
+314,almay,Almay Intense i-Color Everyday Neutrals for Blue Eyes,10.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d9b88855df583049fa9f995c88781338_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/almay-intense-i-color-everyday_106741.html,https://well.ca,"Almay Intense i-Color Everyday Neutrals are expertly coordinated palettes to make your eyes look brighter, bolder and more beautiful.Features:Perfectly enhances your eye color for every occasionEye-shaped palette allows for easy applicationCrease-resistant for all-day wearOphthalmologist testedSuitable for sensitive eyesHow to Apply:Apply bottom shade all over lidBlend the center shade into the creaseSweep top shade on to brow bone to highlight",4.0,,eyeshadow,[],2016-10-01T18:31:17.370Z,2017-12-23T21:08:19.750Z,http://makeup-api.herokuapp.com/api/v1/products/314.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/314/original/open-uri20171223-4-4yyqp7?1514063299,[]
+313,covergirl,CoverGirl Trunaked Eyeshadow Palettes in Roses,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e8be715d17f0bcc25ffe81f4286ffac0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trunaked-eyeshadow_112732.html,https://well.ca,"CoverGirl Trunaked Eyeshadow Palettes feature universally flattering, neutral shades that are made to be blended together, so you can mix and match colors and always look flawless. Features:Each eye shadow palette comes with 8 shadesEach shade is highly pigmentedEndless possibilities for neutral daytime to dramatic nighttime looks",5.0,palette,eyeshadow,[],2016-10-01T18:31:16.086Z,2017-12-26T00:33:00.382Z,http://makeup-api.herokuapp.com/api/v1/products/313.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/313/original/open-uri20171223-4-kfj90h?1514063299,[]
+312,e.l.f.,e.l.f. Studio Baked Eyeshadow Trio ,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/302303dd9945c08bc0334544602599be_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-baked-eyeshadow-trio_99357.html,https://well.ca,"Three gorgeously coordinated colors come together to create a stunning
+look. Baked in an oven, these eyeshadows offer rich pigmentation for a
+beautiful effect. Infused with active key ingredients Jojoba, Rose,
+Sunflower, Apricot and Grape to nourish and hydrate the skin. The
+long-lasting and shimmering color can be worn wet for a vibrant effect
+or dry for sheer pigmentation, offering a variety of gorgeous eye looks!Ingredients: Mica, Talc, Bismuth Oxychloride,
+Ethylhexyl Palmitate, Paraffinum Liquidum (mineral oil), Dimethicone,
+Magnesium Aluminum Silicate, Tocopheryl Acetate, Simmondsia Chinensis
+(Jojoba) Seed Oil, Rosa Canina (Rose Hip) Fruit Oil, Helianthus Annuus
+(Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Vitis
+Vinifera (Grape) Seed Oil, Phenoxyethanol, Methylparaben. May Contain:
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491 , CI 77492 , CI
+77499), Ultramarine Violet (CI 77077), Manganese Violet (CI 77742),
+Ferric Ferrocyanide (CI 77510), Tin Oxide (CI 77861), Yellow No.5 Lake
+(CI 19140), Red No.40 Lake (CI 16035), Blue No.1 Lake (CI 42090). ",,,eyeshadow,['Vegan'],2016-10-01T18:31:15.060Z,2017-12-23T21:08:19.458Z,http://makeup-api.herokuapp.com/api/v1/products/312.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/312/original/data?1514063299,"[{'hex_value': '#A28D95', 'colour_name': 'color 1'}, {'hex_value': '#96789F', 'colour_name': 'color 2'}, {'hex_value': '#3B333D', 'colour_name': 'color 3'}]"
+311,l'oreal,L'Oreal Colour Riche La Palette Nude in Nude 02,29.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d6bf791aee472d5cc9d402a4227b10b8_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-colour-riche-la-palette-nude_104229.html,https://well.ca,"Inspired by makeup designers 'Must Have' palettes, the L'Oreal La Palette Nude
+offers everything you need to master the art of nude eyeshadow. Get Makeup
+Designer Nude looks curated exclusively for each palette with step by
+step instructions and live tutorials!Features: 10 highly pigmented shades range
+from light to dark to flatter every skin tone in 3 shadow finishes:
+shimmery satin, buttery matte & lustrous sheenEye-designer brush & mirror for effortless application
+
+
+ ",4.0,palette,eyeshadow,[],2016-10-01T18:31:13.635Z,2017-12-26T00:33:00.349Z,http://makeup-api.herokuapp.com/api/v1/products/311.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/311/original/data?1514063299,[]
+310,dr. hauschka,Dr. Hauschka Eye Shadow ,22.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0a001646e27fecf93ffd46d731ae0d1f_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dr-hauschka-eye-shadow_34273.html,https://well.ca,Dr. Hauschka Eyeshadow Solos incorporate the finest mineral pigments with real silk to create make-up that is kind to the delicate skin on your eyes. Nine gentle tones enhance the natural beauty of your eyes. Added medicinal plant extracts nurture the sensitive skin around your eyes for added radiance and shine.,5.0,,eyeshadow,['Natural'],2016-10-01T18:31:04.883Z,2017-12-23T21:08:18.676Z,http://makeup-api.herokuapp.com/api/v1/products/310.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/310/original/data?1514063298,"[{'hex_value': '#F8DEEB', 'colour_name': 'Delicate Rose 08 '}, {'hex_value': '#F8C4AA', 'colour_name': 'Golden Earth 02 '}, {'hex_value': '#F7DBB6', 'colour_name': 'Golden Sand 01 '}, {'hex_value': '#F9E6D7', 'colour_name': 'Ivory 09 '}, {'hex_value': '#B8A3C2', 'colour_name': 'Lilac 07 '}, {'hex_value': '#FBCAAA', 'colour_name': 'Peach Blossom 03 '}, {'hex_value': '#BBAF9F', 'colour_name': 'Shady Green 06 '}, {'hex_value': '#A1B4C5', 'colour_name': 'Smoky Blue 05 '}, {'hex_value': '#AB9695', 'colour_name': 'Taupe 04 '}]"
+309,maybelline,Maybelline Expert Wear Eye Shadow Quad ,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c924006882e8e313d445a3a5394e4729_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-expert-wear-eye-shadow_79611.html,https://well.ca,"Easy to use, lots to choose!Maybelline Expert Wear Eye Shadow
+Quads have 4 coordinating shades with step by step application guide
+makes shadow easier than ever. The eyeshadows glide on effortlessly with
+ superior smoothness and the velvet-tip applicator blends without
+tugging or pulling. Safe for sensitive eyes and contact lens wearers,
+ophthalmologist-tested.For best results sweep the brush 4 times:Apply base color. Sweep shade on lid. Contour crease and blend. Line around eye. ",4.0,,eyeshadow,[],2016-10-01T18:31:00.847Z,2017-12-23T21:08:19.919Z,http://makeup-api.herokuapp.com/api/v1/products/309.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/309/original/open-uri20171223-4-1mmpy02?1514063299,[]
+308,sante,Sante Eyeshadow Trio,24.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a7bde92c185b56ec210838dea41d9bec_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/sante-eyeshadow-trio_51611.html,https://well.ca,"Sante Eyeshadow Trios each have three complementary shades for your lid,
+ crease and highlight. Plus they are formulated with organic jojoba and
+chamomile. Vegan and gluten-free. Not
+tested on animals.
+
+
+
+
+
+ ",5.0,,eyeshadow,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:30:59.801Z,2017-12-23T21:08:19.026Z,http://makeup-api.herokuapp.com/api/v1/products/308.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/308/original/data?1514063298,"[{'hex_value': '#C3B098', 'colour_name': 'color 1'}, {'hex_value': '#908F7D', 'colour_name': 'color 2'}, {'hex_value': '#534C42', 'colour_name': 'color 3'}]"
+307,maybelline,Maybelline Eyestudio Color Tattoo Concentrated Crayon,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3f9f894b56e0616e44c5ee01dea45217_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eyestudio-color-tattoo_114535.html,https://well.ca,"Maybelline Eyestudio Color Tattoo Concentrated Crayons give you high-intensity color that looks vibrant all-day long.Features:Smooth, soft creamy finishPlayful intense colorsAll day tattoo tenacity. Playful color intensity. In an easy glide on crayon.",3.0,,eyeshadow,[],2016-10-01T18:30:58.610Z,2017-12-23T21:08:18.441Z,http://makeup-api.herokuapp.com/api/v1/products/307.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/307/original/open-uri20171223-4-5xfc8v?1514063298,"[{'hex_value': '#515552', 'colour_name': 'Audacious Asphalt '}, {'hex_value': '#D8BFAC', 'colour_name': 'Barely Beige '}, {'hex_value': '#B89A89', 'colour_name': 'Bronze Truffle '}, {'hex_value': '#706A70', 'colour_name': 'Charcoal Chrome '}, {'hex_value': '#5C3B27', 'colour_name': 'Creamy Chocolate '}, {'hex_value': '#DDBA89', 'colour_name': 'Gold Rush '}, {'hex_value': '#8E8C86', 'colour_name': 'Grey Crystal '}, {'hex_value': '#7D6F7D', 'colour_name': 'Lavish Lavender '}, {'hex_value': '#957B83', 'colour_name': 'Lilac Lust '}, {'hex_value': '#E5AEB9', 'colour_name': 'Pink Parfait '}]"
+306,physicians formula,Physicians Formula Shimmer Strips Extreme Shimmer Shadow & Liner Palette ,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cefc37500e17a39af22b2be42ac00abf_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-shimmer-strips_102731.html,https://well.ca,"This Physicians Formula Shimmer Strips Extreme Shimmer Shadow & Liner Palette gives you 6 shades to enhance and illuminate your eyes for the perfect look!Features: Wet & Dry application for 2 finishesLong wearing, blendable formula for up to 24hr wearHypoallergenicParaben & gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearerDirections: Sweep medium shade over lid as base. Apply darkest shade to upper and lower lash line with pointed tip of applicator to line eyes. For added definition, apply darkest shade in the contour of upper eyelid. To intensify color wet applicator, use lightest shade to highlight brow bone.Ingredients: Mica, Bis-Diglyceryl Polyacyladipate-2, Calcium Aluminum Borosilicate, Caprylic/Capric Triglyceride, Diisostearyl Malate, Silica, Talc, Phenyl Trimethicone, Calcium Sodium Borosilicate, Dimethicone, Boron Nitride, Caprylyl Glycol, Dimethicone/Vinyl Dimethicone Crosspolymer, Ethylhexylglycerin, Magnesium Stearate, Nylon-12, Sodium Dehydroacetate, Synthetic Fluorphlogopite, Tin Oxide, VP/Hexadecene Copolymer. May Contain/Peut Contenir: Iron Oxides, Manganese Violet, Titanium Dioxide.",4.5,palette,eyeshadow,['Gluten Free'],2016-10-01T18:30:54.598Z,2017-12-26T00:33:00.796Z,http://makeup-api.herokuapp.com/api/v1/products/306.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/306/original/data?1514063298,[]
+305,wet n wild,Wet n Wild Color Icon Eyeshadow Trio ,4.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/07ea2b4f18a9b6e9d174352220462bd8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/wet-n-wild-color-icon-eyeshadow-trio_89761.html,https://well.ca,"This coordinating trio of shades takes the guesswork out of creating the perfect
+eye look. These ""how to"" palettes are created to highlight, define, and accentuate specific eye colors to create unique looks.",5.0,,eyeshadow,[],2016-10-01T18:30:53.725Z,2017-12-23T21:08:17.940Z,http://makeup-api.herokuapp.com/api/v1/products/305.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/305/original/data?1514063297,[]
+304,e.l.f.,e.l.f. Essential Little Black Beauty Book Eye Edition,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/19b83ad09d00473a3258b74f69dfbb20_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-essential-little-black-beauty_93244.html,https://well.ca,"This convenient 48-piece makeup collection for your eyes allows you to
+have your Little Black Beauty Book readily available anytime, anywhere!
+Keep the Beauty Book in your purse, at home or in the office so you can
+be your own makeup artist whenever, wherever. This full assortment of 48
+ eyeshadow colors allows you to create a look that reflects your
+personal style for any occasion. The small, sleek design is great for
+on-the-go beauty touch ups. Each book includes: 48 gorgeous eyeshadow
+shades, a built-in mirror, and 1 dual-ended applicator.Ingredients: Talc, Mica, Zinc Stearate, Kaolin,
+ Paraffinium Liquidum(Mineral Oil), Petrolatum, Bis-Diglyceryl
+Polyacyladipate-2, Methylparaben, Propylparaben. May Contain: Iron
+Oxides (CI 77491 , CI 77492 , CI 77499), Manganese Violet (CI 77742),
+Mica (CI 77019), Titanium Dioxide (CI 77891), Yellow No.5 Lake (CI
+19140), Red No.40 Lake (CI 16035), Ultramarine Violet (CI 77077), Blue
+No.1 Lake (CI 42090)
+
+ ",4.0,palette,eyeshadow,['Vegan'],2016-10-01T18:30:52.760Z,2017-12-26T00:37:41.618Z,http://makeup-api.herokuapp.com/api/v1/products/304.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/304/original/data?1514063297,[]
+303,milani,Milani Everyday Eyes Powder Eyeshadow Collection,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8a7832489e0792cb0a1e4d4d24bf3efd_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/milani-everyday-eyes-powder_117798.html,https://well.ca,"With Milani Everyday Eyes Powder Eyeshadow Collection you can contour,
+color and create endless looks with a first-of-its-kind eye contouring
+and highlighting collection. Each Everyday Eyes eyeshadow palette comes
+ with six richly pigmented shades and a step-by-step guide for
+professional-looking results. Each shade is expertly coordinated to work
+ well in any order to create brilliantly beautiful, one-of-a-kind
+styles. Dual-ended, pro-artistry brush included. Application: Step 1:HIGHLIGHT-Sweep BASE color across lid from lash line to brow boneStep 2:CONTOUR-Apply CONTOUR shade under the brow bone, blending from inner to outer cornerStep 3:COLOR-Tap LID color onto center of lid, blending wellStep 4:DEPTH-Apply CREASE color to outer corner blending through creaseStep 5:BRIGHTEN-Tap SPECIALTY shade lightly on inner corner of eyeStep 6:DEFINE-Apply LINER color close to upper and lower lash lines Ingredients: Mica
+ (CI 77019), Talc, Cetearyl Isononanoate, Dimethicone, Boron Nitride,
+Zinc Stearate, Sodium Dehydroacetate, Phenoxyethanol, Sorbic Acid, Tin
+Oxide, Ethylene/Acrylic Acid Copolymer, Poloxamer 338, Silica. +/- May
+Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492,
+CI 77499).",5.0,,eyeshadow,[],2016-10-01T18:30:51.834Z,2017-12-23T21:08:17.744Z,http://makeup-api.herokuapp.com/api/v1/products/303.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/303/original/data?1514063297,[]
+302,almay,Almay Intense i-Color Liquid Shadow + Color Primer,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/757cf4197fe84ed9c1e2c21ed63d1be3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-intense-i-color-liquid-shadow_84473.html,https://well.ca,"One innovative product, two ways to double the impact of your unique eye
+color! Simply smooth the silky, weightless liquid over lids for a
+shimmering splash of eye-enhancing color, or top with powder shadow for
+an even bolder, longer lasting look. Either way, feel confident knowing
+that the built-in primer ensures that the multi-dimensional finish won’t
+ crease, fade, or smudge all day!How to Use: Apply to the inner corner of the lid and blend outwards using fingers.
+Apply more for a bolder pop of color, or layer under your favorite
+intense i-color shadow kit for an even more intense look.
+ ",4.5,,eyeshadow,[],2016-10-01T18:30:49.268Z,2017-12-23T21:08:17.477Z,http://makeup-api.herokuapp.com/api/v1/products/302.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/302/original/data?1514063297,"[{'hex_value': '#A68B7D', 'colour_name': ' Nude for green eyes '}, {'hex_value': '#997E8D', 'colour_name': 'Amethyst for brown eyes '}, {'hex_value': '#83795B', 'colour_name': 'Khaki for hazel eyes '}]"
+301,physicians formula,Physicians Formula Shimmer Strips Custom Shadow & Liner ,15.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9cd3466b7ce77448e4fd11338f0d7f20_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_70957.html,https://well.ca,"Physicians Formula Shimmer Strips Custom Shadow & Liner Nude
+Collection: Classic Nude is a modern and versatile palette for nude
+shades. Modern, ""greige"" shades create a nude look with a classic, cool appeal.
+ Wet & Dry application for two finishes: wet for dramatic, intense
+color with ultra long-lasting wear. Transforms shadow into a liner. Dry
+for a softer result.Directions: To Create the Classic Nude Eye: Sweep medium shade over lid as base. Apply darkest shade to upper & lower lash line with pointed tip
+of applicator to line eyes. For added definition, apply darkest shade
+in the contour of upper eyelid. To intensify color, wet applicator.Use lightest shade to highlight brow bone.Ingredients: Mica, Polybutene, Ethylhexyl Palmitate, Butyrospermum Parkii (Shea) Oil,
+ Pentaerythrityl Tetraisostearate, Synthetic Wax, Silica, Dimethicone,
+Lauroyl Lysine, Beeswax, Dimethicone/Methicone Copolymer,
+Ethylhexylglycerin, Kaolin, Tocopheryl Acetate, Phenoxyethanol May
+Contain: Carmine, Ferric Ferrocyanide, Iron Oxides, Manganese Violet,
+Synthetic Fluorphlogopite, Tin Oxide, Titanium Dioxide, Ultramarines,
+Blue 1 Lake, Red 40, Yellow 5 LakeHypoallergenic. Fragrance-free. Paraben-Free. Gluten Free.
+Dermatologist approved. Safe for sensitive eyes and contact lens
+wearers.",5.0,,eyeshadow,['Gluten Free'],2016-10-01T18:30:47.875Z,2017-12-23T21:08:17.334Z,http://makeup-api.herokuapp.com/api/v1/products/301.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/301/original/data?1514063297,[]
+300,covergirl,CoverGirl Eye Enhancers 1-Kit Shadow ,4.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e1e4b13a264fe9a7cbccaea373c24d9d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-eye-enhancers-1-kit-shadow_74146.html,https://well.ca,"A simple, single shade with an advanced, stay-put formula!Mix and match
+all the CoverGirl Eye Enhancers 1-Kit Shadows the way you want to create your own combos with matte, pearly or
+sparkly shades! They blend easily to let the natural beauty of your eyes
+ come through.",5.0,,eyeshadow,[],2016-10-01T18:30:47.070Z,2017-12-23T21:08:18.280Z,http://makeup-api.herokuapp.com/api/v1/products/300.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/300/original/data?1514063298,[]
+299,covergirl,CoverGirl Eye Enhancers 3-Kit Shadows ,6.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e48da5acde28bd3b1bcc2bff5b9d4a56_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-eye-enhancers-3-kit_59872.html,https://well.ca,"This collection of great shades is handpicked by CoverGirl's makeup pros and
+designed to make your eye look go from day to night. They blend
+effortlessly to bring your eyes out beautifully, without overshadowing.
+Experiment using them together or as single shades.Features:Matte, pearl, and sparkle shadesHandpicked by CoverGirl's makeup pros to make your eye look go from day to nightBlends easily without overshadowingTips for Use:
+
+
+
+
+
+ Dust the most neutral shadow in your 3-Kit palette from your lash line to brow line. Blend the second-darkest shade along the crease of your eyes. Run the darkest shade along your upper and lower lash lines. Finish the look with two coats of mascara.
+
+
+
+ ",4.0,,eyeshadow,[],2016-10-01T18:30:45.878Z,2017-12-23T21:08:17.105Z,http://makeup-api.herokuapp.com/api/v1/products/299.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/299/original/data?1514063297,"[{'hex_value': '#696B73', 'colour_name': 'color 1'}, {'hex_value': '#CFC8CB', 'colour_name': 'color 2'}, {'hex_value': '#918081', 'colour_name': 'color 3'}]"
+298,revlon,"Revlon PhotoReady Primer, Shadow + Sparkle Palette",14.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b35505ef545ea7e478d0da882d8e93d8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-photoready-primer-shadow_67144.html,https://well.ca,"Easily create limitless looks with this one Revlon PhotoReady Primer, Shadow + Sparkle Palette.
+The palette features a primer, 3 highly pigmented shadows, and a
+sparkle top coat. You can use wet for more colour intensity and add the sparkle top
+coat for a multi-dimensional, intensely shimmering effect.Shadow Shades:",5.0,palette,eyeshadow,[],2016-10-01T18:30:44.974Z,2017-12-26T00:33:00.289Z,http://makeup-api.herokuapp.com/api/v1/products/298.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/298/original/data?1514063296,[]
+297,nyx,NYX Hot Singles Eye Shadow ,5.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/355a8d67acc1b30be6be8dce5b1c8ef0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-hot-singles-eye-shadow_106074.html,https://well.ca,"NYX’s Hot Singles are intense! Powerfully loaded with pigments, this versatile formula lets you make a statement for any occasion. Features:Stunning range of highly-pigmented shadows in shimmer, matte, metallic and iridescent finishesCreates a variety of eye makeup looksNYX’s unique formulation is easy to blend and build onHow to Use: Use with eye shadow base. Apply choice of colors to create edgy, natural and artistic eye looks.",5.0,,eyeshadow,[],2016-10-01T18:30:42.210Z,2017-12-23T21:08:16.742Z,http://makeup-api.herokuapp.com/api/v1/products/297.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/297/original/open-uri20171223-4-16md1w7?1514063296,"[{'hex_value': '#F97169', 'colour_name': 'Bad Seed (HS06) Red with Gold Glitter '}, {'hex_value': '#A6887E', 'colour_name': 'Damage Control (HS14) Pearly Taupe '}, {'hex_value': '#845685', 'colour_name': 'Epic (HS10) Iridescent Violet '}, {'hex_value': '#5E3C4D', 'colour_name': 'Fetish (HS71) Pearly Violet '}, {'hex_value': '#8A6741', 'colour_name': 'Happy Hour (HS27) Matte Medium Brown '}, {'hex_value': '#AA5048', 'colour_name': 'Heat (HS70) Pearly Copper '}, {'hex_value': '#EBC09E', 'colour_name': 'Lace (HS36) Matte Nude '}, {'hex_value': '#E47F47', 'colour_name': 'LOL (HS75) Matte Deep Orange '}, {'hex_value': '#D8B69B', 'colour_name': 'Naked Truth (HS37) Matte Beige '}, {'hex_value': '#F17B95', 'colour_name': 'Pink Lady (HS04) Iridescent Dark Pink '}, {'hex_value': '#D9C2B4', 'colour_name': 'Pixie (HS86) Pearly Champagne '}, {'hex_value': '#B99D87', 'colour_name': 'S.O.S (HS43) Matte Cool Light Brown '}, {'hex_value': '#F4B6A7', 'colour_name': 'Sex Kitten (HS73) Peachy Pink Shimmer '}, {'hex_value': '#F7D43A', 'colour_name': 'STFU (HS60) Matte Yellow '}, {'hex_value': '#6A4481', 'colour_name': 'Ultraviolet (HS12) Matte True Violet '}, {'hex_value': '#FEFDF9', 'colour_name': 'Whipped Cream (HS35) Matte White '}, {'hex_value': '#E65371', 'colour_name': 'Wild Orchid (HS05) Iridescent Fuchsia '}]"
+296,physicians formula,Physicians Formula Shimmer Strips All-in-1 Custom Nude Palette ,16.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/62ffaaf4299a6b30dc048c689bd064d0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_89998.html,https://well.ca,"Physicians Formula Shimmer Strips All-in-1 Custom Nude Palette is the must-have nude essentials kit for face and eyes with 12 shades of nude. Flawless blending, pure color and micro-smooth pearlescent formula makes skin look glowing, radiant and perfected.Directions: Sweep brush over entire palette for an all-over glow. Use each shade individually as eye shadow & eyeliner. See inside compact for endless application possibilities! Hypoallergenic. Paraben-Free. Gluten Free. Non-Comedogenic. Dermatologist approved. Ingredients: Ingredients: Mica, Diisostearyl Malate, Silica, Dimethicone, Dimethicone / Methicone Copolymer, Ethylhexyl Palmitate, Lauroyl Lysine, Methicone, Polybutene, Synthetic Wax, Tin Oxide, Ethylhexylglycerin, Phenoxyethanol. May Contain: Carmine, Iron Oxides, Red 40 Lake, Titanium Dioxide - Sweep
+ brush over entire palette for an all-over glow. Use each shade
+indiviually as eye shadow & eyeliner. See inside compact for endless
+ application possibilities! - See more at:
+//www.physiciansformula.com/en-us/productdetail/product-lines/shimmer-strips/06240.html#sthash.U35jHbM7.dpuf",5.0,,bronzer,['Gluten Free'],2016-10-01T18:30:38.694Z,2017-12-23T21:08:16.848Z,http://makeup-api.herokuapp.com/api/v1/products/296.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/296/original/open-uri20171223-4-1hk1jtx?1514063296,[]
+295,maybelline,Maybelline The Nudes Eye Shadow Palette,17.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/201350fd3e173307ade44520dc87d8fb_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-the-nudes-eye-shadow_95144.html,https://well.ca,"Maybelline The Nudes Eye Shadow Palette let's you create looks from day to night. Deep to light. So try it out and create your ideal eye look today!Features:
+
+
+ 13 looks in one Expert Wear eyeshadow palette
+Extraordinary Colour, from soft highlights, to medium bronze, to rich black
+From Maybelline's ultra-blendable pigments
+Long Wear
+
+
+ ",2.0,palette,eyeshadow,[],2016-10-01T18:30:35.715Z,2017-12-26T00:33:00.316Z,http://makeup-api.herokuapp.com/api/v1/products/295.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/295/original/open-uri20171223-4-5nv3ff?1514063296,[]
+294,pacifica,Pacifica Super Powder Supernatural Eye Shadow Trio,14.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7fb45dded4fbe7603a9aa9f56a65eeca_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/pacifica-super-powder-supernatural_110252.html,https://well.ca,"Pacifica Super Powder Supernatural Eye Shadow Trio Breathless, Glowing, Sunset is an innovative natural eye shadow that applies like a cream and sets to a powder, allowing for a smooth, velvety application that blends easy and provides a long-lasting, creaseless, flawless finish. Anti-aging ingredients including jojoba and argan oils.Features:100% veganCruelty-freeFormulated witout carmine, FD&C color, parabens and petroleumIngredients: Simmondsia chinensis (jojoba) seed oil, euphoriba cerifera (candelill) wax, copernicia prunifera (carnauba) wax, butyrospermum parkii (shea butter), oryza sativa (rice starch), helianthus annuus (sunflower) seed oil, argania spinosa (argan) kernal oil, tocopherol (vitamin e), kaolin. May contain: titanium dioxides (ci 77492, ci 77491, ci 77499), ultramarines, manganese violet.",4.3,,eyeshadow,"['Vegan', 'Natural']",2016-10-01T18:30:34.166Z,2017-12-23T21:08:18.818Z,http://makeup-api.herokuapp.com/api/v1/products/294.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/294/original/open-uri20171223-4-x32sju?1514063298,"[{'hex_value': '#A3866F', 'colour_name': 'color 1'}, {'hex_value': '#886649', 'colour_name': 'color 2'}, {'hex_value': '#805451', 'colour_name': 'color 3'}]"
+293,e.l.f.,e.l.f. Mad for Matte Eyeshadow Palette ,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fa63b99f27bbcb78998db3f2436b4764_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-mad-for-matte-eyeshadow_117826.html,https://well.ca,"Achieve both beautifully bold or subtle everyday eye looks with these perfectly curated 10 matte eyeshadow shades. This collection of hues is ideal for shading, highlighting, and defining the eyes. The satin matte shadows can be used as a liner, on the lid, and in the crease of the eye for an expertly contoured and blended look. How To Use: Apply dry all over the eyelid with a brush for a subtle wash of colour or apply wet for a vibrant effect. Start with a light color and apply the shade all over your eyelid as a base. Next, apply a medium shade over the eyelid and the eye crease using the crease brush. Finally, apply the darkest shade over your eyelid. Ingredients: Talc, Mica, Silica, Magnesium Stearate, Nylon-12, Ethylhexyl Palmitate, Dimethicone, Phenoxyethanol, Caprylyl Glycol. May Contain:Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Manganese Violet (CI 77742), Red 40 Lake (CI 16035), Ultramarines (CI 77007) ",4.4,palette,eyeshadow,[],2016-10-01T18:30:32.912Z,2017-12-26T00:33:00.682Z,http://makeup-api.herokuapp.com/api/v1/products/293.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/293/original/data?1514063296,[]
+292,e.l.f.,e.l.f. Studio Baked Eyeshadow Trio,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1b860dc0654fdc410beea95c6ba89b8d_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-baked-eyeshadow-trio_99356.html,https://well.ca,"Three gorgeously coordinated colors come together to create a stunning
+look. Baked in an oven, these eyeshadows offer rich pigmentation for a
+beautiful effect. Infused with active key ingredients Jojoba, Rose,
+Sunflower, Apricot and Grape to nourish and hydrate the skin. The
+long-lasting and shimmering color can be worn wet for a vibrant effect
+or dry for sheer pigmentation, offering a variety of gorgeous eye looks!Ingredients: Mica, Talc, Bismuth Oxychloride,
+Ethylhexyl Palmitate, Paraffinum Liquidum (mineral oil), Dimethicone,
+Magnesium Aluminum Silicate, Tocopheryl Acetate, Simmondsia Chinensis
+(Jojoba) Seed Oil, Rosa Canina (Rose Hip) Fruit Oil, Helianthus Annuus
+(Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Vitis
+Vinifera (Grape) Seed Oil, Phenoxyethanol, Methylparaben. May Contain:
+Titanium Dioxide (CI 77891), Iron Oxides (CI 77491 , CI 77492 , CI
+77499), Ultramarine Violet (CI 77077), Manganese Violet (CI 77742),
+Ferric Ferrocyanide (CI 77510), Tin Oxide (CI 77861), Yellow No.5 Lake
+(CI 19140), Red No.40 Lake (CI 16035), Blue No.1 Lake (CI 42090).
+
+ ",5.0,,eyeshadow,['Vegan'],2016-10-01T18:30:30.370Z,2017-12-23T21:08:17.612Z,http://makeup-api.herokuapp.com/api/v1/products/292.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/292/original/data?1514063297,[]
+291,maybelline,Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow Leather,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cf21d194ab14ee3c527d02682c358a7a_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eye-studio-color-tattoo_95143.html,https://well.ca,"
+
+ So rich. So creamy. Only Maybelline's cream gel eye shadow formula gets the look of couture leather so right!
+
+
+ Dare to wear Maybelline Color Tattoo leather 24HR long wear eye shadow.Features: Ink technology creates 24HR wear shadow for our most intense, long-lasting color saturationCream eye shadow formula glides on without creasing and keeps color vibrantOphthalmologist-tested. Safe for sensitive eyes and contact lens wearers
+ Shade Range:
+
+
+
+ ",4.3,,eyeshadow,[],2016-10-01T18:30:28.176Z,2017-12-23T21:08:16.007Z,http://makeup-api.herokuapp.com/api/v1/products/291.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/291/original/open-uri20171223-4-1693fvq?1514063295,"[{'hex_value': '#8A665B', 'colour_name': 'Chocolate Suede (95) '}, {'hex_value': '#BD9786', 'colour_name': 'Creamy Beige (80) '}, {'hex_value': '#98907A', 'colour_name': 'Deep Forest (85) '}, {'hex_value': '#484A4E', 'colour_name': 'Dramatic Black (100) '}, {'hex_value': '#B196A6', 'colour_name': 'Vintage Plum (90) '}]"
+290,dr. hauschka,Dr. Hauschka Eye Shadow Palette,43.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/be56826f6ed902203a0616930c4de5ea_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-eye-shadow-palette_34275.html,https://well.ca,"Four matte shades enhance the natural beauty of your eyes, allowing for a combination of elegant looks that take eyes from day to night. Silk powder offers pH balancing and protective qualities. Apply eyeshadow to the eyelid using the applicator, starting at the inside corner and working outwards. When using two colours, apply the darker shade to the outer corner and the lighter shade to the inner corner of the eye, or use as a highlighter under the eyebrow arch.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditions",4.8,palette,eyeshadow,['Natural'],2016-10-01T18:30:26.832Z,2017-12-26T00:33:00.261Z,http://makeup-api.herokuapp.com/api/v1/products/290.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/290/original/data?1514063295,[]
+289,covergirl,CoverGirl Eye Enhancers 4-Kit Shadows,6.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7d13530ed0a2ec9edc3736dcc0944a6b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-eye-enhancers-4-kit_4266.html,https://well.ca,"This collection of great shades is handpicked by CoverGirl's makeup pros and
+designed to make your eye look go from day to night. They blend
+effortlessly to bring your eyes out beautifully, without overshadowing.
+Experiment using them together or as single shades.Features:Matte, pearl, and sparkle shadesHandpicked by CoverGirl's makeup pros to make your eye look go from day to nightBlends easily without overshadowingTips for Use:
+
+
+ Dust the second-lightest shadow in your 4-Kit palette from your lash line to brow line Blend the second-darkest shade along the crease of your eyes Run the darkest shade along your upper and lower lash lines Blend and highlight the lid and brow bone with the lightest shade
+
+ ",4.6,,eyeshadow,[],2016-10-01T18:30:23.832Z,2017-12-23T21:08:15.794Z,http://makeup-api.herokuapp.com/api/v1/products/289.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/289/original/data?1514063295,[]
+288,pacifica,Pacifica Mystical Supernatural Eye Shadow Palette,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8b25aa939044e24c7de93036977901d8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-mystical-supernatural-eye_86672.html,https://well.ca,"An incredibly innovative formula that pushes mineral makeup color to new
+ bounds. Rich, lasting, ceaseless eye shadows are infused with coconut
+water for a velvety, cream-like finish. These four highly pigmented
+mineral satin makeup and iridescent shades are specially curated are
+designed to brighten the eyes and make you look gorgeous and awake.
+(Even when you did not get a good night's sleep!) Includes 4 Beautiful Shades:Opal - Opalescent pinkish-white perfect for highlighting and creating a natural look. Use on brow bones, inner eye and even as a linerMoonbeam - Pearlescent greyish moody violet to use on lids or create a subtle smoky eyeCelestial - Creamy dreamy beige with a little bright pearl ideal for lids and highlightsStargazer - Heavenly hot blue-violet to smudge, smoke or line your eyesFeatures: Coconut infused long lasting eye shadows that apply easy with a velvety finishNatural mineral colorsRecyclable packaging100% vegan, No animal ingredients or testingFREE OF PARABENS, PHTHALATES, PETROLEUM, TALC, FD&C COLORS and other ingredients you don't want on your skinIngredients:Opal Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Moonbeam Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499. Celestial Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Stargazer Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.",4.9,palette,eyeshadow,"['Vegan', 'Natural']",2016-10-01T18:30:22.518Z,2017-12-26T00:33:00.654Z,http://makeup-api.herokuapp.com/api/v1/products/288.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/288/original/data?1514063294,"[{'hex_value': '#DAC4B4', 'colour_name': 'color 1'}, {'hex_value': '#AD8466', 'colour_name': 'color 2'}, {'hex_value': '#776862', 'colour_name': 'color 3'}, {'hex_value': '#383C58', 'colour_name': 'color 4'}]"
+287,mistura,Mistura 6-in-1 Beauty Solution,56.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d45c12626255b3ebd4d674060e1a38b3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/mistura-6-in-1-beauty-solution_30539.html?cat=323,https://well.ca,"Mistura’s incredible 6-in-1 Beauty Solution powder provides a natural luminosity and pearl-like finish to all skin types and colours. Blend this illuminating powder into your cheeks, forehead, eyes and lips for an instant full-coverage glow. This amazing formula will hide blemishes, mute rosacea, glide over fine lines and wrinkles and bring an instant brilliance to pale skin tones. On darker skin tones, the 6-in-1 Beauty Solution creates a pearl-like shimmer and gives an instant air-brushed finish. A simply sensational beauty solution.Included:
+
+Mistura’s 6-in-1 Beauty Solution Powder (12 g)
+Mirrored Compact
+Eye Applicator
+Lip Applicator
+Luxury Retractable Brush
+Luxury Drawstring Pouch
+
+Features:
+
+Reduces the appearance of fine lines and wrinkles
+Will not settle into pores
+Leaves behind an ultra-light silky finish
+Hypo-allergenic, fragrance free, anti-inflammatory
+Wipes off easily with water - no chemicals required
+Long lasting mineral base
+One shade for ALL skin tones
+One easy step
+Instant results
+
+
+Application InstructionsBuff the 6-in-1 Beauty Solution® into the skin in a circular motion, starting on the outside of your face near your cheekbone and swirling as you go. Buff around your face and then your forehead, cheeks, and nose. Use over Mistura’s Luminada® illuminating moisturizer, as an eye shadow with the applicator provided or as a lip colour over Mistura’s Vitamin E moisture base. A little goes a long way so please be careful!Ingredients: Talc, Triethylhexanoin, Zinc Stearate, Tocopherol Acetate, Methylparaben, Propylparaben, Imidazolidinyl Urea, +/- (May Contain): Mica (77019), Titanium Dioxide (77891), Iron Oxides (77491, 77492, 77499), Ultramarines (77007), Yellow 5 Lake (19140:1), Blue 1 Lake (42090:2)",2.6,,eyeshadow,['Canadian'],2016-10-01T18:30:21.480Z,2017-12-23T21:08:14.685Z,http://makeup-api.herokuapp.com/api/v1/products/287.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/287/original/data?1514063294,"[{'hex_value': '#DBAA90', 'colour_name': 'color 1'}]"
+286,maybelline,Maybelline The Nudes Eyeshadow Palette in The Blushed Nudes,17.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/49d98e112e77d2a9a0c8fad28df89a1e_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-the-nudes-eyeshadow_107498.html,https://well.ca,Create looks from day to night and deep to light with Maybelline's The Blushed Nudes Eyeshadow Palette.Features:13 looks in one eyeshadow paletteExtraordinary colour from ultra-blendable pigmentsLong wear with sensual finish that lasts up to 12 hours,4.5,palette,eyeshadow,[],2016-10-01T18:30:20.193Z,2017-12-26T00:33:00.206Z,http://makeup-api.herokuapp.com/api/v1/products/286.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/286/original/open-uri20171223-4-1pj74fn?1514063294,[]
+285,covergirl,CoverGirl Eye Enhancers 3-Kit Shadows,6.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/197ae5defd213aa7967e20756d370be8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-eye-enhancers-3-kit_4258.html,https://well.ca,"Created with advanced, stay-put formulas, these collections of great shades are hand-picked by our make-up pros. Each one lets you mix and mingle, or just use a single shadow. They blend effortlessly to bring your eyes out beautifully, without overshadowing.",4.0,,eyeshadow,[],2016-10-01T18:30:18.904Z,2017-12-23T21:08:15.208Z,http://makeup-api.herokuapp.com/api/v1/products/285.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/285/original/data?1514063295,[]
+284,e.l.f.,e.l.f. Studio Prism Eyeshadow,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7282990c0ae826129a437ff3cb823cab_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-studio-prism-eyeshadow_105278.html,https://well.ca,"These ultra-silky and lustrous eyeshadows look like a powder but feel like a cream, allowing for a smooth and flawless application. Use to contour, line, and highlight for a radiant finish. The luminous, shimmery formula creates a gorgeous range of looks for both day and night. ",4.8,palette,eyeshadow,['Vegan'],2016-10-01T18:30:17.900Z,2017-12-26T00:38:39.219Z,http://makeup-api.herokuapp.com/api/v1/products/284.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/284/original/data?1514063294,"[{'hex_value': '#D9CFC2', 'colour_name': 'color 1'}, {'hex_value': '#E0CBB0', 'colour_name': 'color 2'}, {'hex_value': '#BC9A86', 'colour_name': 'color 3'}, {'hex_value': '#A08368', 'colour_name': 'color 4'}, {'hex_value': '#917362', 'colour_name': 'color 5'}, {'hex_value': '#806A60', 'colour_name': 'color 6'}]"
+283,pacifica,Pacifica Enlighten Eye Brightening Shadow Palette,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/eea39137208ea1ea7754c6c6e95689c5_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-enlighten-eye-brightening_77797.html,https://well.ca,"An incredibly innovative formula that pushes mineral makeup color to new bounds. Rich, lasting, ceaseless eye shadows are infused with coconut water for a velvety, cream-like finish. These four highly pigmented mineral satin makeup and iridescent shades are specially curated are designed to brighten the eyes and make you look gorgeous and awake. (Even when you did not get a good night's sleep!) Includes 4 Beautiful Shades:Urchin - An iridescent jeweled purple with gold tones. Use dry as a shadow, wet as a liner. Perfect for smudging and a great substitute for black.Golden - A perfect gold with just the right amount of shimmer. Use on the lids or line the eyes.Coral Sand - A satin lid base or highlighter. Skinny Dip - Matte nude base, a universal brightener. Perfect for using on the inner eye to add brightness.Formulated without: Phthalates, parabens, carmine, beeswax, lanolin, mineral oils, propylene glycol, petroleum and FD& C colors (along with other nasties you do not want on your skin). No animal testing. Gluten-free, 100% vegan and cruelty-free.Ingredients: Coral Sand Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Skinny Dip Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Urchin Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Golden Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.",4.6,palette,eyeshadow,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:30:16.741Z,2017-12-26T00:33:00.629Z,http://makeup-api.herokuapp.com/api/v1/products/283.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/283/original/data?1514063293,"[{'hex_value': '#BF9D87', 'colour_name': 'color 1'}, {'hex_value': '#BE866B', 'colour_name': 'color 2'}, {'hex_value': '#BB8D59', 'colour_name': 'color 3'}, {'hex_value': '#664E51', 'colour_name': 'color 4'}]"
+282,wet n wild,Wet n Wild Color Icon Eye Shadow Collection,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9c602a66c3a2d8492389d48adbf2c7fe_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/wet-n-wild-color-icon-eye-shadow_81697.html,https://well.ca,"Eight dynamic, perfectly color-coordinated shades with high pigment and
+pearl for ultra-impact color. Shades can be used together or
+individually to create an endless variety of looks. ",4.2,palette,eyeshadow,[],2016-10-01T18:30:15.859Z,2017-12-26T00:39:05.163Z,http://makeup-api.herokuapp.com/api/v1/products/282.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/282/original/data?1514063293,[]
+281,pure anada,Pure Anada Loose Luminous Eye Colour ,8.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4daf84bee451c265ec04f7cc1b8bb7c3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-loose-luminous-eye-colour_93638.html,https://well.ca,"Pure Anada Loose Luminous Eye Colours are made with finely milled micas that impart an illuminating glow. Apply them dry for soft, subtle color, or wet for more vibrant intensity. Learn how you can use your favourite shade to make customized lip balm with our easy DIY Lip Balm recipe on our blog, The Well!About Shade Tones: Warm Shades (W) if you have yellow undertones in your skinCool Shades (C) if you have blue undertones in your skinNeutral Shades (N) to accent any skin tone or eye colorApplication Tips: Dip your shadow brush into the loose minerals and tap off any excess
+powder. Gently stipple the minerals on your eye lids. Make sure your
+skin is well hydrated so the minerals will adhere. Try misting your
+skin with Pure Anada Marine Mineral Toner, prior to applying your
+makeup.If your shadow is prone to creasing, make sure your lids are free
+from excess oils before applying shadow. If the problem is persistant,
+try priming your lids with Pure Anada Matte Minerals Finishing Powder or
+ a coordinating Velvet Matte Shadow.
+Deep shades of loose mineral shadow can be used as eyeliner. To
+create a soft dry line, dip an angled liner brush into the powder, tap
+it off and line your eyes. Or to create a liquid liner, wet your brush
+and dip it into the powder. The minerals will stick to the brush. Make
+ a paste on the back of your hand, or in the lid of the jar. Apply to
+your eyes!Ingredients: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide",4.5,,eyeshadow,"['Canadian', 'Natural']",2016-10-01T18:30:13.373Z,2017-12-23T21:08:13.317Z,http://makeup-api.herokuapp.com/api/v1/products/281.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/281/original/data?1514063293,"[{'hex_value': '#373030', 'colour_name': 'Black Tie (N) '}, {'hex_value': '#D7AE7A', 'colour_name': 'Champagne (N) '}, {'hex_value': '#865945', 'colour_name': 'Close to Cocoa (W) '}, {'hex_value': '#702A1A', 'colour_name': 'Copper (W) '}, {'hex_value': '#6D8B93', 'colour_name': 'Cornflower (N) '}, {'hex_value': '#4E3E3E', 'colour_name': 'Deep Plum (N) '}, {'hex_value': '#377A3C', 'colour_name': 'Grenada Green (N) '}, {'hex_value': '#A5A1A2', 'colour_name': 'Lavender Grey (C) '}, {'hex_value': '#C24152', 'colour_name': 'Marsala '}, {'hex_value': '#656D78', 'colour_name': 'Moonstone (C) '}, {'hex_value': '#274A65', 'colour_name': 'Ocean Mist (C) '}, {'hex_value': '#EBC8B4', 'colour_name': 'Peach Freeze (N) '}, {'hex_value': '#69577F', 'colour_name': 'Purple Pride (C) '}]"
+280,wet n wild,Wet n Wild Color Icon Eyeshadow Single,1.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7d6da9fa070a3d82c6a8e8fc4c8110c2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/wet-n-wild-color-icon-eyeshadow_86421.html,https://well.ca,"High-pigmentation and pearl-density create a unique, satiny texture that lasts and lasts. A versatile collection
+of classic and trend shades can be easily worn alone or playfully combined for a variety of looks.",4.6,,eyeshadow,[],2016-10-01T18:30:12.412Z,2017-12-23T21:08:13.168Z,http://makeup-api.herokuapp.com/api/v1/products/280.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/280/original/open-uri20171223-4-n17jvz?1514063293,"[{'hex_value': '#E6E5E1', 'colour_name': '250B Sugar '}, {'hex_value': '#D9C4AC', 'colour_name': '251B Brulee '}]"
+279,maybelline,Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c2ddacc79f4fdd3d23664581c76546bc_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eye-studio-color-tattoo_50692.html,https://well.ca,"Dare to wear 24HR shadow!Maybelline's Color Tattoo Cream Gel Shadow uses ink technology for their most intense, long-lasting colour saturation. The cream formula glides on without creasing and keeps colour vibrant.Ophthalmologist-tested. Safe for sensitive eyes and contact lens wearers.
+
+
+
+
+ For best results: With
+fingertips, sweep all over eye from inner corner and work outwards. For
+ added drama, darken as desired. ",4.5,,eyeshadow,[],2016-10-01T18:30:10.665Z,2017-12-23T21:08:13.016Z,http://makeup-api.herokuapp.com/api/v1/products/279.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/279/original/open-uri20171223-4-h37y2c?1514063292,"[{'hex_value': '#ab897d', 'colour_name': 'Bad to the Bronze '}, {'hex_value': '#1d8493', 'colour_name': 'Tenacious Teal '}, {'hex_value': '#d3cfcc', 'colour_name': 'Too Cool '}, {'hex_value': '#81726d', 'colour_name': 'Tough as Taupe '}]"
+278,pacifica,Pacifica Radiant Shimmer Highlighting Creams For Eyes Lips Face,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4395f2c09aebd1b8d8f183168bc5d00f_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-radiant-shimmer_77804.html?cat=1977,https://well.ca,"You will absolutely LOVE these Radiant Shimmer Coconut Multiples! Coconut infused multi-use creamy colors for cheeks, eyes, lips and even your body are housed in a magically decorated palette. Create shimmering highlights, glowing illumination and beautiful contours. Natural mineral makeup formula blends effortlessly and can be used sheer, layered or built-up for more drama. Go ahead and play all you want, these mineral makeup colors are full of skin-loving naturals.Includes 3 Shimmering Shades:Bronzed: Perfectly glowing sun-kissed color with golden shimmer shadowIsland Rose: shimmering, radiant dewy pink shadowMoonlit: Iridescent pale shades of moon-kissed shimmerFeatures:No animal testingGluten-free100% vegan and cruelty-freeFormulated without: Phthalates, parabens, carmine, beeswax, lanolin, mineral oils, propylene glycol, petroleum and FD& C colors (along with other nasties you do not want on your skin). Ingredients: Ethylhexyl Palmitate, Silica, Mica, Caprylic/Capric Triglyceride,Helianthus Annuus (Sunflower) Seed Oil, Ozokerite, Copernicia Cerifera(Carnauba) Wax, Euphorbia Cerifera (Candelilla) Wax, Cetyl Palmitate, Carthamus Tinctorius (Safflower) Seedoil, Parfum (All Natural), Tocopheryl Acetate (Vitamin E), Macrocystis Pyrifera (Brown Kelp) Extract,Cocos Nucifera (Coconut) Fruit Extract, Tin Oxide. Titanium Dioxide Ci 77891, Iron Oxides Ci 77941",3.6,powder,blush,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:30:09.334Z,2017-12-23T21:08:44.239Z,http://makeup-api.herokuapp.com/api/v1/products/278.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/278/original/data?1514063324,"[{'hex_value': '#7E554A', 'colour_name': 'color 1'}, {'hex_value': '#BC8A88', 'colour_name': 'color 2'}, {'hex_value': '#D1B6A9', 'colour_name': 'color 3'}]"
+277,physicians formula,Physicians Formula Matte Collection Quad Eye Shadow,10.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/66d22b6cffd1cc8b2394e41b1c60501f_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-matte-collection_58064.html,https://well.ca,"Physicians Formula Matte Collection Quad Eye Shadow has a silky smooth formula, is easy to blend and is safe for
+sensitive eyes and contact lens wearers.Directions for Use: These
+ natural looking shades can be used independently or combined for a
+total eye focus. Use lighter shades on eyelid and brow bone, medium
+shades on eyelid and
+ darker shade in the crease as a contour for a more dramatic effect.
+ Ingredients: TALC,ZINC STEARATE, DIMETHICONE, CAPRYLIC/CAPRIC TRIGLYCERIDE,KAOLIN,
+SILICA, TRISODIUM EDTA, IMIDAZOLIDINYL UREA,
+METHYHLPARABEN,PROPYLPARABEN.MAY CONTAIN: MICA,TITANIUM DIOXIDE,IRON
+OXIDES,CARMINE,MANGANESE VIOLET,BISMUTH OXYCHLORIDE, FERRIC
+FERROCYANIDE, CHROMIUM OXIDE GREENS, ULTRAMARINES, BLUE 1 LAKE, YELLOW 5
+ LAKE, SILK POWDER.Hypoallergenic. Fragrance-free. Safe for sensitive eyes and contact lens wearers. Dermatologist Approved. Easy to blend.",4.6,,eyeshadow,['Gluten Free'],2016-10-01T18:30:07.788Z,2017-12-23T21:08:11.874Z,http://makeup-api.herokuapp.com/api/v1/products/277.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/277/original/open-uri20171223-4-a17eci?1514063291,[]
+276,cargo cosmetics,Cargo Cosmetics Eye Shadow Single,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/12b1caa07e20c2e9535fc67120f4abb1_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-eye-shadow-single_87586.html,https://well.ca,"Cargo Eye Shadow singles are packaged in their signature tin. This
+soft and velvety formula has a smooth feel and delivers a long-lasting,
+even application. Rich pigments adhere to skin to give long wearing,
+saturated color. Colors adhere to the skin and blend effortlessly and
+are buildable for added intensity. May also be used wet or dry as an
+eye liner.
+ Eyes are enhanced in a wide variety of colors that offer the ultimate in makeup expression. Paraben free.
+
+Features:
+Silica helps with the blendability of the product and gives a velvety smooth texture. Allows for shadow to be used wet.Jet Milled Talc provides smooth feel and application.Vitamin E is an antioxidant helps to keep the skin supple and smooth.Aloe Barbadensis Leaf Extract hydrates and nourishes the skin.Paraben-freeShade Range: Ingredients: Talc, Octyldodecyl Stearoyl Stearate, Octyldodecyl Stearate, Zinc
+Stearate, Silica, Boron Nitride, Tocopheryl Acetate, Phenoxyethanol,
+Caprylyl Glycol, Alumina, Carthamus Tinctoris (Safflower) Seed Oil, Aloe
+ Barbadensis Leaf Extract, Sorbic Acid. May Contain (+/-): Mica
+(CI 77019), Iron Oxides (CI 77491, CI 77492, CI 77499), FD&C Yellow
+#5 Lake (CI 19140:1), FD&C Blue #1 Lake (CI 42090), FD&C Red #40
+ Lake (CI 16035:1), Titanium Dioxide (CI 77891), Bismuth Oxychloride (CI
+ 77163), Chromium Oxide Green (CI 77288), Chromium Hydroxide Green (CI
+77289), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742),
+Ultramarines (CI 77007), Bronze Powder (CI 77400), Tin Oxide (CI 77861).",5.0,,eyeshadow,[],2016-10-01T18:30:06.844Z,2017-12-23T21:08:11.721Z,http://makeup-api.herokuapp.com/api/v1/products/276.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/276/original/data?1514063291,"[{'hex_value': '#542D7E', 'colour_name': 'Moreton Bay (Deep Matte Plum) '}, {'hex_value': '#159191', 'colour_name': 'Aegean (Turquoise Shimmer) '}, {'hex_value': '#E3AF50', 'colour_name': 'Oz (Warm Golden Yellow Shimmer) '}, {'hex_value': '#BC977C', 'colour_name': 'St. Tropez (Natural Beige Shimmer) '}]"
+275,pure anada,Pure Anada Pressed Mineral Eye Color Pan,8.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9b489f80495f5d059d0f49ef38c36664_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-pressed-mineral-eye-color_83502.html,https://well.ca,"Pure Anada is pleased to bring you a lovely selection of convenient pressed mineral colors! You’ll love the silky texture and longevity of these very wearable shades.Mineral pigments and organic Jojoba are pressed together to create a natural makeup product. You can have confidence that you are making a beautiful, healthy choice!Pure Anada pressed colors are designed to be inserted into customizable magnetic compacts like the Pure Ananda Reusable Magnetic Compact. Design your own palette! What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Shadow Finishes: Demi-Matte shadows are a combination of opaque matte minerals and luminous satin mica. This provides both true color and a light-reflecting finish.Matte shadows are soft, silky shadows that do not exude any sheen whatsoever.Shades: Ingredients: Mica (CI 77019), Iron Oxides (CI 77492, CI 77499) Calcium Carbonate, Caprylic Triglyceride *Simmondsia Chinensis (Jojoba seed oil) Ultramarines (CI 77007), Titanium Dioxide (CI 77891) * Certified Organic IngredientVegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",4.5,,eyeshadow,"['Natural', 'Vegan', 'Gluten Free', 'Non-GMO', 'Canadian']",2016-10-01T18:30:03.877Z,2017-12-23T21:08:11.558Z,http://makeup-api.herokuapp.com/api/v1/products/275.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/275/original/data?1514063291,"[{'hex_value': '#533C5D', 'colour_name': 'Blackberry (Demi-Matte) '}, {'hex_value': '#8CA7B5', 'colour_name': 'Breeze (Demi-Matte) '}, {'hex_value': '#CC9B7B', 'colour_name': 'Burlap (Matte) '}, {'hex_value': '#ecc2c6', 'colour_name': 'Cameo (Demi-Matte Light Pink White) '}, {'hex_value': '#9786b0', 'colour_name': 'Crocus (Demi-Matte Lilac Purple '}, {'hex_value': '#ac9689', 'colour_name': 'Dove\t(Matte Medium Grey) '}, {'hex_value': '#fcdda6', 'colour_name': 'Ecru\t(Matte Cream) '}, {'hex_value': '#A06C69', 'colour_name': 'Espresso (Demi-Matte) '}, {'hex_value': '#e38597', 'colour_name': 'Freesia (Demi-Matte Medium Pink) '}, {'hex_value': '#A6777A', 'colour_name': 'Grape (Demi-Matte) '}, {'hex_value': '#FBCFB2', 'colour_name': 'Luna (Demi-Matte) '}, {'hex_value': '#8A9C86', 'colour_name': 'Meadow (Demi-Matte) '}, {'hex_value': '#CEB2A0', 'colour_name': 'Mirage (Demi-Matte) '}, {'hex_value': '#EFB49E', 'colour_name': 'Nectar (Demi-Matte) '}, {'hex_value': '#2f2a27', 'colour_name': 'Onyx (Demi-Matte Black) '}, {'hex_value': '#9D837E', 'colour_name': 'Pewter (Demi-Matte) '}, {'hex_value': '#6f9087', 'colour_name': 'Reef (Demi-Matte Turquoise) '}, {'hex_value': '#C89987', 'colour_name': 'Sahara (Demi-Matte) '}, {'hex_value': '#BAB4B6', 'colour_name': 'Sterling (Demi-Matte) '}, {'hex_value': '#F9DDCB', 'colour_name': 'Whisper (Demi-Matte) '}]"
+274,pacifica,Pacifica Natural Minerals Solar Complete Color Mineral Palette,60.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/baf991d5944d310d8c337423486b77ea_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-natural-minerals-solar_86675.html?cat=328,https://well.ca,"All you need to look naturally gorgeous! The Solar Complete Mineral Palette is a full set of eye shadows, blush, bronzer and coconut highlighters all in one beautiful, recyclable palette. Each natural mineral shadow is highly pigmented and so smooth it applies like a cream. Plus the new blush and bronzer are infused with coconut, apply easily and can be layered to build color. The coconut highlighters are in two new shades as well as the popular Island Rose and can be used on cheekbones, eye brow bones, and even the lips to provide the perfect amount of natural brightness. With a variety of colors, many looks are achievable so you can be natural by day or smokin' hot by night.Colours Included:Eye shades: Neptune, Glow, Treasure, Coral, Mermaid Aqua, SandalwoodCheek shades: Flushed, BronzedHighlighter shades: Gold Dust, Island Rose, Pink Opal",4.9,,bronzer,"['Vegan', 'Natural']",2016-10-01T18:30:02.836Z,2017-12-23T21:08:48.370Z,http://makeup-api.herokuapp.com/api/v1/products/274.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/274/original/data?1514063328,[]
+273,maybelline,Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow ,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/58d07d24e39142e0c5a178b00b6b31f1_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eye-studio-color-tattoo_67270.html,https://well.ca,"Dare to wear 24HR shadow!Maybelline's Color Tattoo Cream Gel
+Shadow uses ink technology for their most intense, long-lasting shimmery metallic shades. The cream formula glides on without creasing and keeps
+colour vibrant.Ophthalmologist-tested. Safe for sensitive eyes and contact lens wearers.
+
+
+
+
+ Shade Range: For best results: With
+fingertips, sweep all over eye from inner corner and work outwards. For
+ added drama, darken as desired. ",4.0,,eyeshadow,[],2016-10-01T18:30:01.223Z,2017-12-23T20:51:33.487Z,http://makeup-api.herokuapp.com/api/v1/products/273.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/273/original/open-uri20171223-4-ql025m?1514062293,"[{'hex_value': '#fdd3d2', 'colour_name': 'Inked in Pink (55) '}, {'hex_value': '#c5c7c8', 'colour_name': 'Silver Strike (60) '}, {'hex_value': '#f2caad', 'colour_name': 'Barely Branded (70) '}]"
+271,covergirl,CoverGirl Trunaked Waterproof Eyeliner Duo in Mocha/Ebony,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d21a214b11528337f27647cbbd93de6b_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trunaked-waterproof_112747.html,https://well.ca,"CoverGirl Trunaked Waterproof Eyeliner Duo takes eyes from subtle to smokey in no time! Features:Creamy waterproof formula Blends just as beautifully as it stays put Partner this twin tip eyeliner pencil with the gorgeous neutrals in the trunaked palettes to create endless easy, breezy, beautiful possibilitiesHow to Apply: Apply liner along your top and bottom lashes for the full trunaked effect.",,pencil,eyeliner,[],2016-10-01T18:29:58.625Z,2017-12-23T20:51:16.895Z,http://makeup-api.herokuapp.com/api/v1/products/271.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/271/original/open-uri20171223-4-1l6bio5?1514062276,[]
+270,anna sui,Anna Sui Eye Brightener,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5e2dd70493281c257ad9e77b8840d570_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-sui-eye-brightener_115440.html?cat=324,https://well.ca,"This Anna Sui Eye Brightener is an eye makeup primer that evens, tones and provides a brightened 3D effect, designed specifically for delicate eye areas. Features:Combined with polarized pearls in red, blue, and silver for a naturally brightened 3D effectSmooths skin tones, allowing eye makeup to spread smoothly onto the skinGentle enough to protect delicate eye areasDirections: Apply before or after makeup. Can be used to highlight when applied around eye area before makeup or used as a light concealer under eyes and brow bone after makeup.",,pencil,eyeliner,[],2016-10-01T18:29:57.466Z,2017-12-23T21:08:08.156Z,http://makeup-api.herokuapp.com/api/v1/products/270.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/270/original/data?1514063288,[]
+268,anna sui,Anna Sui Sharpener,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/269abb578dd790ab8379025f81fcbfae_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-sui-sharpener_115554.html?cat=324,https://well.ca,This Anna Sui Sharpener for eyeliner pencils features two sharpener sizes and a mess free cover to catch the eyeliner shavings. ,,pencil,eyeliner,[],2016-10-01T18:29:54.122Z,2017-12-23T21:08:10.420Z,http://makeup-api.herokuapp.com/api/v1/products/268.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/268/original/data?1514063290,[]
+267,covergirl,CoverGirl Bombshell Powder Brow & Liner in Dark Brown,9.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a7598160bc46504c98c26a241e3047e2_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-bombshell-powder-brow_113683.html,https://well.ca,"Bring sexy smolder to eyes & brows. Soft powder adheres to brows and defines eyes.Features:2-in-1 brow & liner powderVelvety powder fills in browsUse also to softly line & define eyesDirections: Twist open and pull applicator up and tap lightly on tube side to remove excess powder. Lightly brush over eyebrows until desired effect is reached. Also use to softly line & define eyesIngredients: Boron Nitride, Dimethicone, Silica, Polyethylene, Pentylene Glycol, Pumice, Kaolin, Dimethiconol, Phenoxyethanol, Ethylhexylglycerin, Dehydroacetic Acid, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, May Contain/Peut Contenir: Titanium Dioxide, Iron Oxides, Mica",3.0,pencil,eyeliner,[],2016-10-01T18:29:53.047Z,2017-12-23T21:08:10.038Z,http://makeup-api.herokuapp.com/api/v1/products/267.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/267/original/open-uri20171223-4-dspzug?1514063289,[]
+266,anna sui,Anna Sui Pencil Eyeliner WP,26.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/88d74b22173b3f912b2263c4fd505a2b_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-sui-pencil-eyeliner-wp_115449.html,https://well.ca,"This Anna Sui Pencil Eyeliner is a soft, waterproof eyeliner that glides on effortlessly for a long lasting finish. Used to create intense colour definition.Features:Waterproof formula reduces smudging allowing colours to stay fresh Minimal amount of waxes and oils allow for a smooth application5 essential on-trend colours produced by a combination of pearl and colourants",,pencil,eyeliner,[],2016-10-01T18:29:52.181Z,2017-12-23T21:08:09.749Z,http://makeup-api.herokuapp.com/api/v1/products/266.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/266/original/data?1514063289,"[{'hex_value': '#AB9A63', 'colour_name': 'Gold (900) '}, {'hex_value': '#5D5855', 'colour_name': 'Black (001) '}, {'hex_value': '#F9F2EA', 'colour_name': 'Whire (002) '}, {'hex_value': '#5C6085', 'colour_name': 'Blue (100) '}, {'hex_value': '#896652', 'colour_name': 'Brown (500) '}]"
+265,covergirl,CoverGirl Trunaked Waterproof Eyeliner Duo in Cashmere/Espresso,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/92d2bd2c93f465c5565009f3f604fae6_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-trunaked-waterproof_112746.html,https://well.ca,"CoverGirl Trunaked Waterproof Eyeliner Duo takes eyes from subtle to smokey in no time! Features:Creamy waterproof formula Blends just as beautifully as it stays put Partner this twin tip eyeliner pencil with the gorgeous neutrals in the trunaked palettes to create endless easy, breezy, beautiful possibilitiesHow to Apply: Apply liner along your top and bottom lashes for the full trunaked effect.",,pencil,eyeliner,[],2016-10-01T18:29:50.299Z,2017-12-23T21:08:09.610Z,http://makeup-api.herokuapp.com/api/v1/products/265.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/265/original/open-uri20171223-4-1unbuvg?1514063289,[]
+264,revlon,Revlon PhotoReady Kajal Matte Eye Pencil,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/117b7491bce3c01899a12df69d4629e1_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-photoready-kajal-matte-eye_112535.html,https://well.ca,NEW Revlon PhotoReady Kajal Matte Eye Pencil is a highly pigmented colour with matte finish that glides on effortlessly.Features:Use the built in smudger to take it from precise to smokySoft kajal can be used to line the inner rimAll day wearOphthalmologist tested ,,pencil,eyeliner,[],2016-10-01T18:29:49.181Z,2017-12-23T21:08:09.477Z,http://makeup-api.herokuapp.com/api/v1/products/264.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/264/original/open-uri20171223-4-1yo9tf8?1514063289,[]
+262,physicians formula,Physicians Formula Shimmer Strips Extreme Shimmer Pencil + Smudger Trio,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a08c2b2466bf97e899cfc1445cd6cd9f_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/physicians-formula-shimmer-strips_112259.html,https://well.ca,"
+Ultra-shimmery & versatile glitter eyeliner pencils create precise definition or smudged out glamour instantly!Features:Highly-pigmented, creamy color Packed with illuminating shimmer for eyes that sparkleThree Shades: Natural (Bronze), Playful (Gold), Dramatic (Black)Directions: Apply eyeliner at the base of upper and lower lashes.Layer shades together for endless looks. For more defined eyes, apply along lower lash line as well.Ingredients: Ingredients: Hydrogenated Polyisobutene, Calcium Sodium Borosilicate, Calcium Aluminum Borosilicate, Polyethylene Terephthalate, Dipentaerythrityl Hexahydroxystearate/Hexastearate/Hexarosinate, Synthetic Wax, Ethylhexyl Palmitate, Beeswax/Cire d'abeille, Copernicia Cerifera (Carnauba) Wax/Cire de Carnauba, Synthetic Fluorphlogopite, Silica, Ozokerite, Ascorbyl Palmitate, Citric Acid, Lecithin, Polymethyl Methacrylate, Polyurethane-11, Tin Oxide, Tocopherol",,pencil,eyeliner,"['Gluten Free', 'Natural']",2016-10-01T18:29:45.558Z,2017-12-23T21:08:08.553Z,http://makeup-api.herokuapp.com/api/v1/products/262.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/262/original/open-uri20171223-4-vppdxb?1514063288,[]
+261,covergirl,CoverGirl Full Lash Bloom Mascara + Perfect Point Plus Eye Liner,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/72bab061829b3185368d8dcb24a6a630_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-full-lash-bloom-mascara_108466.html?cat=324,https://well.ca,"This value pack contains a mascara that gives exceptional lash fullness that is soft - even to the touch and a self-sharpening eye liner for a perfect point every time.Features:Full Lash Bloom Mascara - very blackPerfect Point Plus Eye Liner - black onyx Soft, full lashes that are never stiff or brittleEye liner has soft smudger tip for expert blendingSuitable for contact lens wearersDirections: Apply liner along bottom and top lash lines, smudge using soft tip tool. Finish by brushing upper and lower lashes generously with up to 2 coats of mascara.",,pencil,eyeliner,[],2016-10-01T18:29:44.520Z,2017-12-23T21:08:03.809Z,http://makeup-api.herokuapp.com/api/v1/products/261.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/261/original/open-uri20171223-4-1d9t58p?1514063283,[]
+260,l'oreal,L'Oreal Infallible Smokissime Powder Eyeliner Pen,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/08f663a61b796cb57fd6aef86dbb5cc1_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-smokissime-powder_102005.html,https://well.ca,"Master the smoky eye in one step - really! Every makeup artist knows:
+the perfect smoky eye is about the perfect pairing of eyeliner and
+shadow. Now, L’Oréal Paris introduces the first smoky eye powder liner,
+blending the best of eyeliner and shadow into a single product. Its
+Infallible powder formula lasts up to 14 hours while the suede-like
+applicator is soft enough to expertly blend, with a pointed tip for
+optimal control.",2.5,pencil,eyeliner,[],2016-10-01T18:29:43.529Z,2017-12-23T21:08:04.477Z,http://makeup-api.herokuapp.com/api/v1/products/260.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/260/original/data?1514063284,"[{'hex_value': '#623272', 'colour_name': 'Purple Smoke '}, {'hex_value': '#a57756', 'colour_name': 'Taupe Smoke '}]"
+259,physicians formula,Physicians Formula Shimmer Strips Extreme Shimmer Eyeliner Trio in Nude ,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d64ebc772679cbca5c93fd10cc2f3c56_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-shimmer-strips_102727.html,https://well.ca,"This Physicians Formula Shimmer Strips Extreme Shimmer Eyeliner Trio gives you highly pigmented color and bold shimmer for a glamorous customized look. Features: Long wearing, water resistant and smudge resistant formula for 24hr wearHypoallergenicParaben & gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearerDirections: Apply eyeliner at the base of upper shade, layer shades for endless looks.Ingredients: Dimethicone, Calcium Aluminum Borosilicate, Polyethylene, Trimethylsiloxysilicate, Synthetic Wax, Squalane, Polybutene, Silica, Disteardimonium Hectorite, Propylene Carbonate, Tin Oxide, Lecithin, Tocopherol, Ascorbyl Palmitate, Citric Acid. May Contain/Peut Contenir: Bismuth Oxychloride, Black 2, Blue 1 Lake, Chromium Hydroxide Green, Chromium Oxide Greens, Carmine, Ferric Ammonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese Violet, Mica, Titanium Dioxide, Ultramarines, Yellow 5 Lake.",,pencil,eyeliner,['Gluten Free'],2016-10-01T18:29:40.955Z,2017-12-23T21:08:04.323Z,http://makeup-api.herokuapp.com/api/v1/products/259.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/259/original/data?1514063284,[]
+258,milani,Milani Supreme Kohl Kajal Eyeliner,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0e085149c3fbedd0aa6661c6b3d143cf_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/milani-supreme-kohl-kajal-eyeliner_108625.html,https://well.ca,"Milani Supreme Kohl Kajal Eyeliner is perfect for tightlining, waterlining or adding definition to the upper lid - there’s nothing this one-stroke wonder can’t do. With this sleek gold multi-tasker, you can achieve three distinct looks: 1.To keep it natural, line the upper lid and inner rim. 2. For added drama, thicken the line and extend the tip. 3. Feeling bold? Ring the entire eye. Available in a single stellar shade (Blackest Black), the waterproof formula is laced with hydrating, nourishing ingredients. Features:Smooth-glide application creates three looks from precise to boldSuper long-wear & smudge-proofRetractable tip, no sharpening requiredIdeal for use in waterlineWaterproofApplication: One Product Three Looks: Supremely Natural Supremely Dramatic Supremely Bold (will provide eye images for this section) Apply to upper lashline and inner rim for a natural, precise look. For added intensity, slightly thicken the line and extend the tip. For supreme drama, connect through the lower lashline.Ingredients: Cyclopentasiloxane, Hydrogenated Olive Oil Stearyl Esters, Polyethylene, Polybutene, Silica Silylate, Euphorbia Cerifera (Candelilla) Wax, Octyldodecanol, Cera Microcristallina (Microcrystalline Wax) , Theobroma Grandiflorum (Cocoa) Seed Butter, Sodium Ascorbyl Phosphate, Pentaerythrityl Tetra-di-t-Butyl Hydroxyhydrocinnamate, Tocopherol, Sodium Hyaluronate, Zinc Gluconate, Magnesium Aspartate, Water (Aqua), Copper Gluconate, Mica, Iron Oxide (CI 77499), Black 2 (CI 77266), Ferric Ferrocyanide (CI 77510). ",5.0,pencil,eyeliner,[],2016-10-01T18:29:39.644Z,2017-12-23T21:08:07.140Z,http://makeup-api.herokuapp.com/api/v1/products/258.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/258/original/data?1514063287,[]
+257,annabelle,Annabelle Retractable Eyeliner,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d579558b853bc13b92292106cfc2ed15_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/annabelle-retractable-eyeliner_97807.html,https://well.ca,"This Annabelle Retractable Eyeliner with integrated sharpener comes in rich, intense colours and
+a creamy texture that glides easily. Waterproof and long-lasting formula.
+
+
+Ophthalmologist Tested. Waterproof. 12h wear.
+ A
+must have for a decadent dose of resistant colour!Shade Range: ",5.0,pencil,eyeliner,[],2016-10-01T18:29:37.128Z,2017-12-23T21:08:06.984Z,http://makeup-api.herokuapp.com/api/v1/products/257.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/257/original/open-uri20171223-4-1i0r7ni?1514063286,"[{'hex_value': '#66603c', 'colour_name': 'Peacock '}, {'hex_value': '#572e12', 'colour_name': 'Bronze Age '}]"
+256,marcelle,Marcelle Lux Cream Eye Shadow + Liner,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4448f8a937851a10afe049b1c374f448_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-lux-cream-eye-shadow_100215.html,https://well.ca,"
+ Marcelle Lux Cream Eye Shadow + Liner gives you waterproof color that lasts all day!
+
+A jumbo pencil in a creamy, non-sticky luxurious formula. The
+ultra-silky texture glides on evenly for a quick and easy application
+and color that lasts up to 9 + hours. Waterproof, the color will not
+smudge, transfer or crease once it sets.Use each pencil alone as a
+shadow or as a liner, or mix and match shades to create your own looks.
+The sponge-end makes smoky-eye looks easy to achieve. Simply use the
+smudge tip to extend the color onto your lid for the perfect smoky eye.
+
+Hypo-allergenic and perfume free.Shade Range: ",,,eyeshadow,['Canadian'],2016-10-01T18:29:34.360Z,2017-12-23T21:08:19.178Z,http://makeup-api.herokuapp.com/api/v1/products/256.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/256/original/data?1514063299,"[{'hex_value': '#daaaa0', 'colour_name': 'Ballerina '}, {'hex_value': '#9a6c5f', 'colour_name': 'Taupe du Jour '}, {'hex_value': '#d6c4ac', 'colour_name': 'Vanilla Ice '}, {'hex_value': '#ad95a5', 'colour_name': 'Wisteria '}]"
+255,cargo cosmetics,Cargo Cosmetics Swimmables Eye Pencil,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/edee76f18bae96a69164f4058e6b3c32_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-swimmables-eye_87606.html,https://well.ca,"Stay in line!
+Cargo Cosmetics Swimmables Eye Pencil is an ultra creamy, extreme wear, waterproof eyeliner with the feel of a
+liquid and versatility of a pencil. Locks comfortably into place for up
+to 14 hours. Creamy, transfer-resistant formula glides on effortlessly
+to create a variety of looks. Allows for ample blending time before
+setting. Concentrated pigments provide rich color payoff. Stays put
+through sun, sweat, swim and tears.
+
+Features:
+ Moisturizing Waterproof PigmentsAvocado and sunflower oil provide a creamy, cushiony texture Durable, budge-proof waxes lock pigments into place for up to 14 hoursLiner tip offers versatile application—from delicate lines to thicker, fuller Ingredients: Isododecane, Synthetic Wax, Hydrogenated Polydicycolpentadiene,
+PEG/PPG-18/18 Dimethicone, Polybutene, Glyceryl
+Tribehenate/Isostearate/Eicosandioate, Nylon-12, Polyethylene,
+Perfluorononyl Dimethicone, Polyglyceryl-4
+Diisostearate/Polyhydroxystearate, Sebacate, Synthetic Beeswax,
+Tocopherol, Pentaerythrityl Tetra-Di-T-Butyl, Hydroxyhydrocinnamate,
+Persea Gratissima (Avocado) Oil, Copernicia Cerifera (Carnauba) Wax,
+Helianthus Annuus (Sunflower) Seed Oil, Phytosterols, Olea Europaea
+Fruit Oil, Sorbitan Oleat, Ascorbyl Palmitate, Tocopheryl Acetate. May Contain (+/-):
+ Iron Oxides (CI 77491, CI 77492, CI 77499), Mica (CI 77019), Titanium
+Dioxide (CI 77891), Ferric Ferrocyanide (CI 77510), Carmine (CI 75470)",4.7,pencil,eyeliner,[],2016-10-01T18:29:33.514Z,2017-12-23T21:08:06.614Z,http://makeup-api.herokuapp.com/api/v1/products/255.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/255/original/data?1514063286,"[{'hex_value': '#4E5768', 'colour_name': 'Loch Ness (Navy) '}, {'hex_value': '#312414', 'colour_name': 'Pebble Beach (Brown) '}, {'hex_value': '#53484C', 'colour_name': 'Pfeiffer Beach (Egg Plant) '}, {'hex_value': '#BEAC9E', 'colour_name': 'Secret Beach (Nude) '}, {'hex_value': '#5B7E84', 'colour_name': 'Lake Geneva '}, {'hex_value': '#3F4B97', 'colour_name': 'Lake Como '}]"
+254,pacifica,Pacifica Magical Multi-Pencil Prime & Line,16.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4f99def0f8d14a1a498118d7fca9fa89_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/pacifica-magical-multi-pencil-prime_110265.html?cat=477,https://well.ca,"The Pacifica Magical Multi-Pencil Prime & Line Lips, Eyes & Face is a multi-use pencil for priming, lining and covering. Use as a natural eyeliner to brighten, over blemishes as a primer (before applying your concealer), or on your lips as a line and prime to make any color pop! Our Magical Multi-Pencil is waterproof and made with rich mineral color to give you natural results that last.Features:Jojoba Oil - Helps keep skin around the lips and eyes moisturizedShea Butter - Helps protects and moisturizes skinVitamin E - Provides anti-aging benefits in addition to helping reduce the appearance of fine linesVitamin C Antioxidant - natural preservative that helps fight free radicals Ingredients: titanium dioxide CI 77891, hydrogenated simmondsia chinensis seed oil, simmondsia chinensis seed oil, caprylic / capric triglycerides, hydrogenated vegetable oil, mica, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, iron oxide CI 77492, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, iron oxide CI 77491, iron oxide CI 77499, tocopherol, ascorbyl palmitate",,,lip_liner,['Natural'],2016-10-01T18:29:32.153Z,2017-12-23T21:08:37.423Z,http://makeup-api.herokuapp.com/api/v1/products/254.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/254/original/open-uri20171223-4-tjb63?1514063317,[]
+253,annabelle,Annabelle Smudgeliner ,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/541b71a4d119bdae25eb1c3690bacf68_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-smudgeliner_97765.html,https://well.ca,"The new definition of smokey eye: edgy, soft, smudgeable! Annabelle Smudgeliners
+have a superior long-lasting formula offering rich colour pay-off that
+glides on smoothly to create a defined line, or can be easily blended
+with the built-in smudger tip to achieve a smokey, sultry look.
+Its excellent coverage means you can really get creative!
+Contains natural oxidants and Vitamin E. Mineral-oil free.
+Ophthalmologist tested.Shade Range: ",5.0,pencil,eyeliner,[],2016-10-01T18:29:31.183Z,2017-12-23T21:08:05.809Z,http://makeup-api.herokuapp.com/api/v1/products/253.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/253/original/data?1514063285,"[{'hex_value': '#146849', 'colour_name': 'Rich Chocolate '}]"
+252,mineral fusion,Mineral Fusion Eye Pencil,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3691e75a871b476e86f1e240ce784e70_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/mineral-fusion-eye-pencil_91719.html,https://well.ca,"Exceptionally rich, the mineral color of Mineral Fusion Eye Pencils glide on smoothly to line, define and enhance eyes. Formulated with Chamomile, Meadowfoam and Vitamin E to soothe delicate skin around eyes. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.Ingredients: Simmondsia Chinensis (Jojoba) Butter, Caprylic/Capric Triglyceride, Limnanthes Alba (Meadowfoam) Seed Oil, Hydrogenated Cottonseed Oil, Mangifera Indica (Mango) Seed Oil, Euphorbia Cerifera (Candelilla) Wax, Glyceryl Caprylate, Copernicia Cerifera (Carnauba) Wax, Macadamia Ternifolia Seed Oil, Tocopherol (Vitamin E), Chamomilla Recutita (Matricaria) Flower Extract, Ascorbyl Palmitate (Vitamin C), Iron Oxides (77491, 77492, 77499), Titanium Dioxide (77891), Mica (77019). Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.",4.5,pencil,eyeliner,"['Gluten Free', 'Natural']",2016-10-01T18:29:29.451Z,2017-12-23T21:08:05.636Z,http://makeup-api.herokuapp.com/api/v1/products/252.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/252/original/data?1514063285,"[{'hex_value': '#48445C', 'colour_name': 'Azure - Navy Blue '}]"
+251,wet n wild,Wet n Wild Sharpen Up! Dual Pencil Sharpener,1.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/52cb90513c65303b9ac96b0bb8f5e74c_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-sharpen-up-dual-pencil_114005.html,https://well.ca,Specially-designed dual pencil sharpener includes razor-sharp blades to keep pencils of all sizes perfectly-shaped.Features:Dual-purpose sharpener for pencils of all sizesRazor-sharp bladesCompact for easy traveling Directions: Insert pencil into appropriate hole depending on size of pencil and twist.,5.0,pencil,eyeliner,[],2016-10-01T18:29:28.262Z,2017-12-23T21:08:05.457Z,http://makeup-api.herokuapp.com/api/v1/products/251.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/251/original/open-uri20171223-4-1ky7y5m?1514063285,[]
+250,covergirl,CoverGirl Ink it! By Perfect Point Plus Eyeliner ,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/db7299d1c75f3e217b911e9a7be8783c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-ink-it-by-perfect-point_78616.html,https://well.ca,"Get inked — without the commitment! Ink It! colors glide on smoothly and
+ easily without skipping, dragging, or pulling. The bright, bold shades
+last all day long.Features: Bright, bold colors for new looks Lasts all day long — no smudging or creasingExpert precision applicationTwist up design",,pencil,eyeliner,[],2016-10-01T18:29:27.595Z,2017-12-23T21:08:05.330Z,http://makeup-api.herokuapp.com/api/v1/products/250.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/250/original/data?1514063285,[]
+249,annabelle,Annabelle Stay Sharp Waterproof Kohl Eyeliner,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e1b909a32d2c8a8075ac11972511e936_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-stay-sharp-waterproof-kohl_97762.html,https://well.ca,"Stop looking, you have just found the sharpest tool in the shed!Annabelle introduces the very first to mass market
+self-sharpening eyeliners with the Stay Sharp Waterproof Eyeliner.
+Annabelle’s truly innovative concept will keep beautistas on point and
+sharpeners away.The Stay Sharp secret is in the cap! The Annabelle Stay Sharp twist-on
+cap includes a sharpener. Every time the cap is twisted back on the
+pencil, the blades sharpen the tip to perfection and neatly keep the
+shavings. No fuss, no mess!Shade Range: Features:Shelf-sharpening pencilNo mess: lead shavings are kept inside the capFine tip for extra-precise applicationExtremely soft lead for a smooth, gliding applicationWaterproof formulaIntense pigmentation for best colour pay off and coverage",,pencil,eyeliner,[],2016-10-01T18:29:26.775Z,2017-12-23T21:08:05.016Z,http://makeup-api.herokuapp.com/api/v1/products/249.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/249/original/data?1514063284,"[{'hex_value': '#151219', 'colour_name': 'Go Black '}, {'hex_value': '#563734', 'colour_name': 'Cappuccino '}, {'hex_value': '#54473f', 'colour_name': 'Graphite '}, {'hex_value': '#001d63', 'colour_name': 'Midnight '}, {'hex_value': '#352a6e', 'colour_name': 'Ultraviolet '}, {'hex_value': '#2c4236', 'colour_name': 'Forest '}]"
+248,pacifica,Pacifica Natural Eye Pencil,16.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b2c0bdd88398baadd69b710d27893ca2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-natural-eye-pencil_94342.html,https://well.ca,"Pacifica Natural Eye Pencil is a waterproof, buttery smooth eye pencil that glides on easily to avoid pulling on the delicate eye area. Color glides on and stays put for those perfectly defined eyes. Whether it be a very fine line or the ever glamorous cat-eye, these pencils provide the right amount of saturated color to make your eyes pop.Formulated without: Animal ingredients (including carmine, beeswax and
+lanolin), animal testing, FD&C colors, mineral oil, parabens,
+phthalates, petroleum, propylene glycol, SLS, gluten, peanut oil and
+other ingredients you don’t want on your skin.Ingredients: Gun Metal (pewter) - hydrogenated simmondsia chinensis seed oil, mica, caprylic / capric triglycerides, hydrogenated vegetable oil, simmondsia chinensis seed oil, butyrospermum parkii butter, titanium dioxide CI 77891, canola oil, sclerocarya birrea seed oil, iron oxide CI 77499, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitateBare (Nude) - titanium dioxide CI 77891, hydrogenated simmondsia chinensis seed oil, simmondsia chinensis seed oil, caprylic / capric triglycerides, hydrogenated vegetable oil, mica, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, iron oxide CI 77492, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, iron oxide CI 77491, iron oxide CI 77499, tocopherol, ascorbyl palmitate.Fringe (brown) - hydrogenated simmondsia chinensis seed oil, iron oxide CI 77499, mica, iron oxide CI 77491, iron oxide CI 77492, hydrogenated vegetable oil, caprylic / capric triglyceride, simmondsia chinensis seed oil, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, candelilla cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitate.Jet (black) - iron oxide CI 77499, hydrogenated simmondsia chinenesis seed oil, caprylic / capric triglyceride, simmondsia chinenesis seed oil, hydrogenated vegetable oil, butyrospermum parkii butter, sclerocarya birrea seed oil, mica, candelilla cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitate",5.0,pencil,eyeliner,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:29:24.754Z,2017-12-23T21:08:04.906Z,http://makeup-api.herokuapp.com/api/v1/products/248.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/248/original/data?1514063284,[]
+247,covergirl,CoverGirl Liquiline Blast Eyeliner ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0e4882c00b6639844d9168d71f43c3ed_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-liquiline-blast-eyeliner_74467.html,https://well.ca,"With liquiline blast, you'll get all the intensity and staying power of a
+ liquid with ease and blendability of a pencil. Use the
+liner as-is for intense definition or smoke-it-out with the built-in
+smudger end for a subtle, smoky look.Features: Liquid-like formula + the ease of a pencil applicatorSmudger tip lets you customize your intensity",4.5,pencil,eyeliner,[],2016-10-01T18:29:22.771Z,2017-12-23T21:08:04.067Z,http://makeup-api.herokuapp.com/api/v1/products/247.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/247/original/data?1514063284,[]
+246,annabelle,Annabelle Smoothliner ,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/25372c697046520c10607be4c235d3ba_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/annabelle-smoothliner_97768.html,https://well.ca,"So creamy and smooth it feels like silk on your skin!Annabelle Smoothliners are
+available in a matte or metallic finish and allow for a clean line,
+adding depth and elegance to your eyes. Lovely and alluring eyes, all
+day long! Waterproof. Long-lasting. Hypo-Allergenic.Shade Range:",4.8,pencil,eyeliner,[],2016-10-01T18:29:20.194Z,2017-12-23T21:08:03.267Z,http://makeup-api.herokuapp.com/api/v1/products/246.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/246/original/data?1514063283,"[{'hex_value': '#807e7f', 'colour_name': 'Metal Daze '}]"
+244,marcelle,Marcelle Waterproof Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/268575c4edd3108568af16e39ad69517_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-waterproof-eyeliner_100319.html,https://well.ca,"
+ Use Marcelle Waterproof Eyeliner for impeccably lined eyes anywhere, anytime!
+Perfectly blendable, its creamy formula allows for a precise and
+intensely coloured line. The smooth texture of this waterproof eyeliner
+virtually glides on the skin and stays put all day long, resisting to
+water, humidity and heat. Long-lasting, it is nonetheless easily removed
+ with any Marcelle eye make-up remover. Available in a matte or
+pearlized finish.
+
+Hypo-allergenic and perfume free.Shade Range: ",3.0,pencil,eyeliner,['Canadian'],2016-10-01T18:29:17.331Z,2017-12-23T20:51:33.920Z,http://makeup-api.herokuapp.com/api/v1/products/244.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/244/original/open-uri20171223-4-149bhb5?1514062293,"[{'hex_value': '#0e0e0e', 'colour_name': 'Midnight Black '}, {'hex_value': '#2d2824', 'colour_name': 'Taupe '}, {'hex_value': '#37302a', 'colour_name': 'Expresso '}, {'hex_value': '#3f4752', 'colour_name': 'Indigo '}, {'hex_value': '#363636', 'colour_name': 'Deep Charcoal '}, {'hex_value': '#23132d', 'colour_name': 'Mulberry '}, {'hex_value': '#8653dc', 'colour_name': 'Purple Rain '}, {'hex_value': '#6a73c2', 'colour_name': 'Electric Blue '}, {'hex_value': '#719442', 'colour_name': 'Effervescent '}, {'hex_value': '#43b1a6', 'colour_name': 'Caribbean '}, {'hex_value': '#34815d', 'colour_name': 'Emerald '}, {'hex_value': '#64b3eb', 'colour_name': 'Blue Lagoon '}, {'hex_value': '#163516', 'colour_name': 'Metal Green '}, {'hex_value': '#3e3731', 'colour_name': 'Bronze '}]"
+243,physicians formula,Physicians Formula Shimmer Strips Eye Enhancing Eyeliner Trio ,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b5c7acadc4e472a567e428979d68357c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_70958.html,https://well.ca,"Warm Nude Eyeliner Trio! The perfect set of earth tone eyeliners to create a Warm Nude look for ANY eye color! Long-wearing, water-resistant and smudge-resistant formula for 24-Hour wear.Tips and Tricks for a Smoky Eye: Apply Eyeliner at the base of upper and lower lash line. Layer shades together for endless looks!Ingredients: Cyclopentasiloxane. Trimethylsiloxysilicate. Polyethylene. Ozokerite.
+Lauroyl Lysine. Synthetic Beeswax. Octyldodecanol. Disteardimonium
+Hectorite. Propylene Carbonate. Lecithin. Ascorbyl Palmitate. Citric
+Acid. Tocopherol. May Contain: Iron Oxides. Titanium Dioxide. Mica.
+Aluminum Powder. Bismuth Oxychloride. Black 2. Blue 1 Lake. Carmine.
+Chromium Hydroxide Green. Chromium Oxide Greens. Ferric Ammonium
+Ferrocyanide. Ferric Ferrocyanide. Manganese Violet. Silica. Tin Oxide.
+Ultramarines. Yellow 5 Lake.Hypoallergenic. Fragrance-free. Paraben-Free. Gluten Free.
+Dermatologist approved. Safe for sensitive eyes and contact lens
+wearers.",5.0,pencil,eyeliner,['Gluten Free'],2016-10-01T18:29:14.986Z,2017-12-23T20:51:33.744Z,http://makeup-api.herokuapp.com/api/v1/products/243.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/243/original/data?1514062293,[]
+242,l'oreal,L'Oreal Paris Infallible Silkissime Eyeliner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a132f78e0b9e4aa4cca37c9f05267897_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-infallible-silkissime_96632.html,https://well.ca,"
+ L'Oréal Paris introduces Silkissime™ by
+Infallible® Eyeliner. The formula glides on like silk for a soft and
+luxurious line with up to 16H of intensity.Features:
+
+Rich, silky formulaSmudge-resistant, up to 16H wearOphthalmologist testedSuitable for sensitive eyes and contact lens wearers
+ ",5.0,pencil,eyeliner,[],2016-10-01T18:29:13.117Z,2017-12-23T20:51:33.338Z,http://makeup-api.herokuapp.com/api/v1/products/242.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/242/original/data?1514062293,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#3C393A', 'colour_name': 'Charcoal '}, {'hex_value': '#2A61AC', 'colour_name': 'Cobalt Blue '}, {'hex_value': '#D99A85', 'colour_name': 'Highlighter '}, {'hex_value': '#242A5F', 'colour_name': 'Plum '}, {'hex_value': '#7F4195', 'colour_name': 'Pure Purple '}, {'hex_value': '#2F939E', 'colour_name': 'True Teal '}]"
+240,l'oreal,L'Oreal Paris Extra-Intense Liquid Pencil Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cf225e409760daf4dea62290990008a6_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-extra-intense-liquid_29589.html,https://well.ca,Now get the intense look and luxurious feel of a liquid liner with the easy application and precision of a pencil. Extra-Intense Liquid Pencil Eyeliner glides on smoothly and evenly for beautiful definition in a single stroke. The smudge-resistant formula provides 16 hours of non-stop wear. ,4.3,pencil,eyeliner,[],2016-10-01T18:29:09.067Z,2017-12-23T20:51:32.749Z,http://makeup-api.herokuapp.com/api/v1/products/240.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/240/original/data?1514062292,"[{'hex_value': '#000009', 'colour_name': 'Carbon Black '}]"
+239,covergirl,CoverGirl Ink it! By Perfect Point Plus Eyeliner,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e4763257a2290da070bd300212d16db8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-ink-it-by-perfect-point_78614.html,https://well.ca,"Get inked — without the commitment! Ink It! colors glide on smoothly and
+ easily without skipping, dragging, or pulling. The bright, bold shades
+last all day long.Features: Bright, bold colors for new looks Lasts all day long — no smudging or creasingExpert precision applicationTwist up design",2.5,pencil,eyeliner,[],2016-10-01T18:29:08.005Z,2017-12-23T20:51:32.964Z,http://makeup-api.herokuapp.com/api/v1/products/239.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/239/original/data?1514062292,[]
+238,physicians formula,Physicians Formula Shimmer Strips Eye Enhancing Eyeliner Trio,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4ce7e1ce460841dfc5f42c29221cf5c1_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_61188.html,https://well.ca,"Shimmer Strips Custom Eye Enhancing Eyeliner Trio is the perfect set of three eyeliners to enhance your eye colour and provide glamorous definition! Long-wearing, water-resistant and smudge-resistant formula for 24-Hour wear.Directions for Use: Apply eyeliner at the base of upper lashes. Layer shades together for endless looks. For more defined eyes, apply along lower lash line as well.Ingredients: Cyclopentasiloxane. Trimethylsiloxysilicate. Polyethylene. Ozokerite. Lauroyl Lysine. Synthetic Beeswax. Octyldodecanol. Disteardimonium Hectorite. Propylene Carbonate. Lecithin. Ascorbyl Palmitate. Citric Acid. Tocopherol. May Contain: Iron Oxides. Titanium Dioxide. Mica. Aluminum Powder. Bismuth Oxychloride. Black 2. Blue 1 Lake. Carmine. Chromium Hydroxide Green. Chromium Oxide Greens. Ferric Ammonium Ferrocyanide. Ferric Ferrocyanide. Manganese Violet. Silica. Tin Oxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Safe for sensitive eyes and contact lens wearers.",5.0,pencil,eyeliner,['Gluten Free'],2016-10-01T18:29:05.433Z,2017-12-23T21:08:04.790Z,http://makeup-api.herokuapp.com/api/v1/products/238.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/238/original/data?1514063284,[]
+237,covergirl,CoverGirl Perfect Point Plus Eyeliner Pencil ,7.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/74749bda64dcfe89dfdbf3f2f248cd3a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-perfect-point-plus_74584.html,https://well.ca,"The pencil gives you control and versatility. Want a precise line? It
+glides on easily. Want to soften a bit? There's a soft smudger tip. Best
+ of all? No sharpening necessary, it's got a specially designed
+self-sharpener inside. So you always get the point—perfectly.Features: Specially-designed self-sharpenerSoft smudger tip for great blendingGlides on easilyOphthalmologically-tested",4.0,pencil,eyeliner,[],2016-10-01T18:29:04.719Z,2017-12-23T20:51:32.842Z,http://makeup-api.herokuapp.com/api/v1/products/237.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/237/original/data?1514062292,[]
+236,milani,Milani Brow & Eye Highlighter Duo Pencil,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4c7b17775d8a73cf4585e20761098b79_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-brow-eye-highlighter-duo_89096.html?cat=324,https://well.ca,"A versatile two-in-one, this double-ended pencil performs an almost endless array of tasks. Depending on which of our three shade duos you pick, the matte side can be used as an eye shadow base (or shadow itself) and brow highlighter, while the pearl side can brighten up the inner corners of the eyes, and lift and define the brows. Vanilla/Natural Taupe brightens, shapes, and fills in brows. So much brow bang for your buck.Features:Matte side can be used as an eye shadow base and brow highlighterPearl side can brighten up the inner corners of the eyes, and lift and define the browsVanilla/Natural Taupe brightens, shapes and fills browsEasy to useApplication: Use the matte side to enhance and shape the brows, use the pearl side as an instant brow lift and eye brightener. 01 Matte Beige/High Glow: Both sides can be used underneath the brow bone as a highlighter. Matte Beige can be used as an eyeshadow or eyeshadow base. High Glow can be used in the inner corners of the eyes to brighten. 02 Matte Cream/Luminous Lift: Both sides can be used underneath the brow bone as a highlighter. Matte Beige can be used as an eyeshadow or eyeshadow base. High Glow can be used in the inner corners of the eyes to brighten. 03 Vanilla/Natural Taupe: Both sides are matte. Vanilla can be used underneath the brow bone as a highlighter. It can also be used as an eyeshadow or eyeshadow base. Natural Taupe can be used to define and fill-in brows and as an eyeshadow. Ingredients: Isodecyl Isononanoate, Hydrogenated Coco-Glycerides, Euphorbia Cerifera Cera (Candelilla Wax), Cera Microcristallina (Microcrystalline Wax), Polymethyl Methacrylate, Silica, Copernicia Cerifera Cera (Carnauba Wax), Disteardimonium Hectorite, Tocopherol, Propylene Carbonate, Ascorbyl Palmitate, Mica, Titanium Dioxide (CI 77891), Iron Oxide (CI 77491). +/- May Contain: Iron Oxides (CI 77492, CI 77499). ",3.3,pencil,eyeliner,[],2016-10-01T18:29:04.105Z,2017-12-23T20:51:32.146Z,http://makeup-api.herokuapp.com/api/v1/products/236.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/236/original/open-uri20171223-4-inzckb?1514062292,"[{'hex_value': '#F1D5A6', 'colour_name': '01 Matte Beige & HighGlow '}, {'hex_value': '#ECBE9C', 'colour_name': '03 Vanilla & Natural Taupe '}]"
+235,l'oreal,L'Oreal Paris Infallible Never Fail Eye Liner,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2f7610f4a82cc1c7abb8ddc33ab236f0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-infallible-never-fail_10010.html,https://well.ca,Enjoy beautifully defined eyes for up to 16 hours! New Infallible Never Fail Eyeliner is L'Oreal's most advanced mechanical liner with superior long-wearing technology. The rich and creamy formula glides on easily and evenly and sets quickly for fade-proof colour. Use the bulit-in smudger and sharper to create versatile eyeliner looks for any occasion.,3.5,pencil,eyeliner,[],2016-10-01T18:29:03.449Z,2017-12-23T20:51:15.534Z,http://makeup-api.herokuapp.com/api/v1/products/235.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/235/original/data?1514062275,"[{'hex_value': '#000009', 'colour_name': 'Black '}, {'hex_value': '#4E3801', 'colour_name': 'Black Brown '}, {'hex_value': '#474747', 'colour_name': 'Carbon Black '}]"
+234,sante,Sante Kajal Eyeliner Pencil,17.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9006e43a8083b3dff963ecbfa02c3707_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/sante-kajal-eyeliner-pencil_51514.html,https://well.ca,"Sante gentle eyeliner pencils have a wonderful texture. They are perfectly suitable
+ for use on the inner eyelid. Or can be used blended with a sponge to create a
+sophisticated effect and make the color last longer. Vegan and
+gluten-free. Not tested on animals.Ingredients: Caprylic/Capric Triglyceride, Ricinus Communis
+(Castor) Seed Oil*, Hydrogenated Palm Kernel Glycerides, Copernica
+Cerifera (Carnauba) Wax, Hydrogenated Castor O il, Euphorbia Cerifera
+(Candelilla) Wax, Cera Alba (Beeswax), Hydrogenated Palm Glycerides,
+Ascorbyl Palmitate, Tocopherol, Mica, [+/-CI 77007, CI 77288, CI 77491,
+CI 77492, CI 77499, CI 77510, CI 77742, CI 77891]",3.9,pencil,eyeliner,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:29:01.951Z,2017-12-23T20:51:26.864Z,http://makeup-api.herokuapp.com/api/v1/products/234.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/234/original/open-uri20171223-4-1tzjkro?1514062286,"[{'hex_value': '#386e6e', 'colour_name': 'No. 10 Petrol '}, {'hex_value': '#5f769c', 'colour_name': 'No.4 Night Blue '}, {'hex_value': '#5a5b60', 'colour_name': 'No.7 Anthracite '}]"
+233,dr. hauschka,Dr. Hauschka Kajal Eyeliner,24.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/62462de8cb4b6d0759b9e4b13bc602ed_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-kajal-eyeliner_34277.html,https://well.ca,"Kajal Eyeliner pencils, highlight and define the beauty of your eyes. Mineral pigments are fused with quince and Japan waxes for smooth, effortless application. Extracts of anthyllis, witch hazel and black tea have a soothing effect on the delicate skin around the eyes.
+Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGVegan (Kajal Eyeliner 02-05)Dermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditions
+
+ ",4.4,pencil,eyeliner,[],2016-10-01T18:29:00.524Z,2017-12-23T20:51:31.701Z,http://makeup-api.herokuapp.com/api/v1/products/233.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/233/original/data?1514062291,"[{'hex_value': '#252A30', 'colour_name': 'Black (05) '}, {'hex_value': '#072A4A', 'colour_name': 'Dark Blue (01) '}, {'hex_value': '#34383B', 'colour_name': 'Soft Brown (04) '}, {'hex_value': '#5F6A6E', 'colour_name': 'Soft Grey (02) '}]"
+232,maybelline,Maybelline Line Express Eyeliner,7.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4e88f928ad91c88e2ecb8596431ce799_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-line-express-eyeliner_9738.html,https://well.ca,Maybelline Line Express Eyeliner's intense color formula + smart tip smudger makes this liner glide on smoothly and is easy to apply with just one stroke.Features: Creamy formula delivers intense colorContour smudger makes blending easyAll-day wearSafe for sensitive eyes and ophthalmologist-testedContact lens safe,4.5,pencil,eyeliner,[],2016-10-01T18:28:59.422Z,2017-12-23T20:51:31.255Z,http://makeup-api.herokuapp.com/api/v1/products/232.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/232/original/open-uri20171223-4-1gco531?1514062291,[]
+231,almay,Almay Intense i-Colour Bring Out Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/384c7e6d20cf4ad138b7120b43a8a310_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-intense-i-colour-bring-out_4442.html,https://well.ca,"
+
+Bring out your eye color with rich contrasting color! This eyeliner softly defines your eyes with a pearlescent color that will make your eye color pop. Comes with a convenient built in sharpener that ensures precise application— and resists smudging and fading throughout the day. Features:
+
+Hypoallergenic
+Non-irritating
+Ophthalmologist, Clinically and allergy tested
+Suitable for contact lens wearers
+
+
+",4.3,pencil,eyeliner,[],2016-10-01T18:28:58.264Z,2017-12-23T20:51:31.030Z,http://makeup-api.herokuapp.com/api/v1/products/231.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/231/original/data?1514062290,"[{'hex_value': '#79361d', 'colour_name': 'Brown Topaz for Blue Eyes '}, {'hex_value': '#403D69', 'colour_name': 'Purple Amethyst Brown Eyes '}, {'hex_value': '#5E4643', 'colour_name': 'Raisin Quartz for Green Eyes '}]"
+230,maybelline,Maybelline Unstoppable Eyeliner,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bab89a9fe13b34235e0dd1f4f44c05cf_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-unstoppable-eyeliner_3737.html,https://well.ca,"Unstoppable Eyeliner allows ultra-smooth application for defined lines and eyes.
+It is a self-sharpening mechanical pencil, and will hold your look in place all day long.
+Waterproof.
+Ophthalmologist tested, contact lens safe for sensitive eyes.
+",4.3,pencil,eyeliner,[],2016-10-01T18:28:57.194Z,2017-12-23T20:51:30.858Z,http://makeup-api.herokuapp.com/api/v1/products/230.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/230/original/open-uri20171223-4-1noqhmg?1514062290,"[{'hex_value': '#736364', 'colour_name': 'Onyx '}, {'hex_value': '#797B7D', 'colour_name': 'Pewter '}]"
+229,pure anada,Pure Anada Pureline Pencil Eye Liner,14.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4b8ab1da556c57a01854b5bf23016f48_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-pureline-pencil-eye-liner_83251.html,https://well.ca,"These natural pencils are made with plant oils and mineral pigments. If
+ you prefer a traditional pencil to line your eyes, and want to use a
+product with natural ingredients, try Pure Anada
+Pureline eye pencils.Ingredients: Octyldodlecyl Stearoyl Stearate (plant origin), Triglycerides, Hydrogenated Vegetable Oil, Prunus Amygdalus Dulcis (Organic Sweet Almond) Oil, Copernicia Cerifera (Carnauba) Wax, Olus Oil, Candelilla Cera, Mica, Sesamum Indicum (Sesame) Oil, Polyglyceryl-3 Diisostearate, Glyceryl Caprylate, Tocopheryl Acetate, Sorbic Acid, Titanium Dioxide (C.I. 77499), Iron Oxide (C.I. 77891 or 77491) Note: The ingredients in Pure Anada Pureline Pencils are approved by Eco-cert and/or certified organic.",4.0,pencil,eyeliner,"['Canadian', 'Natural']",2016-10-01T18:28:55.009Z,2017-12-23T20:51:30.551Z,http://makeup-api.herokuapp.com/api/v1/products/229.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/229/original/data?1514062290,"[{'hex_value': '#221E1F', 'colour_name': 'Black '}, {'hex_value': '#412828', 'colour_name': 'Brown '}]"
+228,l'oreal,L'Oreal Paris Colour Riche Le Khol Eyeliner,9.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/94a08dc5666ab926584801c34140b29e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche-le-khol_85924.html,https://well.ca,"L'Oreal Paris Colour Riche Le Khôl Eyeliner comes in a range of beautiful, wearable shades with a luxurious, intense formula
+ combining oil and wax. This eyeliner softly glides over the
+eyelid allowing you to achieve a long-lasting and intense colour result.",4.5,pencil,eyeliner,[],2016-10-01T18:28:53.842Z,2017-12-23T20:51:30.430Z,http://makeup-api.herokuapp.com/api/v1/products/228.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/228/original/data?1514062290,"[{'hex_value': '#FFFFFF', 'colour_name': 'Immaculate Snow '}, {'hex_value': '#1B1B1B', 'colour_name': 'Midnight Black '}]"
+227,,Earth Lab Vegan Mineral Eye Pencil,18.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e43ef102523ce5c38bd92ce1cb562395_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/earth-lab-vegan-mineral-eye-pencil_78793.html,https://well.ca,"These natural minerals eye pencils are made fresh to order. They
+ are super soft, and once they're on they do not run or smudge easily.
+That said - they do wash off easily as well!Ingredients: Jojoba Oil, Castor Oil, Carnauba Wax,
+Candelillia Wax, Ozokerite Wax, Vitamin E, Mica, and Iron Oxides
+Mineral pencils expire within 6 months of purchase.",3.4,pencil,eyeliner,"['Natural', 'Vegan', 'Canadian']",2016-10-01T18:28:52.926Z,2017-12-23T20:51:30.288Z,http://makeup-api.herokuapp.com/api/v1/products/227.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/227/original/data?1514062290,"[{'hex_value': '#322423', 'colour_name': 'Espresso '}]"
+226,revlon,Revlon ColorStay Eye Liner,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f8d347e5c094ab100de0f04bc163eb79_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-eye-liner_3845.html,https://well.ca,"ColorStay Eyeliner glides on easily adding drama and definition to your eyes for up to 16 hours. Waterproof formula won't smear, smudge or fade",4.7,pencil,eyeliner,[],2016-10-01T18:28:52.236Z,2017-12-23T20:51:29.908Z,http://makeup-api.herokuapp.com/api/v1/products/226.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/226/original/data?1514062289,[]
+225,maybelline,Maybelline Color Show Kohl Liner,5.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c2fcd605bbf3941b521fb74bfa942ac6_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-show-kohl-liner_101020.html,https://well.ca,"Maybelline Color Show Kohl Liner is the hottest new way to create statement eyes!The brightest colors. The easiest glide. Creamy, rich color has never
+been this precise!",,pencil,eyeliner,[],2016-10-01T18:28:51.002Z,2017-12-23T20:51:29.742Z,http://makeup-api.herokuapp.com/api/v1/products/225.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/225/original/open-uri20171223-4-77bvjo?1514062289,"[{'hex_value': '#2e4064', 'colour_name': 'Beauty Blue '}, {'hex_value': '#56403a', 'colour_name': 'Chocolate Chip '}, {'hex_value': '#008687', 'colour_name': 'Edgy Emerald '}, {'hex_value': '#854f58', 'colour_name': 'Marvelous Maroon '}, {'hex_value': '#837163', 'colour_name': 'Sparkle Grey '}, {'hex_value': '#00849d', 'colour_name': 'Turquoise Flash '}, {'hex_value': '#000000', 'colour_name': 'Ultra Black '}, {'hex_value': '#574c7c', 'colour_name': 'Vibrant Violet '}]"
+224,stila,Stila La Quill Eye Liner Brush,36.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f70d6757e11ac6303da25cfa2c6cd3dc_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/stila-la-quill-eye-liner-brush_108693.html?cat=2312,https://well.ca,"Stila La Quill Eye Liner Brush is a coveted selection of Stila’s best-selling products exclusively handpicked by Stila's very own lead makeup artist, Sarah Lucero. Inspired by Sarah Lucero's work on fashion runways, Stila's artistry proven makeup performs as promised.Features:Designed to dispense liquid eye liner evenly and precisely in a thin or bold lineBrush acts like a calligraphy pen, depositing the formula effortlessly for chic precise linesLa Quill works best with stila long-wearing liquid liner but may also be used with other types of eyelinersDirections: Dip stila's La Quill Precision Eye Liner Brush directly into cushion (sold separately), then draw across the lid in a slow, smooth, fluid motion. Use the brush to create a tight line by drawing short dashes along the lash line, connecting the dashes and moving from inner eye to outer corner.",,liquid,eyeliner,[],2016-10-01T18:28:50.112Z,2017-12-23T20:51:29.543Z,http://makeup-api.herokuapp.com/api/v1/products/224.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/224/original/open-uri20171223-4-l5ckj9?1514062289,[]
+223,nyx,NYX Super Fat Eye Marker,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c53e6de2dbf4c4679ba491247a5ab608_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/nyx-super-fat-eye-marker_118091.html,https://well.ca,The NYX Super Fat Eye Marker is a real magic marker! The extra wide felt tip eye liner is perfect for creating a dramatic cat-eye look. The eye marker application is smooth and the striking results are long-lasting. ,,liquid,eyeliner,[],2016-10-01T18:28:47.514Z,2017-12-23T20:51:29.145Z,http://makeup-api.herokuapp.com/api/v1/products/223.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/223/original/data?1514062289,[]
+222,covergirl,CoverGirl Bombshell Powder Brow & Liner in Blonde,9.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/49400a1459a15523535e61d0db29e57d_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-bombshell-powder-brow_113684.html,https://well.ca,"Bring sexy smolder to eyes & brows. Soft powder adheres to brows and defines eyes.Features:2-in-1 brow & liner powderVelvety powder fills in browsUse also to softly line & define eyesDirections: Twist open and pull applicator up and tap lightly on tube side to remove excess powder. Lightly brush over eyebrows until desired effect is reached. Also use to softly line & define eyesIngredients: Boron Nitride, Dimethicone, Silica, Polyethylene, Pentylene Glycol, Pumice, Kaolin, Dimethiconol, Phenoxyethanol, Ethylhexylglycerin, Dehydroacetic Acid, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, May Contain/Peut Contenir: Titanium Dioxide, Iron Oxides, Mica",,pencil,eyeliner,[],2016-10-01T18:28:45.555Z,2017-12-23T21:08:11.210Z,http://makeup-api.herokuapp.com/api/v1/products/222.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/222/original/open-uri20171223-4-6x2r8c?1514063291,[]
+221,maybelline,Maybelline Eye Studio Master Graphic in Striking Black,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9c98f99f2033bb942286fa1bb32b4c51_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eye-studio-master-graphic_112723.html,https://well.ca,Eye Studio Master Graphic Liquid Liner from Maybelline New York. Love the graphic look? This genius eyeliner automatically draws the boldest line with the sharpest edge! Features:Automatically draw the boldest line with the sharpest edgePitch black finishUse the flat side for bold line. Use the sharp tip for the edges,,liquid,eyeliner,[],2016-10-01T18:28:44.845Z,2017-12-23T20:51:28.186Z,http://makeup-api.herokuapp.com/api/v1/products/221.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/221/original/open-uri20171223-4-1v1tlhi?1514062288,[]
+220,covergirl,CoverGirl Intensify Me! Liquid Liner,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/28f0f546d02a7c4330b4d186d42e3c32_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-intensify-me-liquid-liner_105497.html,https://well.ca,"Try CoverGirl Intensify Me! Liquid Liner and get the control of a pencil with the intensity of a liquid eyeliner for
+beautifully defined eyes every time. The all-new paddle-shaped tip gives
+ you two looks in one—thick and dramatic or thin and elegant. The
+intense black formula glides on smoothly and dries quickly for instant
+drama. Clinically tested, suitable for sensitive eyes.Directions: Stand 6 inches away from a mirror and tilt your chin up, so
+that when you look down your nose into the mirror, you can see your
+entire eyelid. Dab concealer or dust translucent powder on your upper
+lids. Blend well with a sponge or lightly pat with a fingertip to cover
+veins and prevent creasing.Before applying liner,
+determine your eye shape. If eyes are close-set or round, line only the
+outer corners. Otherwise, line the entire upper lid.Gently pull your eyelid taut at an upward angle. Beginning at the inner
+corner, draw small, connected dashes along the top lashes. Be sure to
+stay close to the roots so there is no skin visible between the lashes
+and the liner. To make eyes look bigger, extend the liner slightly
+beyond the outer corners.Use a cotton swab to fix mistakes. For larger messes, dip it in makeup remover.",,liquid,eyeliner,[],2016-10-01T18:28:44.178Z,2017-12-23T20:51:27.942Z,http://makeup-api.herokuapp.com/api/v1/products/220.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/220/original/data?1514062287,[]
+216,l'oreal,L'Oreal Paris Infallible Black Velvet Liner,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b6ca6fa1ab5021b55d9ca0ca3ed40437_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/loreal-paris-infallible-black_112606.html,https://well.ca,"Black Velvet by Infallible is L'Oreal's first plush velvet eyeliner for the ultimate bold, slick line in one stroke. This intensely vibrant black liner has an easy application felt tip to deliver supreme softness with a satin-like finish. Features:14-hour wearPlush velvet tipSatiny black finishHow to Use: For thinner lines, hold liner so tip is horizontal. For thicker lines, hold liner so tip is vertical. Start by the inner corner and apply across lashline to outer corner of eye. Apply to bottom lid as close to waterline as possible. Connect top and bottom lines at the outer corner of the eyelid.INGREDIENTS: AQUA / WATER / EAU - BUTYLENE GLYCOL - CI 77266 / BLACK 2 - ACRYLATES COPOLYMER – GLYCERIN - BEHENETH-30 - SODIUM LAURETH-11 CARBOXYLATE – PHENOXYETHANOL - LAURETH-10 - SODIUM LAURETH-12 SULFATE – ALCOHOL - POLYSORBATE 80 - SODIUM DEHYDROACETATE - POTASSIUM SORBATE - C11-15 PARETH-7 -CAPRYLYL GLYCOL ",,liquid,eyeliner,[],2016-10-01T18:28:39.538Z,2017-12-23T20:51:27.298Z,http://makeup-api.herokuapp.com/api/v1/products/216.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/216/original/open-uri20171223-4-1m7jkc5?1514062287,[]
+215,milani,Milani Eye Tech Bold Liquid Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/be5757ecba60adb5369518ee5eb5d16e_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/milani-eye-tech-bold-liquid-eyeliner_108628.html,https://well.ca,"Take flight with this big, bold, wing-perfecting felt-tip tool. Whether you’re into high-drama cat eyes or the daintier “kitten” look, they’ll go on smoothly in a single, precise stroke. Bonus: This liner lasts for hours, without a smear or a smudge. Game-changer. Available in Rich Black.Features:Smooth applicationPrecision tipLong-lastingSmear-proof, non-clumpingSmudge-proofApplication: Begin applying a thin line from the inner to the outer corner of your eyelid along your upper or lower lash line. Tip: Store horizontally. Ingredients: Paraben Free Water (Aqua), Butylene Glycol, Alcohol, Glycerin, Black 2 (CI 77266), Polyacrylate-16, Disodium Cetyl Phenyl Ether Disulfonate, PEG/PPG-14/4 Dimethicone, PEG-14 Dimethicone, Phenoxyethanol, Dehydroacetic Acid, Caprylyl Glycol, Diethylhexyl Sodium Sulfosuccinate, Disodium Laureth Sulfosuccinate, Sodium Laureth-12 Sulfate.",,liquid,eyeliner,[],2016-10-01T18:28:38.518Z,2017-12-23T20:51:27.023Z,http://makeup-api.herokuapp.com/api/v1/products/215.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/215/original/data?1514062286,[]
+212,cargo cosmetics,Cargo Cosmetics TexasLiner Liquid Eye Liner,22.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c1a77bb86938bd9d825c6718216cee58_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-texasliner-liquid_87491.html,https://well.ca,"Everything is bigger in Texas! This easy to control chubby felt tip
+liquid eyeliner allows for a precise cat eye in one stroke! Soft and
+subtle or bold and dramatic? You decide. This quick drying water-based
+formula glides on perfectly creating an intense, long-lasting
+crease-proof line. Shorter applicator fits snugly in the palm of the
+hand for a mistake-proof line.Features:
+Paraben-freeOphthalmologically testedHorizontal storage is strongly recommendedThe water-based formula glides on perfectly and dries quickly creating an intense, crease-proof line Shorter applicator fits snugly in the palm of the hand for a mistake-proof lineHow to Use: Hold the pen at an angle so the tip lies flat against the lash line.
+Slowly move the pen from the inner corner of the eye to the outer corner
+ of the eye using small strokes. Ingredients: Aqua (Water), Polyurethane-2, Cera Alba (Beeswax), Sucrose Acetate
+Isobutyrate, Glyceryl Stearate, Methyl Pyrrolidone, Glyceryl Stearate
+Citrate, Dimethylimidazolidinone Rice Starch, PEG-6 Beeswax, VP/Eicosene
+ Copolymer, Alcohol Denat., Sorbitol, Benzyl Alcohol, Diethylhexyl
+Sebacate, Simmondsia Chinensis (Jojoba) Seed Oil, Laureth-2 Benzoate,
+Butylene Glycol, VP/Hexadecene Copolymer, Tocopherol, Polybutene,
+Dimethicone PEG-8 Polyacrylate, Parfum (Fragrance),
+Hydroxypropylcellulose, Alpha-Isomethyl Ionone, Sodium Lauryl Sulfate,
+Dipropylene Glycol, Laureth-23, Geraniol, Iodopropynyl Butylcarbamate,
+Citronellol, Linalool, Methylparaben, Phenoxyethanol, Limonene,
+Butylparaben, Isobutylparaben, Isopropylparaben. +/- : CI 77499 (Iron
+Oxides).",,liquid,eyeliner,[],2016-10-01T18:28:35.693Z,2017-12-23T20:51:25.748Z,http://makeup-api.herokuapp.com/api/v1/products/212.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/212/original/data?1514062285,[]
+211,wet n wild,Wet n Wild ProLine Graphic Marker Eyeliner,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/917bddd5782d5f05820f61f0bef8f23e_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-proline-graphic-marker_113994.html?cat=324,https://well.ca,"Get graphic with Wet n Wild ProLine Graphic Marker Eyeliner! Draw bold lines with this soft, angled marker tip. This marker liner gives you full control for the quickest, easiest graphic application ever! Features:Create bold graphic looks or thin subtle lines with the angled markerDark, opaque color for bold resultsQuick drying and smudge-freeDirections: Create a variety of lines by adjusting angle of the unique angled marker tip.Ingredients: Water/Eau, Acrylates Copolymer, Laureth-21, Butylene Glycol, PEG-40 Hydrogenated Castor Oil, Glycerin, Propanediol, Propylene Glycol, Chlorphenesin, Dipotassium Glycyrrhizate, Caprylhydroxamic Acid, Trisodium EDTA, Black 2/CI 77266. ",,pencil,eyeliner,[],2016-10-01T18:28:32.635Z,2017-12-23T21:08:09.236Z,http://makeup-api.herokuapp.com/api/v1/products/211.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/211/original/open-uri20171223-4-h1k0kt?1514063289,"[{'hex_value': '#202446', 'colour_name': 'Airliner Blue '}, {'hex_value': '#272830', 'colour_name': 'Jetliner Black '}]"
+210,,Pysicians Formula Eye Booster Cushion Liquid Liner + Serum Ultra Black,15.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7edeec469ab0103287cdc2c984b39d28_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/pysicians-formula-eye-booster_112247.html,https://well.ca,"Unique & Professional Cushion Eyeliner: Innovative liquid formula with sponge cushion delivery system dispenses the perfect amount of eyeliner onto your brush for a precise, sophisticated line every time. Advanced formula includes lash boosting complex that enhances the appearance of lashes while providing instant definition in one step.Features:Includes eyeliner brush for easy, mistake-proof applicationHigh-tech formula is long-wearing, water-resistant and smudge-resistant24-hour wearDirections: Apply eyeliner at the base of lashes. Never apply eyeliner inside the lash line. Keep cap tightly closed to prevent product from drying out. Wipe off brush on clean tissue after each use. Ingredients: Water/Eau, Iron Oxides, Acrylates Copolymer, Butylene Glycol, Black 2, Stearic Acid, Glyceryl Stearate, Oleyl Alcohol, Polybutene, Myristoyl Pentapeptide-17, Panthenol, Troxerutin, Tocopheryl Acetate, Acrylates/C10-30 Alkyl Acrylate Crosspolymer, Caprylyl Glycol, Cellulose Gum, Ethylhexylglycerin, Glycerin, Hectorite, Hexylene Glycol, Magnesium Aluminum Silicate, Styrene/Acrylates Copolymer, Triethanolamine, Xanthan Gum, 1,2-Hexanediol, Benzoic Acid, Phenoxyethanol, Sodium Benzoate ",,liquid,eyeliner,"['Gluten Free', 'Natural']",2016-10-01T18:28:31.363Z,2017-12-23T20:51:25.270Z,http://makeup-api.herokuapp.com/api/v1/products/210.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/210/original/open-uri20171223-4-5m9ed8?1514062285,[]
+209,annabelle,Annabelle EyeInk2 Liquid Eyeliner Duo,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e36fc76e51587b115b3358c336d0fb50_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/annabelle-eyeink2-liquid-eyeliner_108647.html,https://well.ca,"
+ Get the ultimate lines with this practical double-ended
+eyeliner! The Annabelle EyeInk2 Liquid Eyeliner Duo has one ultrafine tip that allows you to create thin, precise lines
+while the other tip creates thicker lines. Double the precision, double the fun! Features:
+Glossy formulaFast dryingLong lasting up to 10H+WaterproofSmudgeproofSuitable for sensitive eyes and contact lens wearers ",,liquid,eyeliner,[],2016-10-01T18:28:30.157Z,2017-12-23T20:51:14.910Z,http://makeup-api.herokuapp.com/api/v1/products/209.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/209/original/open-uri20171223-4-1kvn7no?1514062274,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#4E3D36', 'colour_name': 'Brown '}]"
+207,annabelle,Annabelle Glitterama Liquid Eyeliner,8.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/295d6b52d5dc093aa4f7ce001ba30c58_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/annabelle-glitterama-liquid-eyeliner_97305.html,https://well.ca,"Shine like a star! Annabelle Glitterama Liquid Eyeliner's long-wearing formula is loaded with
+light-reflecting micro-glitter to make your eyes pop.It can be applied
+in a thin sparkling line above the upper lash line or over the entire
+eyelid as a dramatic eyeshadow. The fine tapered brush applicator
+distributes
+the sparkles smoothly and evenly. Ophthalmologist tested.Shade Range:",,liquid,eyeliner,[],2016-10-01T18:28:27.815Z,2017-12-23T20:51:06.630Z,http://makeup-api.herokuapp.com/api/v1/products/207.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/207/original/data?1514062266,"[{'hex_value': '#C1CD85', 'colour_name': 'Krytonite '}]"
+206,wet n wild,Wet n Wild ProLine Felt Tip Eyeliner,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/32cde2248ec2fb43fd0b165521965b3f_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-proline-felt-tip-eyeliner_113998.html,https://well.ca,"The ProLine Felt Tip Eyeliner is a convenient marker with its soft, felt-tip gives you ultimate control to write on your eyeliner however you'd like. The fine, soft felt-tip glides on easily creating fine or bold lines. Features:Benefits of a liquid liner with the convenience of a penFine, soft felt-tip glides on easilyCreate fine or bold lines for subtle or dramatic results Directions: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Water/Eau, Acrylates Copolymer, Butylene Glycol, Laureth-21, Glycerin, Propylene Glycol, PEG-40 Hydrogenated Castor Oil, Chlorphenesin, Sodium Dehydroacetate, Dipotassium Glycyrrhizate, Trisodium EDTA, Methylisothiazolinone, Black 2/CI 77266.",4.0,liquid,eyeliner,[],2016-10-01T18:28:26.588Z,2017-12-23T20:51:23.126Z,http://makeup-api.herokuapp.com/api/v1/products/206.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/206/original/open-uri20171223-4-16f2vvs?1514062283,"[{'hex_value': '#1C1B19', 'colour_name': 'Black '}, {'hex_value': '#31241B', 'colour_name': 'Dark Brown '}]"
+204,marcelle,Marcelle Double Precision Liquid Eyeliner Pen,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f091348f64e2245afa02f30fcb139444_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-double-precision-liquid_100316.html,https://well.ca,"Do you want to go subdued and subtle, or intense and defined? The
+innovative Marcelle Double Precision Liquid Eyeliner Pen is up to the
+challenge. ",,liquid,eyeliner,"['Canadian', 'Gluten Free']",2016-10-01T18:28:24.614Z,2017-12-23T20:51:20.706Z,http://makeup-api.herokuapp.com/api/v1/products/204.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/204/original/data?1514062280,[]
+203,annabelle,Annabelle EyeInk2 Mistake Proof Eyeliner + Corrector,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8ca9c5677e8b27321069490cc08b3d46_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/annabelle-eyeink2-mistake-proof_108750.html,https://well.ca,"
+ Uneven line? No need to whine! This liner's fine felt tip is
+designed for ultimate precision and is the perfect tool to achieve a
+natural or dramatic look. To correct smudges or unevenness, just flip
+the pen around to reveal a magic corrector to erase those little
+mistakes as though they never happened! Eyeliner's Key features:
+Glossy formulaFast dryingLong lasting up to 10H+WaterproofSmudgeproof Corrector's Key features:
+Gentle and non-greasy formulaRemoves long-wearing and waterproof makeupPerfect for on-the-go touch-ups!
+ ",5.0,liquid,eyeliner,[],2016-10-01T18:28:22.972Z,2017-12-23T20:51:20.247Z,http://makeup-api.herokuapp.com/api/v1/products/203.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/203/original/open-uri20171223-4-1an3piy?1514062280,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#513E38', 'colour_name': 'Brown '}]"
+202,covergirl,CoverGirl Ink It! By Perfect Point Plus Violet Ink,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5b4b8ad9a7d0264fa6b66d4027aa0f7e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-ink-it-by-perfect-point_97199.html,https://well.ca,"The CoverGirl Ink It! By Perfect Point Plus gives you vibrant, high impact color that glides on smoothly with pen-like precision for intense eye looks that last all day.Features:Crease and fade resistantSelf-sharpening pencilWaterproofApplication Tips: Start at the inner corner of your eye and draw a line close to your lash line.",,liquid,eyeliner,[],2016-10-01T18:28:21.818Z,2017-12-23T20:51:24.724Z,http://makeup-api.herokuapp.com/api/v1/products/202.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/202/original/data?1514062284,[]
+201,marcelle,Marcelle Kajal Kohl Eyeliner Blackest Black,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bb7368014d95f21e66c99b0f4d5bf91b_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-kajal-kohl-eyeliner_100255.html,https://well.ca,"
+ Marcelle Kajal Kohl Eyeliner is offered in an ancient
+traditional chunky format with a long pointy tip that allows for an
+easy, extra-precise application. Plus, it’s waterproof and proven to
+last at least 6 hours on the waterline. This antioxidant-enriched,
+preservative-free liner is sure to give a daring, seductive look that
+lasts and lasts.Hypo-allergenic and perfume free. Paraben free. Tested under ophthalmologic control. ",5.0,liquid,eyeliner,"['Canadian', 'Gluten Free']",2016-10-01T18:28:21.112Z,2017-12-23T20:51:24.613Z,http://makeup-api.herokuapp.com/api/v1/products/201.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/201/original/data?1514062284,[]
+200,wet n wild,Wet n Wild H2O Proof Liquid Eyeliner,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8ff7034e32f516c8df2ab96d77535570_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-h2o-proof-liquid-eyeliner_113995.html,https://well.ca,"Wet n Wild H2O Proof Liquid Eyeliner provides lasting Waterproof Definition that won't let you down! It's waterproof, smudgeproof, and super long-lasting. Create subtle fine lines to bold dramatic looks with the precise applicator brush.Features:Long-lasting waterproof formula Won’t skip, smudge, or streakSoft, felt-tip brush for precision control and mistake-proof applicationDirections: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Isododecane, Trimethylsiloxysilicate, Trimethylpentanediol/Adipic Acid/Glycerin Crosspolymer , C11-12 Isoparaffin, Polypropylsilsesquioxane, C8-9 Isoparaffin, Trihydroxystearin, Silica Dimethyl Silylate, Phenoxyethanol, Sorbic Acid, Tocopherol, Black 2/CI 77266.",,liquid,eyeliner,[],2016-10-01T18:28:19.978Z,2017-12-23T20:51:24.483Z,http://makeup-api.herokuapp.com/api/v1/products/200.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/200/original/open-uri20171223-4-7z4bwg?1514062284,"[{'hex_value': '#1B1815', 'colour_name': 'Black '}, {'hex_value': '#5B4539', 'colour_name': 'Dark Brown '}]"
+199,milani,Milani Eye Tech Extreme Liquid Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/db9cbca2c6fac992ed5ccff1adab5070_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/milani-eye-tech-extreme-liquid_108629.html,https://well.ca,"It’s always great to have options. And with this versatile “extreme” felt tip tool, you can line your lids in three different intensities - thin, medium and heavy – just by switching up the angle you hold it. About the formula: It’s waterproof, non-feathering and glides on smoothly in a single stroke. Available in Blackest Black.Features:Easy grip handle for precise applicationNon-feathering formulaParaben-FreeWaterproofMatte-finishApplication: Extreme felt-tip point creates three line styles: Thin: use the very tip for a slender, extremely thin line. Medium: hold pen at a slight angle to create a bolder, thicker line. Heavy: hold the pen horizontally and color over the eyelid for an eyeshadow like coverage. Ingredients: Water (Aqua), Butylene Glycol, Styrene/Acrylates/Ammonium Methacrylate Copolymer, PEG-60 Hydrogenated Castor Oil, Phenoxyethanol, Coco-Glucoside, Potassium Sorbate, Citric Acid, Sodium Benzoate, Sodium Laureth-12 Sulfate, Ammonium Hydroxide, Iodopropynyl Butylcarbamate, Black 2 (CI 77266).",,liquid,eyeliner,[],2016-10-01T18:28:18.815Z,2017-12-23T20:51:24.321Z,http://makeup-api.herokuapp.com/api/v1/products/199.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/199/original/data?1514062284,[]
+198,marcelle,Marcelle Waterproof Liquid DIP-PEN Eyeliner 10H+,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7bb485ce33465552ef0991e552d449ca_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-waterproof-liquid-dip-pen_100216.html,https://well.ca,"Marcelle Waterproof Liquid DIP-PEN Eyeliner is offered in a sleek dip-pen packaging that
+looks like a pen but is actually a bottle with a practical and easy to
+use wand. It comes with a fine-tip applicator that allows for an
+ultra-fine, precise and effortless application. Its water-based formula
+contains special care ingredients to protect the delicate skin in the
+eye area. Enriched with vitamin E and aloe vera to provide moisturizing
+and regenerating properties.
+Hypo-allergenic and perfume free.Shade Range: ",,liquid,eyeliner,"['Canadian', 'Gluten Free']",2016-10-01T18:28:17.479Z,2017-12-23T20:51:24.217Z,http://makeup-api.herokuapp.com/api/v1/products/198.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/198/original/data?1514062284,"[{'hex_value': '#36312d', 'colour_name': 'Blackest Black '}, {'hex_value': '#403227', 'colour_name': 'Dark Brown '}, {'hex_value': '#27334d', 'colour_name': 'Navy '}, {'hex_value': '#423445', 'colour_name': 'Purple '}]"
+197,physicians formula,Physicians Formula Sexy Booster Cat Eye Collection Liquid Eyeliner ,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1e27825577015c0144768f2a5d9e9233_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-sexy-booster-cat_102725.html,https://well.ca,"Perfect your cat eye with Physicians Formula Sexy Booster Cat Eye Collection Liquid Eyeliner. It's infused with a warm vanilla fragrance and ingredients including Cocoa Extract that are oh-so sexy!Features: HypoallergenicParaben & Gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearersDirections: Follow the contour of your eye and line the top lid from inner to outer corner. At the outer corner of your eye, curve liner upward at the same angle of the outer corner of your brow.Ingredients: Water, Iron Oxides, Butylene Glycol, Stearic Acid, Glyceryl Stearate, Oleyl Alcohol, Fragrance, Acrylates/C10-30 Alkyl Acrylate Crosspolymer, Alumina, Androstadienone, Black 2, Caprylyl Glycol, Cellulose Gum, Epimedium Sagittatum Extract, Ethylhexylglycerin, Glycerin, Hectorite, Hexylene Glycol, Hydroxyethylcellulose, Magnesium Aluminum Silicate, Panthenol, Pregnadienol, Silica, Sorbic Acid, Styrene/Acrylates Copolymer, Theobroma Cacao (Cocoa) Fruit Powder, Tocopheryl Acetate, Triethanolamine, Xanthan Gum, Phenoxyethanol.",,liquid,eyeliner,['Gluten Free'],2016-10-01T18:28:16.184Z,2017-12-23T20:51:23.403Z,http://makeup-api.herokuapp.com/api/v1/products/197.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/197/original/data?1514062283,[]
+196,physicians formula,Physicians Formula Argan Wear Ultra-Nourishing Kohl Kajal Eyeliner,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6e912cfe1f08dc802ad241f4adcb36e9_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/physicians-formula-argan-wear_112335.html,https://well.ca,"Luxurious, intense and richly-pigmented kohl kajal eyeliner creates the most dramatic and exotic eye look. Infused with 100% Pure Argan Oil, known as ""liquid gold"" for its ultra-nourishing & conditioning properties. Ultra-creamy eyeliner glides-on effortlessly for dramatic definition and inner rim intensity.Features:High-performance kohl formula is 100% waterproof for color that won't budge or smudge, delivering seamless and glamorous definitionPropel and repel tool allows for easy and fool-proof application and maximum convenience!24 hour wearDirections: Apply at the base of upper lashes and on inside of lower eye rim for ultra-dramatic definition. Ingredients: Triethylhexanoin, Caprylic/Capric Triglyceride, Ozokerite, Copernecia Cerifera (Carnauba) Wax/Cire de Carnauba, Polymethyl Methacrylate, Beeswax/Cire d'abeille, Dipentaerythrityl Tetrahydroxystearate/ Tetraisostearate, Methyl Methacrylate Crosspolymer, Argania Spinosa (Argan) Kernel Oil, Pentaerythrityl Tetra-Di-t-Butyl Hydroxyhydrocinnamate, Dicalcium Phosphate",3.7,liquid,eyeliner,"['Gluten Free', 'Natural']",2016-10-01T18:28:15.341Z,2017-12-23T20:51:23.261Z,http://makeup-api.herokuapp.com/api/v1/products/196.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/196/original/open-uri20171223-4-p5h931?1514062283,[]
+194,wet n wild,Wet n Wild MegaLiner Liquid Eyeliner,5.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a972397ff3150eab0984483fcd226440_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/wet-n-wild-megaliner-liquid-eyeliner_113997.html,https://well.ca,"Wet n Wild MegaLiner Liquid Eyeliner is formulated with high-definition pigment and a unique blend of polymers for a rich, fluid formula. It dries fast and stays put to subtly enhance or dramatically define the eyes. An easy-to-control, flexible brush gives you precise application.Features:Dries fast and stays put Long-lasting, smudgeproof wear Easy-to-control inkwell applicator Directions: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Water/Eau, Propylene Glycol, PVP, Steareth-2, Stearic Acid, Steareth-21, Sodium Polymethacrylate, Glyceryl Stearate, Laureth-21, Phenoxyethanol, Arginine, Caprylyl Glycol, PEG-40 Hydrogenated Castor Oil, Citric Acid, Ethylhexylglycerin, Hexylene Glycol, Sodium Dehydroacetate, Simethicone, Magnesium Aluminum Silicate, Xanthan Gum, Sodium Citrate, Cellulose Gum, Chlorphenesin, Acrylates Copolymer, PPG-26-Buteth-26, Microcrystalline Cellulose, [+/- (MAY CONTAIN/PEUT CONTENIR): Iron Oxides/CI 77491, CI 77492, CI 77499, Ultramarines/CI 77007, Titanium Dioxide/CI 77891, Mica, Black 2/CI 77266, Carmine/CI 75470, Chromium Oxide Greens/CI 77288, Ferric Ferrocyanide/CI 77510].",,liquid,eyeliner,[],2016-10-01T18:28:11.633Z,2017-12-23T20:51:22.057Z,http://makeup-api.herokuapp.com/api/v1/products/194.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/194/original/data?1514062282,"[{'hex_value': '#1C1B1A', 'colour_name': 'Black '}, {'hex_value': '#7C4C30', 'colour_name': 'Dark Brown '}]"
+193,revlon,Revlon ColorStay Skinny Liquid Liner ,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/808647e541dad521fcc1fa0d728dd47e_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-colorstay-skinny-liquid-liner_101103.html,https://well.ca,"Revlon ColorStay Skinny Liquid Liner gives you bold, even colour with a precise skinny tip applicator!Features:0.1mm skinny tip liner that lasts all dayEasy to apply with mistake proof controlBold, even color in one strokeOphthalmologist Tested
+",,liquid,eyeliner,[],2016-10-01T18:28:10.785Z,2017-12-23T20:51:21.915Z,http://makeup-api.herokuapp.com/api/v1/products/193.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/193/original/data?1514062281,"[{'hex_value': '#000006', 'colour_name': 'Black Out '}, {'hex_value': '#2d6961', 'colour_name': 'Green Spark '}, {'hex_value': '#63453b', 'colour_name': 'Mahogany Flame '}]"
+192,physicians formula,Physicians Formula Shimmer Strips Kohl Kajal Eyeliner Trio ,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ac56e10c3ae7d7ec6af4c09ac868831b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_90002.html,https://well.ca,"Physicians Formula's intense and richly pigmented eyeliners are now perfectly paired to create a Nude Look. Specially developed to line the inner rim of the eyelid, this unique eyeliner form contains a high concentration of pigments for dramatic definition that glides-on effortlessly.Directions: Apply Eyeliner at the base of upper lashes and on inside of lower eye rim for ultra-dramatic definition. Layer shades together for endless looks. Hypoallergenic. Fragrance Free. Paraben Free. Gluten Free. Dermatologist approved. Safe for Sensitive Eyes and Contact Wearers. Ingredients: Hydrogenated Polyisobutene, Beeswax, Caprylic/Capric Glycerides, Synthetic Fluorphlogopite, Silica, Ozokerite, Hydrogenated Coco-Glycerides, Copernicia Cerifera (Carnauba) Wax, Jojoba Esters, Microcrystalline Wax, Aluminum Calcium Sodium Silicate, Dimethicone, Polybutene, Alumina Magnesium Metasilicate, Bisabolol, Calcium Sodium Borosilicate, Caprylyl Glycol, Cetyl Dimethicone, Disteardimonium Hectorite, Panthenyl Ethyl Ether, Tin Oxide, Titanium/Titanium Dioxide, Tocopheryl Acetate, Triethoxycaprylylsilane. May Contain: Aluminum Powder, Bismuth Oxychloride, Carmine, Chromium Oxide Greens, Copper Powder, Ferric Ammonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese Violet, Mica, Titanium Dioxide, Ultramarines, Yellow 5 Lake ",5.0,liquid,eyeliner,['Gluten Free'],2016-10-01T18:28:09.888Z,2017-12-23T20:51:21.808Z,http://makeup-api.herokuapp.com/api/v1/products/192.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/192/original/data?1514062281,[]
+191,zorah,Zorah Liquid Liner,24.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3dc157e4a7e28f90dbe7e9849ccfc87a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/zorah-liquid-liner_99339.html,https://well.ca,"Zorah Liquid Liner gives you 12 hours of long-lasting intense color, is transfer-free (leaves no trace on crease above the eyelid) and has Pure Light Capture® minerals that deliver color and radiance. Silky lines and refreshingly light, Pure Argan eyeliner leaves a weightless feel on the eyelids.What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Directions: Lightly trace the lash line. Repeat with a second layer to intensify. Make small dots from the outside working inward. Wait 3 seconds before opening eye so as to avoid streaking. Repeat line if necessary.Ingredients: Aqua, Hydrolyzed Corn Starch, Glyceryl Stearate Citrate, Argania Spinosa Kernel Oil*, Cucurbita Pepo (Pumpkin) Seed Oil*, Glycerin, Silica, Copernicia Cerifera (Carnauba) Wax*, Hectorite, Sodium Phytate, Sodium Citrate, Benzyl Alcohol, Salicylic Acid, Sorbic Acid, Dehydroacetic Acid. [+/-(peut contenir/may contain) Iron Oxides,Mica, Ultramarines, Bismuth Oxychloride.]Tested dermatologically and ophthalmologically.Certified by Ecocert Greenlife: 98% of the total ingredients are from
+natural origin, 5% of total ingredients are from organic farming",3.3,liquid,eyeliner,"['Natural', 'Organic', 'Vegan', 'Gluten Free', 'Canadian']",2016-10-01T18:28:07.638Z,2017-12-23T20:51:18.506Z,http://makeup-api.herokuapp.com/api/v1/products/191.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/191/original/data?1514062278,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#74482f', 'colour_name': 'Brown '}]"
+190,milani,Milani Fierce Foil Eyeliner,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/98ff3db1b142c3f9f915a2e9a0dafa92_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-fierce-foil-eyeliner_101204.html,https://well.ca,"This is so new, it’s hopping right off the Milan runway and into your makeup bag. A truly next-level eyeliner, it gets its richness from a black base that blasts the luminosity, creating a shiny, shimmery special effect that lights up your eyes. Blackened jewel tones with a foil finish, these can be used for lining or a full-on lid look. And there are two great ways to play these blendable beauties: For a “classic cat” look, extend the color just past the lashline. For a “smoldering smoky” vibe, gently blend upward from the lashline to the crease. Available in four chic shades - Black Gold Foil, Brown Foil, Purple Foil and Navy Foil – with a custom pro brush that deposits color exactly where you want it. Glow for it.Features:2-in-1 liner create a classic cat eye to smoldering smokey lookThe innovative blackout base enhances the pigment luminosity, creating a shiny special effect that brightens eyesProfessional brush applicator includedAvailable in four long-wearing shadesEasy to useApplication: Gently glide the tip of the applicator brush over color. Apply product by gliding brush along lashline from inner to outer corner of the eye. For the Classic Cat Eye: Slightly extend the end of the liner past the lashline. For a Smoldering Smoky Look: Blend upward from the lashline to the crease. Ingredients: Glycerin, Mica, Ethylhexyl Palmitate, Silica, Cera Alba (Beeswax), Copernicia Cerifera Cera (Carnauba Wax), Aluminum Calcium Sodium Silicate, Synthetic Fluorphlogopite, Isohexadecane, Caprylyl Glycol, Phenoxyethanol, Isopentyldiol, Tin Oxide, Titanium Dioxide (CI 77891), Iron Oxide (CI 77499). +/- May Contain: Iron Oxide (CI 77491), Ferric Ferrocyanide (CI 77510), Carmine (CI 75470), Ultramarines (CI 77007). ",,liquid,eyeliner,[],2016-10-01T18:28:06.914Z,2017-12-23T20:51:20.586Z,http://makeup-api.herokuapp.com/api/v1/products/190.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/190/original/open-uri20171223-4-lq1j6?1514062280,"[{'hex_value': '#756446', 'colour_name': 'Black Gold Foil '}, {'hex_value': '#633832', 'colour_name': 'Brown Foil '}, {'hex_value': '#2b3b5f', 'colour_name': 'Navy Foil '}, {'hex_value': '#442a59', 'colour_name': 'Purple Foil '}]"
+189,physicians formula,Physicians Formula Shimmer Strips Kohl Kajal Eyeliner Trio,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/98c26c4923f92c11e36f7dbc28e800a9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-shimmer-strips_70971.html,https://well.ca,"Physicians Formula Shimmer Strips Kohl Kajal Eyeliner is a Highly
+pigmented eyeliner trio that delivers rich color to create a Nude Look
+for ANY eye color.Features: Versatile eyeliner for dramatic definition and inner eye rim intensity Super- smooth gliding texture makes defining eyes effortless 100% Waterproof wearDirections: Apply eyeliner at the base of upper lashes and on inside of lower eye
+rim for ultra-dramatic definition. Layer shades together for endless
+looks.Ingredients: Hydrogenated Polyisobutene, Beeswax, Caprylic/Capric Glycerides, Silica,
+ Ozokerite, Hydrogenated Coco-Glycerides, Copernicia Cerifera (Carnauba)
+ Wax, Jojoba Esters, Microcrystalline Wax, Dimethicone, Polybutene,
+Alumina Magnesium Metasilicate, Bisabolol, Caprylyl Glycol, Cetyl
+Dimethicone, Disteardimonium Hectorite, Panthenyl Ethyl Ether,
+Tocopheryl Acetate, Triethoxycaprylylsilane May Contain: Aluminum,
+Aluminum Calcium Sodium Silicate, Aluminum Powder, Bismuth Oxychloride,
+Calcium Sodium Borosilicate, Carmine, Chromium Oxide Greens, Ferric
+Ammonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese
+Violet, Mica, Synthetic Fluorphlogopite, Tin Oxide, Titanium Dioxide,
+Titanium/Titanium Dioxide, Ultramarines, Yellow 5Hypoallergenic. Fragrance-free. Paraben-Free. Gluten Free.
+Dermatologist approved. Safe for sensitive eyes and contact lens
+wearers.",5.0,liquid,eyeliner,['Gluten Free'],2016-10-01T18:28:05.122Z,2017-12-23T20:51:21.487Z,http://makeup-api.herokuapp.com/api/v1/products/189.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/189/original/data?1514062281,[]
+188,pacifica,Pacifica Natural Minerals Smolder Eye Lining Gel,27.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/33227552d3b079b7a8c30777e426fb0b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-natural-minerals-smolder_86682.html?cat=323,https://well.ca,"Pacifica Natural Minerals Smolder Eye Lining Gel stands above the rest. It's not
+ waxy or tacky but has a creamy finish that can be smudged or left
+sharp. The smooth application allows you to rock a natural to smoky
+dramatic look with long-lasting natural mineral color. Line the eyes
+effortlessly or use as an allover creaseless shadow. Can be worn sheer
+or layered for more intensity. Gently line both upper and/or lower eye
+lid with a lining brush for a dramatic effect, or simply use your finger
+ to smudge the edges for your sexy smolder. A product that is a true
+multi-tasker. 100% vegan.In three full depth shades: Anchor: (bronzed brown)Midnight: (deep navy)Tahitian Pearl: (pearlized green/ grey with gold dust)Features:100% vegan, no animal ingredients or testingA product that is a true multi-taskerThe natural color can be layered for a more dramatic lookIngredients:
+ Caprylic/Capric Trglyceride (Coconut Source), Cyclopentasiloxane, Mica,
+ Tribehenin (Plant Source), Cocos Nucifera (Coconut) Oil, Cocos Nucifera
+ (Coconut) Water, Withania Somnifera Root Extract, C18-36 Acid Glycol
+Ester(Plant Source), Phenoxyethanol. May Contain: Calcium Sodium
+Borosilicate, Tin Oxide, 77891 Iron Oxides C1 77491, C1 77492, C1 77499,
+ Ultramarines C1 77007, Titanium Dioxide C1 77891.",3.0,,eyeshadow,"['Vegan', 'Natural']",2016-10-01T18:27:59.358Z,2017-12-23T21:08:16.623Z,http://makeup-api.herokuapp.com/api/v1/products/188.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/188/original/data?1514063296,"[{'hex_value': '#141936', 'colour_name': 'Midnight - Deep Navy '}, {'hex_value': '#564728', 'colour_name': 'Tahitian - Pearl Pearlized Green-Grey with Gold Dust '}]"
+187,suncoat,Suncoat Sugar-based Natural Liquid Eyeliner,16.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fffdf1e1c3948940e37d5b304275c0bd_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/suncoat-sugar-based-natural-liquid_10691.html,https://well.ca,"This natural liquid eyeliner is made with natural sugar-based
+biopolymer, not synthetic plastics such as PVP (polyvinyl pyrrolidone
+polymer) and acrylic copolymer. Colored with earth pigments and enriched
+ with vitamin E. This is a superior alternative for your sensitive eyes
+and our environment!Features: Natural and vegan ingredients, readily biodegradableStays on all day long, will not smear or smudgeKind to sensitive eyesRemove with soap and waterThe wand has a rubber tip instead of hairbrush, much easier to apply. It offers precise control for fine linesIngredients: Aqua
+ (water), kaolin clay, glycerin, hydrolyzed Zea mays (corn) starch
+(natural multi-sugar resin), lecithin, Citrus grandis (grapefruit) seed
+extract, tocopherol (vitamin E), citric acid, iron oxides, mica,
+titanium dioxide.",3.5,liquid,eyeliner,"['Natural', 'Vegan', 'Canadian']",2016-10-01T18:27:58.685Z,2017-12-23T20:51:19.607Z,http://makeup-api.herokuapp.com/api/v1/products/187.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/187/original/data?1514062279,[]
+186,dr. hauschka,Dr. Hauschka Liquid Eyeliner,30.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a16a04e59251404056169188139a9137_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-liquid-eyeliner_34272.html,https://well.ca,"The fine brush on the Liquid Eyeliner, available in black, allows for the easy application of a precise and vivid line that is long-lasting and moisturizing to the skin. Eyebright, black tea and neem soothe the delicate skin around the eyes, while rose wax and jojoba oil protect the skin, keeping it silky smooth.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients (black): Water (Aqua), Alcohol, Sorbitol, Cetearyl Alcohol, Ricinus Communis (Castor) Seed Oil, Bentonite, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hydrogenated Jojoba Oil, Xanthan Gum, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Rosa Damascena Flower Oil, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Silica, Lysolecithin, Iron Oxides (CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007). *component of natural essential oilsIngredients (brown):Water (Aqua), Alcohol, Sorbitol, Cetearyl Alcohol, Ricinus Communis (Castor) Seed Oil, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Bentonite, Euphrasia Officinalis Extract, Hydrogenated Jojoba Oil, Xanthan Gum, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Rosa Damascena Flower Oil, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Maltodextrin, Silica, Lysolecithin, Carmine (CI 75470), Iron Oxides (CI 7749¹, CI 77492, CI 77499). *component of natural essential oils",4.0,liquid,eyeliner,[],2016-10-01T18:27:57.906Z,2017-12-23T20:51:19.432Z,http://makeup-api.herokuapp.com/api/v1/products/186.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/186/original/data?1514062279,[]
+185,almay,Almay Liquid Liner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e66b09555d41920597781babffee41dc_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-liquid-liner_4466.html,https://well.ca,"
+Get beautiful definition with this easy-to-use liquid liner. Water-resistant formula lasts up to 16 hours without irritation. Unique ""inkwell"" design delivers fresh liquid liner for each application. Flexible-tip applicator provides mistake-proof control.
+
+Hypoallergenic
+Non-irritating
+Ophthalmologist, clinically and allergy tested
+Suitable for contact lens wearers
+
+",4.2,liquid,eyeliner,[],2016-10-01T18:27:56.672Z,2017-12-23T20:51:18.062Z,http://makeup-api.herokuapp.com/api/v1/products/185.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/185/original/data?1514062278,"[{'hex_value': '#210007', 'colour_name': 'Black '}, {'hex_value': '#55020F', 'colour_name': 'Brown '}]"
+184,l'oreal,L'Oreal Infallible Super Slim 12H Liner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c8f4a975e002711a67113fcf53b7dad0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-infallible-super-slim-12h_86289.html,https://well.ca,"Enjoy flawlessly
+clean lines as precise as 0.4 mm with The Super Slim by Infallible®
+Never FailTM eyeliner. The ultra-fine felt tip gives you total control
+and delivers the perfect amount of liner. The intense quick dry 12-hour
+formula glides on smoothly with continuous and even flow. Perfect for
+creating sleek and sophisticated eyes in one simple stroke!Features:
+
+Skip-proofDrag-proofSmudge-proofbr
+Ophhalmologist-tested
+
+Suitable for sensitive eyes and contact lens wearers.
+ ",,liquid,eyeliner,[],2016-10-01T18:27:55.712Z,2017-12-23T20:51:17.956Z,http://makeup-api.herokuapp.com/api/v1/products/184.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/184/original/data?1514062277,[]
+183,e.l.f.,e.l.f. Intense Ink Eyeliner,3.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/805d4c650b7c29c004f7f48d3dc96cb2_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-intense-ink-eyeliner_117825.html,https://well.ca,"e.l.f. Intense Ink Eyeliner quick-dry formula instantly enhances the lash line with rich and long-lasting colour. The felt tip pen allows you to create a sleek or bold line with complete precision. It glides on smoothly without smudging, feathering, or running! How To Use: Apply colour as close to the lash line as possible. For a thin line, use just the point of the pen tip, or slant the pen along the side for a thicker, bolder line Ingredients: Water (Aqua), Styrene/Acrylates/Ammonium Methacrylate Copolymer, Polysorbate 20, Ethyheyl Palmitate, PEG-40 Hydrogenated Castor Oil, Xanthan Gum, Benzyl Alcohol, Methylchloroisothiazolinone. MAY CONTAIN: DC Black #2 (CI 77266). ",5.0,liquid,eyeliner,[],2016-10-01T18:27:55.066Z,2017-12-23T20:51:17.832Z,http://makeup-api.herokuapp.com/api/v1/products/183.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/183/original/data?1514062277,[]
+182,e.l.f.,e.l.f. Studio Eyeliner & Shadow Stick ,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/587c92f6ba640ab943fd1a69b23e541f_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-eyeliner-shadow_93285.html,https://well.ca,"Achieve color intensity for your eyes with twist-up ease - no sharpening
+ required! Glide on the soft gel liner side to create dramatic
+definition to the eyes. The light-reflecting pigments help line the eye
+ subtly but intensely for a fuller more enhanced effect. Use the smooth
+ glide shadow stick side for soft highlighting color on the eyes to
+complement the liner for a polished and finished look. Perfect for
+creating an easy smoky eye!Eyeliner Ingredient: Synthetic Beeswax, Copernicia Cerifera (Carnauba)
+Wax, Ceresin Wax, Bis-Diglyceryl Polyacyladipate-2, Phenyl Trimethicone,
+ Cyclomethicone, Mica, Trimethylsiloxysilicate, BHT, Benzyl Alcohol,
+Methylchloroisothiazolinone, Methylisothiazolinone
+
+May Contain:Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium Dioxide (CI77891)
+
+Shadow Ingredient: Paraffin Wax, Microcrystalline Wax, Copernicia
+Cerifera (Carnauba) Wax, Castor Oil, Bis-Diglyceryl Polyacyladipate-2,
+Petrolatum, Isopropyl Palmitate, BHT, Benzyl Alcohol,
+Methylchloroisothiazolinone, Methylisothiazolinone
+
+May Contain:Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium Dioxide (CI77891)
+",5.0,,eyeshadow,['Vegan'],2016-10-01T18:27:54.039Z,2017-12-23T21:08:15.537Z,http://makeup-api.herokuapp.com/api/v1/products/182.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/182/original/data?1514063295,[]
+181,l'oreal,L'Oreal Telescopic Explosion Waterproof Eyeliner Black,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d8a23eb4d183b3b215d46ef39a6e781b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-telescopic-explosion_27942.html,https://well.ca,"Now, give your eyes dramatic definition that lasts all day. Telescopic Waterproof precision Liquid Eyeliner is the perfect compagnion to Telescopic Mascara for a precisely defined and intense eye look. The Slanted Precision Felt tip is angled for the most accurate application, and the glide-on formula delivers 16-hour wear thats swim-proof, sweat-proof and smudge-proof
+
+All-day wear
+Glides on without smudging or smearing
+Suitable for sensitive eyes and contact lens wearers
+Fragrance-free
+Ophthalmologist-tested and allergy-tested
+
+ ",4.2,liquid,eyeliner,[],2016-10-01T18:27:53.030Z,2017-12-23T20:51:16.771Z,http://makeup-api.herokuapp.com/api/v1/products/181.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/181/original/data?1514062276,[]
+180,e.l.f.,e.l.f. Studio Precision Liquid Eyeliner,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/511628443d092564dafbb56371d62748_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-precision-liquid_93378.html,https://well.ca,"This long-lasting e.l.f. Studio Precision Liquid Eyeliner formula has pigment rich
+color that glides on smoothly for defined and precise lines. Features a
+tapered brush design to create thin or bold lines for a custom look. Try
+ a winged-eyeliner look and unleash your inner retro diva!Ingredients: Water (Aqua), Acrylates Copolymer, Iron Oxides (CI 77491), Black No. 2
+(CI 77266), PEG-40 Hydrogenated Castor Oil, Polysorbate 20, Propylene
+Glycol, Xanthan Gum, Phenoxyethanol, Methylparaben, Ethylparaben,
+Butylparaben, Propylparaben, Isobutylparaben.",3.7,liquid,eyeliner,['Vegan'],2016-10-01T18:27:52.499Z,2017-12-23T20:51:16.660Z,http://makeup-api.herokuapp.com/api/v1/products/180.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/180/original/data?1514062276,[]
+179,maybelline,Maybelline EyeStudio Master Precise Ink Pen Eyeliner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6edd2cadd1894a94f264ceb19f3d344b_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eyestudio-master-precise_40535.html,https://well.ca,"Experience the new generation of liquid liner from Maybelline! Ink technology keeps pigments super-saturatedSpring cap keeps the formula freshMost precise line for lasting intensity Safe for sensitive eyes and ophthalmologist-testedContact lens safeFor Best Results: 1. Start at inner corner of upper eye. Flare outward. 2. Create the sharpest design, uniquely your own.",4.0,liquid,eyeliner,[],2016-10-01T18:27:51.862Z,2017-12-23T20:51:16.524Z,http://makeup-api.herokuapp.com/api/v1/products/179.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/179/original/open-uri20171223-4-1vi901o?1514062276,[]
+178,almay,Almay Intense i-Colour Play Up Liquid Liner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6cf30fccb626b5b1eacc9db7b29dc6c2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-intense-i-colour-play-up_4443.html,https://well.ca,"
+
+Play up your eye color with dramatic contrasting color! Define your eyes with bold color. Comes with a precision tip applicator so you can smoothly and easily create a high impact look. Features:
+
+Hypoallergenic
+non-irritating
+Ophthalmologist
+Clinically and allergy tested
+Suitable for contact lens wearers
+
+
+",4.0,liquid,eyeliner,[],2016-10-01T18:27:50.728Z,2017-12-23T20:51:16.350Z,http://makeup-api.herokuapp.com/api/v1/products/178.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/178/original/data?1514062276,"[{'hex_value': '#000000', 'colour_name': 'Black Pearl for Hazel Eyes '}, {'hex_value': '#6C446C', 'colour_name': 'Purple Amethyst for Brown Eyes '}]"
+177,maybelline,Maybelline Line Stiletto Ultimate Precision Liquid Eyeliner,10.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/350d6c6c2fa3add8ee40189cd19bfe0a_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-line-stiletto-ultimate_17295.html,https://well.ca,"Easily Creates Slender Lines
+
+ Rich, Even Color
+ All-Day Wear
+ Smooth Glide Felt Tip
+ Flexible tip guides on smoothly for the most precise control.
+ All-day wear up to 8 hours
+",4.0,liquid,eyeliner,[],2016-10-01T18:27:50.155Z,2017-12-23T20:51:16.164Z,http://makeup-api.herokuapp.com/api/v1/products/177.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/177/original/open-uri20171223-4-p0eowt?1514062276,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#4E2F2F', 'colour_name': 'Brown Black '}]"
+176,e.l.f.,e.l.f. Studio Eye Primer & Liner Sealer,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a1fe077c09f5e903412fe2a6c344e115_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-eye-primer-liner_93038.html?cat=2312,https://well.ca,"
+
+
+
+
+ Now you can have
+ your eye makeup lasting longer for no fuss no budge color with this e.l.f. Studio Eye Primer & Liner Sealer.The Prime side sets your eyeshadow in so your color won't fade,
+bleed or crease. The Liner side transforms your favorite eye shadow
+into a waterproof, smudge-proof liquid liner with this unique clear
+liquid and built-in felt tip precision eyeliner brush. Primer Colour: How to Use: Use the ""prime"" side to create a base for your eyeshadow. Apply to the eyelid and blend in.Use the ""seal"" side and mix your favorite eyeshadow color in with the brush and apply to the lash line as a liner.For best results wipe off and clean applicator before closing.Remove with eye makeup remover.Ingredients:
+
+
+ Eye Primer Ingredients: Paraffinum
+ Liquidum (Mineral Oil), Mica, Talc, Bis-Diglyceryl Polyacyladipate-2,
+Ozokerite, Euphorbia Cerifera (Candelilla) Wax, Methylisothiazolinone,
+Caprylyl Glycol
+May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium
+Dioxide (CI 77891)
+
+Liner Sealer Ingredients: Water (Aqua), Acrylates/Octylacrylamide
+Copolymer, Propylene Glycol, Benzyl Alcohol,
+Methylchloroisothiazolinone, Methylisothiazolinone
+
+
+ ",4.3,liquid,eyeliner,['Vegan'],2016-10-01T18:27:49.060Z,2017-12-23T20:51:16.031Z,http://makeup-api.herokuapp.com/api/v1/products/176.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/176/original/data?1514062275,[]
+175,revlon,Revlon ColorStay Liquid Eye Liner,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d02f86bc79a8d2f105672d99474300df_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-liquid-eye-liner_3842.html,https://well.ca,"Elegant, sexy and sophisticated, ColorStay Liquid Liner allows you to emphasize your eyes with precision. Easy application dries quickly and lasts all day without smudging or smearing. Available in 4 shades.",4.0,liquid,eyeliner,[],2016-10-01T18:27:47.808Z,2017-12-23T20:51:14.425Z,http://makeup-api.herokuapp.com/api/v1/products/175.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/175/original/data?1514062274,"[{'hex_value': '#030005', 'colour_name': 'Blackest Black '}, {'hex_value': '#46352D', 'colour_name': 'Black Brown '}]"
+174,l'oreal,L'Oreal Paris Lineur Intense Felt Tip Liquid,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/86cde1cfdb47caee6387cdfc7ac0696e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-lineur-intense-felt_4407.html,https://well.ca,"The one liner that does it all, complete with precision applicator tip. Combines the drama of a liquid with the ease of a pen.",4.3,liquid,eyeliner,[],2016-10-01T18:27:46.238Z,2017-12-23T20:51:14.260Z,http://makeup-api.herokuapp.com/api/v1/products/174.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/174/original/data?1514062274,"[{'hex_value': '#000000', 'colour_name': 'Black Mica '}]"
+173,physicians formula,Physicians Formula Eye Booster Lash Boosting Eyeliner + Serum,14.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/74826a1dae74e388480d2c8a30f9eb03_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-eye-booster-lash_61209.html,https://well.ca,"Eye Booster™ 2-in-1 Lash Boosting Eyeliner + Serum's high-tech formula enhances the appearance of lashes while providing the instant definition of a liquid eyeliner, in one easy step! Lash Boosting complex targets the base of lashes where it is most effective. Innovative and easy to use eyelining tool delivers effortless definition. High-tech Japanese formula is long-wearing, water-resistant and smudge-resistant.Directions for Use: Apply eyeliner at the base of lashes in a fine or bold line. Never apply eyeliner inside the lash line. Keep cap tightly closed to prevent formula from drying out.Ingredients: Water. Ethylhexyl Acrylate/Methyl Methacrylate Copolymer. Butylene Glycol. SD Alcohol 40. Beheneth-30. Ammonium Acrylates/Methyl Styrene/Styrene Copolymer. Glycerin. Myristoyl Pentapeptide-17. 1,2-Hexanediol. Acrylates/Octylacrylamide Copolymer. Caprylyl Glycol. Ethylhexylglycerin. Pentylene Glycol. Polyglyceryl-3 Disiloxane Dimethicone. Phenoxyethanol. Sodium Hydroxide. Disodium EDTA. Black 2.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Safe for sensitive eyes and contact lens wearers.",4.0,liquid,eyeliner,['Gluten Free'],2016-10-01T18:27:45.229Z,2017-12-23T20:51:14.119Z,http://makeup-api.herokuapp.com/api/v1/products/173.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/173/original/data?1514062274,"[{'hex_value': '#332A30', 'colour_name': 'Black (7367C) '}, {'hex_value': '#40272B', 'colour_name': 'Deep Brown (7366C) '}, {'hex_value': '#0B0C08', 'colour_name': 'Ultra Black (7365C) '}]"
+172,maybelline,Maybelline Liquid Eyeliner,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/316d25ac5676470d83612b9391678b0d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-liquid-eyeliner_3739.html,https://well.ca,"
+Waterproof Liquid Eyeliner draws intense lining in an instant.
+It glides on smoothly for even coverage.
+The firm felt tip applicator allows easy control.
+Waterproof, all-day wear.
+",4.2,liquid,eyeliner,[],2016-10-01T18:27:44.166Z,2017-12-23T20:51:13.942Z,http://makeup-api.herokuapp.com/api/v1/products/172.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/172/original/data?1514062273,"[{'hex_value': '#06090A', 'colour_name': 'Black '}]"
+171,e.l.f.,e.l.f. Studio Cream Eyeliner,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/571e52ec2ce167c2cd5ee2047015a1ed_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-cream-eyeliner_93286.html,https://well.ca,"e.l.f. Studio Cream Eyeliner's creamy formula creates smooth lines that are defined and precise.
+Smudge-proof, budge-proof and water-resistant coverage for all day wear
+to combat against sweat, tears or rain! Achieve thin or bold lines with
+ ease. Eyeliner Brush included.Ingredients:
+
+
+ Isododecane, Hydrogenated
+Polyisobutene, Polybutene, Polyethylene, Barium Sulfate, Cyclomethicone,
+ Disteardimonium Hectorite, Polyglyceryl-4 Isostearate, Propylene
+Carbonate, Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide
+(CI77891), Red No.40 Lake (CI 16035), Mica (CI 77019), Blue No.1 Lake
+(CI 42090), Ferric Ferrocyanide (CI 77510), Ultramarine Violet (CI77077)",4.5,liquid,eyeliner,['Vegan'],2016-10-01T18:27:43.484Z,2017-12-23T20:51:13.813Z,http://makeup-api.herokuapp.com/api/v1/products/171.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/171/original/data?1514062273,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#5B392D', 'colour_name': 'Coffee '}]"
+170,maybelline,Maybelline Eye Studio Lasting Drama Gel Eyeliner,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2054f702d243c286219e0330af836bf5_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-eye-studio-lasting-drama_23247.html,https://well.ca,"Maybelline Eye Studio Lasting Drama Gel Eyeliner gives you smudge-proof lines that are waterproof for 24 hours. Features: Oil-free formula holds highly concentrated pigments in a clear gel baseSmudge-proof and waterproof for 24 hoursMost intense line for lasting drama Safe for sensitive eyes and ophthalmologist-testedContact lens safe
+ Removes easily with Expert Eyes® Moisturizing Eye Makeup Remover.Maybelline Eye Studio Lasting Drama Gel Eyeliner is one of our 10 Makeup Must Haves. See the full list on The Well. ",4.4,liquid,eyeliner,[],2016-10-01T18:27:42.507Z,2017-12-23T20:51:13.684Z,http://makeup-api.herokuapp.com/api/v1/products/170.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/170/original/open-uri20171223-4-1hy3kmf?1514062273,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black 950 '}, {'hex_value': '#60423B', 'colour_name': 'Brown 952 '}, {'hex_value': '#4A484B', 'colour_name': 'Charcoal 954 '}]"
+169,covergirl,CoverGirl LineExact Liquid Eyeliner ,7.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f56b44752218960e8ff15d1364510544_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-lineexact-liquid-eyeliner_74839.html,https://well.ca,"Compact, easy to hold high precision liquid eyeliner pen has a
+smudgeproof, fast-drying formula that glides on to create fine or bold
+lines without fuss, for looks that last all day.Features: ExactTip lets you create bold or fine linesCompact, easy-to-holdFast-dryingSmudge-resistant, lasts all daySuitable for sensitive eyes ",4.3,liquid,eyeliner,[],2016-10-01T18:27:41.437Z,2017-12-23T20:51:18.909Z,http://makeup-api.herokuapp.com/api/v1/products/169.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/169/original/data?1514062278,[]
+168,moov,Moov Cosmetics St. Tropez Collection,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f426b2e2e9ff8e01788a0947aad93512_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/moov-cosmetics-st-tropez-collection_116031.html,https://well.ca,"The Moov Cosmetics St. Tropez Collection is a vegan nail colour that is perfect collection of shades that will take you from day to day.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",,,nail_polish,"['Natural', 'Vegan', 'Gluten Free', 'Fair Trade', 'Sugar Free', 'Non-GMO', 'Dairy Free', 'Canadian']",2016-10-01T18:27:39.741Z,2017-12-23T20:51:13.564Z,http://makeup-api.herokuapp.com/api/v1/products/168.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/168/original/data?1514062273,"[{'hex_value': '#DAC3B1', 'colour_name': 'Lace Camisole '}]"
+167,anna sui,Anna Sui Nail Colour,15.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/eea60b0c4f3b6539c1573415a610230d_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/anna-sui-nail-colour_115246.html,https://well.ca,"This Anna Sui Nail Colour is available in an array of fashion-forward colours and textures. This dazzling nail colour is long lasting and luxurious and has a delicate Tea Rose scent. Directions: Apply a clear base coat. Start right in the centre of the nail, then apply on the two sides of the nails. Make sure that the entire nail is covered in these 3 swipes. Let the base coat dry completely. Once base coat has dried apply the colour of your choice in a similar fashion: first on the centre of the nail and then on the sides. Once dry, apply a top coat.",,,nail_polish,[],2016-10-01T18:27:37.684Z,2017-12-23T20:51:13.461Z,http://makeup-api.herokuapp.com/api/v1/products/167.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/167/original/data?1514062273,"[{'hex_value': '#ED8553', 'colour_name': 'Shiny Orange Glitter (604) '}, {'hex_value': '#C7C7C7', 'colour_name': 'Metallic Silver Glitter (004) '}, {'hex_value': '#E1C99D', 'colour_name': 'Metallic Gold Glitter (802) '}, {'hex_value': '#FD76BA', 'colour_name': 'Shiny Pink Glitter (308) '}, {'hex_value': '#CEBCD2', 'colour_name': 'Shell Pink Shimmer (302) '}, {'hex_value': '#828F98', 'colour_name': 'Celadon Grey Shimmer (008) '}, {'hex_value': '#F69082', 'colour_name': 'Mango Spice Shimmer (305) '}, {'hex_value': '#D9BAA7', 'colour_name': 'Gold Beige Shimmer (700) '}, {'hex_value': '#85C3AE', 'colour_name': 'Deco Blue Shimmer (101) '}, {'hex_value': '#F3AC9E', 'colour_name': 'Pink Flamingo Shimmer (304) '}, {'hex_value': '#FEA57B', 'colour_name': 'Apricot Matte (601) '}, {'hex_value': '#F09891', 'colour_name': 'Rose Red Matte (306) '}, {'hex_value': '#E6C745', 'colour_name': 'Sugared Lemon Matte (801) '}, {'hex_value': '#DCE1E7', 'colour_name': 'Silver White Matte (003) '}, {'hex_value': '#0380B6', 'colour_name': 'Ink Blue Matte (103) '}, {'hex_value': '#F55B67', 'colour_name': 'Vivid Pink Non Pearl (311) '}, {'hex_value': '#B3060C', 'colour_name': 'Anna Red Non Pearl (400) '}, {'hex_value': '#622A81', 'colour_name': 'Royal Purple Non Pearl (202) '}, {'hex_value': '#DBAA82', 'colour_name': 'Biscuit Non Pearl (701) '}, {'hex_value': '#887C7C', 'colour_name': 'Rose Grey Non Pearl (007) '}, {'hex_value': '#EFAAA3', 'colour_name': 'Sweet Pink Non Pearl (303) '}, {'hex_value': '#F35973', 'colour_name': 'Neon Pink Non Pearl (310) '}, {'hex_value': '#B185B8', 'colour_name': 'Orchid Non Pearl (201) '}, {'hex_value': '#F1F1E7', 'colour_name': 'Off White Non Pearl (001) '}, {'hex_value': '#060606', 'colour_name': 'Stark Black Non Pearl (009) '}, {'hex_value': '#004318', 'colour_name': 'Empire Green Non Pearl (903) '}, {'hex_value': '#ECD888', 'colour_name': 'Lemon Yellow Non Pearl (800) '}, {'hex_value': '#F25834', 'colour_name': 'Valencia Non Pearl (603) '}, {'hex_value': '#F58786', 'colour_name': 'Tiger Lily Non Pearl (602) '}]"
+166,l'oreal,L'Oreal Infallible Nail Polish in Always a Lady,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5c2071e6bcb6457ea57fcf3725e2aa92_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102199.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",,,nail_polish,[],2016-10-01T18:27:36.487Z,2017-12-23T20:51:13.218Z,http://makeup-api.herokuapp.com/api/v1/products/166.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/166/original/data?1514062273,[]
+165,moov,Moov Cosmetics Caribbean Wedding Collection,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/678f91758b7a611d673124f7ad1f00d0_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/moov-cosmetics-caribbean-wedding_116039.html,https://well.ca,"The Moov Cosmetics Caribbean Wedding Collection is a vegan nail colour that has the perfect soft pastel shades for that romantic getaway.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",2.0,,nail_polish,"['Natural', 'Vegan', 'Gluten Free', 'Fair Trade', 'Sugar Free', 'Non-GMO', 'Dairy Free', 'Canadian']",2016-10-01T18:27:34.994Z,2017-12-23T20:51:13.105Z,http://makeup-api.herokuapp.com/api/v1/products/165.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/165/original/data?1514062273,"[{'hex_value': '#E4A993', 'colour_name': 'Blush Bouquet '}, {'hex_value': '#DDA4B3', 'colour_name': 'I Do '}, {'hex_value': '#967971', 'colour_name': 'On One Knee '}]"
+164,l'oreal,L'Oreal Infallible Nail Polish in Iconic Indigo ,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/23d8770e2765d0ecd6faf613e5817cea_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102187.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",,,nail_polish,[],2016-10-01T18:27:33.744Z,2017-12-23T20:51:12.225Z,http://makeup-api.herokuapp.com/api/v1/products/164.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/164/original/data?1514062272,[]
+162,l'oreal,L'Oreal Infallible Nail Polish in Ocean Infini,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b90ec1716dfb0c840e32da08d95acc7d_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102191.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",,,nail_polish,[],2016-10-01T18:27:28.434Z,2017-12-23T20:51:12.101Z,http://makeup-api.herokuapp.com/api/v1/products/162.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/162/original/data?1514062272,[]
+161,misa,Misa Nail Laquer,9.39,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a0e2af7b4c21ab132512dba3483d35de_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/misa-nail-laquer_50188.html,https://well.ca,"Misa's original nail lacquer formula was developed to meet the product requirements of demanding nail technicians. Each lacquer is properly balanced with resin, plasticizer and nitrocellulose to provide a durable film that offers high gloss, exceptional wear and maximum protection for the nail.The lacquers provide durability for the ultimate in chip-free results, with each lacquer offering a carefully balanced blend of film formers that are not adversely affected when exposed to water or detergents. The formula is nonfading with lasting color fidelity over time, as the use of UV absorbers helps maintain the true colors. The lacquers maintain an excellent shelf life, with a formula that prevents pigment migration, striation, settling and syneresis over longer periods of time than most other nail enamel formulas. And, as we guarantee, the chip-resistant polishes promise superior wear and exceptional gloss retention, while helping to condition, protect, strengthen and reinforce the natural nail.",5.0,,nail_polish,['Vegan'],2016-10-01T18:27:27.227Z,2017-12-23T20:51:12.512Z,http://makeup-api.herokuapp.com/api/v1/products/161.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/161/original/data?1514062272,"[{'hex_value': '#D5A026', 'colour_name': 'Under My Sunbrella '}, {'hex_value': '#7B113A', 'colour_name': 'Summer Love '}, {'hex_value': '#104F8D', 'colour_name': 'Mermaid Dreams '}, {'hex_value': '#CA6527', 'colour_name': 'Endless Keys '}, {'hex_value': '#EB4843', 'colour_name': 'Bop Till You Drop '}, {'hex_value': '#93C0A9', 'colour_name': 'Catch A Flick '}, {'hex_value': '#DE8FA4', 'colour_name': 'Go For The Pinks '}, {'hex_value': '#D4D5B6', 'colour_name': 'Got It Made in the Shade '}, {'hex_value': '#DCA29E', 'colour_name': 'Pop The Clutch '}, {'hex_value': '#3DAC81', 'colour_name': 'Blame It On Fat Tuesday '}, {'hex_value': '#ECE95E', 'colour_name': 'Jester Ate the King Cake '}, {'hex_value': '#EE3794', 'colour_name': 'Party In the Masquerade '}, {'hex_value': '#584D97', 'colour_name': 'Throw Me Something Purple Please '}]"
+158,l'oreal,L'Oreal Infallible Nail Polish in Petale Revival,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8bfba92993344fec7c4179ddd74ddde4_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102197.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",5.0,,nail_polish,[],2016-10-01T18:27:23.267Z,2017-12-23T20:51:11.543Z,http://makeup-api.herokuapp.com/api/v1/products/158.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/158/original/data?1514062271,[]
+157,salon perfect,Salon Perfect Nail Lacquer ,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/345fc4da3d9055f3742272714aace73b_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/salon-perfect-nail-lacquer_114045.html,https://well.ca,"Salon Perfect Nail Lacquer has a color for every occasion. Dress up your nails with 32 core shades, limited edition collections, and specialty top coats. These professional, salon-tested formulas come in long-wearing cremes, shimmers, glitters, metallics, neons and top coats.Features:Fashion-forward colorsLong-lasting professional formulas1 Coat Coverage Brush 3 Free FormulaDirections: Trim & File Nails. Push Cuticles Back. Clean Nails. Apply One Thin Coat of Nail Polish (wait 1-2 minutes for dry). Apply 2-3 Additional Thin Coats (to preferred coverage).",,,nail_polish,[],2016-10-01T18:27:21.521Z,2017-12-23T20:51:11.247Z,http://makeup-api.herokuapp.com/api/v1/products/157.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/157/original/open-uri20171223-4-35bkx?1514062271,"[{'hex_value': '#3E0D70', 'colour_name': 'A Royal Affair '}, {'hex_value': '#0B8EA7', 'colour_name': 'Bermuda Baby '}, {'hex_value': '#96A8B4', 'colour_name': 'Cold As Ice '}, {'hex_value': '#A57B88', 'colour_name': 'Cosmic Dust (Top Coat) '}, {'hex_value': '#521419', 'colour_name': 'Fiesty Fishnet '}, {'hex_value': '#F12BB8', 'colour_name': 'Fired Up Fuchsia '}, {'hex_value': '#F37B6B', 'colour_name': 'Flamingo Flair '}, {'hex_value': '#F16293', 'colour_name': 'Foxy Lady '}, {'hex_value': '#E3B2A4', 'colour_name': 'Georgia Peach '}, {'hex_value': '#967D50', 'colour_name': 'Gold Leaf '}, {'hex_value': '#058B72', 'colour_name': 'Gone Sailing '}, {'hex_value': '#FE3A68', 'colour_name': 'Haute Pink '}, {'hex_value': '#730118', 'colour_name': ""He's With Me! ""}, {'hex_value': '#837E9A', 'colour_name': 'Lilacking Control '}, {'hex_value': '#02E72D', 'colour_name': 'Loopy Lime '}, {'hex_value': '#93B592', 'colour_name': 'Mint Julep '}, {'hex_value': '#B1ADA9', 'colour_name': 'Mother of Pearl (Top Coat) '}, {'hex_value': '#131315', 'colour_name': 'Oil Slick '}, {'hex_value': '#BB687A', 'colour_name': 'Pearlie Pink '}, {'hex_value': '#EF4EA4', 'colour_name': 'Perky Pink '}, {'hex_value': '#AC0173', 'colour_name': 'Plum Sorbet '}, {'hex_value': '#E2B7BF', 'colour_name': 'Put A Ring On It '}, {'hex_value': '#7450A7', 'colour_name': 'Razzle Dazzle '}, {'hex_value': '#8BA85C', 'colour_name': ""Ruby's Cubes (Top Coat) ""}, {'hex_value': '#C70F14', 'colour_name': 'Salsa Dance '}, {'hex_value': '#81437B', 'colour_name': 'Shocked '}, {'hex_value': '#295D92', 'colour_name': 'Star Light, Star Bright '}, {'hex_value': '#F5F5F6', 'colour_name': 'Sugar Cube '}, {'hex_value': '#F2769B', 'colour_name': 'Tickled Pink '}, {'hex_value': '#989EA5', 'colour_name': 'Titanium '}, {'hex_value': '#ECFA05', 'colour_name': 'Yowza Yellow '}]"
+156,moov,Moov Cosmetics Home Grown Canuck Collection,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/65ca894afba3c4351a3db71c24234c50_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/moov-cosmetics-home-grown-canuck_116061.html,https://well.ca,"The Moov Cosmetics Home Grown Canuck Collection is a vegan nail colour that has a fun representation of shades from East to West.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",3.0,,nail_polish,"['Natural', 'Vegan', 'Gluten Free', 'Fair Trade', 'Sugar Free', 'Non-GMO', 'Dairy Free', 'Canadian']",2016-10-01T18:27:19.853Z,2017-12-23T20:51:11.135Z,http://makeup-api.herokuapp.com/api/v1/products/156.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/156/original/data?1514062271,"[{'hex_value': '#251414', 'colour_name': 'Deep Creek '}, {'hex_value': '#521B3E', 'colour_name': 'Canadian Wildberries '}, {'hex_value': '#A99483', 'colour_name': 'Double Double '}, {'hex_value': '#C4658F', 'colour_name': 'Lunching In Yorkville '}, {'hex_value': '#8C0002', 'colour_name': 'True North '}]"
+154,l'oreal,L'Oreal Infallible Nail Polish in Irresistible Bonbon,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/69ca8bd686b0c24e44a2033f4aacf035_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102190.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",,,nail_polish,[],2016-10-01T18:27:15.795Z,2017-12-23T20:51:10.631Z,http://makeup-api.herokuapp.com/api/v1/products/154.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/154/original/data?1514062270,[]
+153,orly,Orly EPIX Flexible Sealcoat,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/648283e42d7fafb7c03e8c60274cd5e0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/orly-epix-flexible-sealcoat_106342.html?cat=678,https://well.ca,"Orly introduces the next big thing in the industry. EPIX Flexible Color is a 2 step manicure system that has a long wearing formula with smudge-fixing technology.Features:Dries faster - in less than 8 minutesLasts longer - over a weekInnovative Smudge-Fixing Technology allows the formula to remain elastic and flex with the nail, making smudges and chips a thing of the pastApplies easily and removes like a polishNew Custom 600 Bristle Count Brush Technology and Gripper Cap provide precise application and even coverage on the nailDelivers a high shine finishHow Does it Work?Step 1 Flexible Colour: Begin by performing a dry manicure. Lightly buff nails and clean nail surface with alcohol. Apply an even coat of EPIX Flexible Color to all ten nails. Apply a second coat for full coverageStep 2 Flexible Sealcoat: Finish with 1 coat of EPIX Flexible Sealcoat to seal in color and shine. For extended wear, reapply Sealcoat after three days.* Smudges will continue to self-repair until the Flexible Color is fully dry.",5.0,,nail_polish,[],2016-10-01T18:27:14.218Z,2017-12-23T20:51:10.492Z,http://makeup-api.herokuapp.com/api/v1/products/153.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/153/original/open-uri20171223-4-snvley?1514062270,[]
+151,orly,Orly Nail Lacquer,8.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/65bd0249fe43da8261d6f0b5f78b1826_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/orly-nail-lacquer_61017.html,https://well.ca,"As one of the nail care industry's renowned color houses Orly has established a dynamic palette composed
+of subtle sheers, vivid crèmes, dazzling shimmers, smooth glitters and
+hot neons! Plus, each ORLY lacquer is free of DBP, Toluene, Formaldehyde
+ and features Orly's award-winning Gripper Cap.",,,nail_polish,[],2016-10-01T18:27:00.769Z,2017-12-23T20:51:09.665Z,http://makeup-api.herokuapp.com/api/v1/products/151.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/151/original/data?1514062269,"[{'hex_value': '#e63350', 'colour_name': 'Butterflies (40673) '}, {'hex_value': '#e21d4b', 'colour_name': 'Lola (40660) '}, {'hex_value': '#da3778', 'colour_name': 'Oh Cabana Boy (40466) '}, {'hex_value': '#e11936', 'colour_name': 'Terracota (40071) '}]"
+149,orly,Orly EPIX Flexible Color ,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/27739f49c78555db95538d22383f4da2_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/orly-epix-flexible-color_106334.html,https://well.ca,"Orly introduces the next big thing in the industry. EPIX Flexible Color is a 2 step manicure system that has a long wearing formula with smudge-fixing technology.Features:Dries faster - in less than 8 minutesLasts longer - over a weekInnovative Smudge-Fixing Technology allows the formula to remain elastic and flex with the nail, making smudges and chips a thing of the pastApplies easily and removes like a polishNew Custom 600 Bristle Count Brush Technology and Gripper Cap provide precise application and even coverage on the nailDelivers a high shine finishHow Does it Work?Step 1 Flexible Colour: Begin by performing a dry manicure. Lightly buff nails and clean nail surface with alcohol. Apply an even coat of EPIX Flexible Color to all ten nails. Apply a second coat for full coverage.Step 2 Flexible Sealcoat: Finish with 1 coat of EPIX Flexible Sealcoat to seal in color and shine. For extended wear, reapply Sealcoat after three days.* Smudges will continue to self-repair until the Flexible Color is fully dry.",3.0,,nail_polish,[],2016-10-01T18:26:55.585Z,2017-12-23T20:51:09.089Z,http://makeup-api.herokuapp.com/api/v1/products/149.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/149/original/open-uri20171223-4-3bd28i?1514062268,"[{'hex_value': '#410211', 'colour_name': 'Acceptance Speech '}, {'hex_value': '#DF036D', 'colour_name': 'Backlit '}, {'hex_value': '#020202', 'colour_name': 'Blacklist '}, {'hex_value': '#AD0248', 'colour_name': 'Box Office Smash '}, {'hex_value': '#80ADB3', 'colour_name': 'Cameo '}, {'hex_value': '#51010E', 'colour_name': 'Casablanca '}, {'hex_value': '#F78963', 'colour_name': 'Casting Couch '}, {'hex_value': '#152B77', 'colour_name': 'Cinematic '}, {'hex_value': '#0061BF', 'colour_name': 'Cliffhanger '}, {'hex_value': '#A00260', 'colour_name': 'End Scene '}, {'hex_value': '#007E85', 'colour_name': 'Green Screen '}, {'hex_value': '#FF2784', 'colour_name': 'Headliner '}, {'hex_value': '#5D0016', 'colour_name': 'Iconic '}, {'hex_value': '#C60C21', 'colour_name': 'Improv '}, {'hex_value': '#AD4564', 'colour_name': 'Intermission '}, {'hex_value': '#713A48', 'colour_name': 'Leading Lady '}, {'hex_value': '#071485', 'colour_name': 'Melodrama '}, {'hex_value': '#9F1626', 'colour_name': 'Nominee '}, {'hex_value': '#640101', 'colour_name': 'Opening Night '}, {'hex_value': '#EC4697', 'colour_name': 'Out-Take '}, {'hex_value': '#F7F6F6', 'colour_name': 'Overexposed '}, {'hex_value': '#EB1B03', 'colour_name': 'Preview '}, {'hex_value': '#423D38', 'colour_name': 'Silver Screen '}, {'hex_value': '#C39561', 'colour_name': 'Special Effects '}, {'hex_value': '#F51D04', 'colour_name': 'Spoiler Alert '}, {'hex_value': '#9A0C2F', 'colour_name': 'Star Treatment '}, {'hex_value': '#AC1B82', 'colour_name': 'The Industry '}, {'hex_value': '#B0A07F', 'colour_name': 'Tinseltown '}, {'hex_value': '#ED4696', 'colour_name': 'Triple Threat '}]"
+148,orly,Orly Nail Lacquer ,8.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4e761b6e77b356384470b15229b31023_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/orly-nail-lacquer_61019.html,https://well.ca,"As one of the nail care industry's renowned color houses Orly has established a dynamic palette composed
+of subtle sheers, vivid crèmes, dazzling shimmers, smooth glitters and
+hot neons! Plus, each ORLY lacquer is free of DBP, Toluene, Formaldehyde
+ and features Orly's award-winning Gripper Cap.",3.0,,nail_polish,[],2016-10-01T18:26:54.223Z,2017-12-23T20:51:09.765Z,http://makeup-api.herokuapp.com/api/v1/products/148.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/148/original/data?1514062269,"[{'hex_value': '#55413a', 'colour_name': 'Prince Charming (40715) '}, {'hex_value': '#401e14', 'colour_name': 'Hot Chocolate (40719) '}, {'hex_value': '#171916', 'colour_name': 'Goth (40637) '}, {'hex_value': '#db0930', 'colour_name': ""Monroe's Red (40052) ""}, {'hex_value': '#6c1657', 'colour_name': 'Gorgeous (40131) '}, {'hex_value': '#681364', 'colour_name': 'Purple Crush (40464) '}, {'hex_value': '#631232', 'colour_name': 'Forever Crimson (40041) '}, {'hex_value': '#591129', 'colour_name': 'Ruby (40363) '}, {'hex_value': '#581328', 'colour_name': 'Bus Stop Crimson (40087) '}, {'hex_value': '#241518', 'colour_name': 'Vixen (40653) '}]"
+147,wet n wild,Wet n Wild Wild Shine Nail Colour ,1.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6f53a1fba843dde57271decf3b5c7ad0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-wild-shine-nail-colour_114017.html,https://well.ca,"Wet n Wild's claim to fame! This brand was launched in 1979 with this epic nail polish and it is one of their top-sellers. Why? Here’s what we think: not only are they just straight up awesome, but we’ve got every color, texture, and effect that you can possibly think of: creams, metallics, glitters, you name it! After decades of these flying off the shelves, they're pretty sure you already have a couple stashed away, but with so many colors, you can always add a new one – or double up! Everyone we talk to agrees—this is simply the best nail polish brand out there.Features:Purse Pride! New improved formula and packaging!High-shine finish in every color imaginable!3-Free: No Formaldehyde, Toluene, or PhthalatesStill the #1 selling nail polish in the market!Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Tosylamide/Epoxy Resin, Acetyl Tributyl Citrate, Isopropyl Alcohol, Triphenyl Phosphate, Stearalkonium Bentonite, Phthalic Anhydride/Trimellitic Anhydride/Glycols Copolymer, Silica, Etocrylene, Diacetone Alcohol, Trimethylpentanediyl Dibenzoate, Alumina, Titanium Dioxide/CI 77891 ",5.0,,nail_polish,[],2016-10-01T18:26:52.938Z,2017-12-23T20:51:08.840Z,http://makeup-api.herokuapp.com/api/v1/products/147.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/147/original/open-uri20171223-4-15noy9x?1514062268,"[{'hex_value': '#017F8D', 'colour_name': 'Be More Pacific '}, {'hex_value': '#272727', 'colour_name': 'Black Creme '}]"
+146,maybelline,Maybelline Color Show Nail Lacquer Jewels ,4.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f6239cbcd84fa838c461f020b86924aa_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-show-nail-lacquer_96730.html,https://well.ca,"Maybelline Color Show Nail Lacquer Jewels collection features jeweled nail lacquer top coats straight from the shows!Features:Adorns your nails with textured gem effectsTrendy top coat nail art designsEasy-flow brushFormaldehyde, DBP and Toluene freeShade Range: (left to right: Mosaic Prism, Platinum Adorn)For Best Results:First apply a clear base coat to prevent your nails from yellowing and to help your nail color last longer. Choose a base shade and with one sweep, paint the first line of nail polish up the center of your nail starting from the base to the tip.For the cleanest look, be sure to leave a small space at the base of the nail. Then apply nail color to the rest of the nail. Pick your textured top coat and paint over your base shade for a street styled nail art look.",3.0,,nail_polish,[],2016-10-01T18:26:51.778Z,2017-12-23T20:51:08.631Z,http://makeup-api.herokuapp.com/api/v1/products/146.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/146/original/open-uri20171223-4-fnr4hp?1514062268,[]
+145,maybelline,Maybelline Color Show Nail Lacquer Veils ,4.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/64cbcfbd001435c3abc3d8f77c16a0bf_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-show-nail-lacquer_96731.html,https://well.ca,"Maybelline Color Show Nail Lacquer Veils collection gives you subtle shimmers to refined glitters in colours straight from the shows!Features:Trendy top coat nail art designsEasy-flow brushFormaldehyde, DBP and Toluene freeShade Range: (left to right: Amethyst Aura, Rose Mirage, Crystal Disguise)For Best Results:First
+ apply a clear base coat to prevent your nails from yellowing and to
+help your nail color last longer. Choose a base shade and with one
+sweep, paint the first line of nail polish up the center of your nail
+starting from the base to the tip.For the cleanest look, be sure
+ to leave a small space at the base of the nail. Then apply nail color
+to the rest of the nail. Pick your textured top coat and paint over your
+ base shade for a street styled nail art look.",4.0,,nail_polish,[],2016-10-01T18:26:50.448Z,2017-12-23T20:51:08.413Z,http://makeup-api.herokuapp.com/api/v1/products/145.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/145/original/open-uri20171223-4-1a63bxt?1514062268,"[{'hex_value': '#394674', 'colour_name': 'Amethyst Aura '}]"
+144,pacifica,Pacifica 7 Free Nail Polish Set - Blue,21.5,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/694782ea45c04cdbedeed096fb82f297_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/pacifica-7-free-nail-polish-set_105174.html,https://well.ca,"Pacifica's new 7 Free Nail Polish is long lasting and void of many chemicals that one would find in traditional nail polish. These amazing vibrant colors go on smooth and stay put. In addition, Pacifica has added a custom wide 100% vegan brush for easier application.Features: Dark Desert Highway1972 Pool PartyDriftIngredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic Anhydride Copolymer, Acetyl Tributyl Citrate, Isopropyl Alcohol, Styrene/Acrylates Copolymer, Stearalkonium Bentonite, n-Butyl Alcohol, Benzophenone-1, Silica, Alumina, Trimethylpentanediyl Dibenzoate, Polyvinyl Butyral MAY CONTAIN (+/-): Aluminum Powder (CI 77000), Oxides (CI77499 / CI 77491), Red 34 Lake (CI 15880), Red 6 Lake (CI 15850), Red 7 Lake (CI 15850), Yellow 5 Lake (CI 19140), Ferric Ammonium Ferrocyanide (CI 77510), Mica (CI 77019), Blue 1 (CI 42090), Yellow 11 (CI 47000), Titanium",5.0,,nail_polish,['Vegan'],2016-10-01T18:26:49.175Z,2017-12-23T20:51:04.283Z,http://makeup-api.herokuapp.com/api/v1/products/144.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/144/original/data?1514062264,[]
+142,l'oreal,L'Oreal Colour Riche Gold Dust Nail Colour,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bfca70deb100137b3f23bb3a0f887420_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-colour-riche-gold-dust-nail_102185.html,https://well.ca,"L'Oreal Colour Riche® presents a new luxurious 3D texture for your nails. In a
+few strokes, achieve a textured nail finish with specks of sparkle for
+the ultimate chic look.",,,nail_polish,[],2016-10-01T18:26:46.512Z,2017-12-23T20:51:08.253Z,http://makeup-api.herokuapp.com/api/v1/products/142.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/142/original/data?1514062268,"[{'hex_value': '#2d4b4d', 'colour_name': 'Hidden Gems 141 '}, {'hex_value': '#a96e6a', 'colour_name': 'I Like it Chunky 144 '}, {'hex_value': '#86cecd', 'colour_name': 'Pop the Bubbles 142 '}, {'hex_value': '#3a2657', 'colour_name': 'Sexy in Sequins 137 '}, {'hex_value': '#d4bc98', 'colour_name': 'The Statement Piece 138 '}]"
+141,l'oreal,L'Oreal Extraordinaire Gel Lacque Nail Colour,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/284a3bf668e98f69cc51a58ff9de1d1a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-extraordinaire-gel-lacque_102255.html,https://well.ca,"L’Oréal Paris introduces the Extraordinaire Gel-Lacque 1-2-3 system for perfectly shaped, volumized nails and rich, ultra-glossy colour.This is a three-step nail system: GEL-PRIMER - Apply 1 coat of gel primer to build volume and prepare nails for optimized colour pay-off.GEL-COLOUR - Apply 2 coats of gel colour. Achieve rich, glossy colour and plumped-up nails.GEL-GLAZE - Apply 1 coat of gel glaze. Achieve incredible shine.",,,nail_polish,[],2016-10-01T18:26:45.084Z,2017-12-23T20:51:08.165Z,http://makeup-api.herokuapp.com/api/v1/products/141.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/141/original/data?1514062268,[]
+140,pacifica,7 Free Nail Polish Set - Red,21.5,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/135731beb1a0634f04ebea869dd45f03_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/7-free-nail-polish-set-red_105172.html,https://well.ca,"Pacifica's new 7 Free Nail Polish is long lasting and void of many chemicals that one would find in traditional nail polish. These amazing vibrant colors go on smooth and stay put. In addition, Pacifica has added a custom wide 100% vegan brush for easier application.Colours Included: Blushing BunniesRed Red WineCinnamon GirlIngredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic Anhydride Copolymer, Acetyl Tributyl Citrate, Isopropyl Alcohol, Styrene/Acrylates Copolymer, Stearalkonium Bentonite, n-Butyl Alcohol, Benzophenone-1, Silica, Alumina, Trimethylpentanediyl Dibenzoate, Polyvinyl Butyral MAY CONTAIN (+/-): Aluminum Powder (CI 77000), Oxides (CI77499 / CI 77491), Red 34 Lake (CI 15880), Red 6 Lake (CI 15850), Red 7 Lake (CI 15850), Yellow 5 Lake (CI 19140), Ferric Ammonium Ferrocyanide (CI 77510), Mica (CI 77019), Blue 1 (CI 42090), Yellow 11 (CI 47000), Titanium",5.0,,nail_polish,['Vegan'],2016-10-01T18:26:43.637Z,2017-12-23T20:31:49.999Z,http://makeup-api.herokuapp.com/api/v1/products/140.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/140/original/data?1514061109,[]
+139,china glaze,China Glaze Nail Lacquer ,8.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/11a61e4741fd3299bbf2dbd6b653f0d4_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/china-glaze-nail-lacquer_61013.html,https://well.ca,"China Glaze's unique lacquers contain China Clay as a nail hardener, the same material
+ that gives porcelain its shiny finish. These glossy lacquers work in
+perfect cohesion with their professional nail treatments for lasting
+strength, durability and overall gorgeous nails.China Glaze Nail Laquers are free of DBP, Toulene and added Formaldehyde.",4.7,,nail_polish,[],2016-10-01T18:26:41.195Z,2017-12-23T20:51:08.014Z,http://makeup-api.herokuapp.com/api/v1/products/139.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/139/original/data?1514062267,"[{'hex_value': '#e13947', 'colour_name': ' Fuchsia (009) '}, {'hex_value': '#ba3252', 'colour_name': 'Jamaican Out (174) '}]"
+138,essie,Essie Encrusted Nail Polish Collection,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7dab50d3ac08ea9c5f2373531a47dd17_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/essie-encrusted-nail-polish_86382.html,https://well.ca,"Get intricate, multi-dimensional, spectacularly ornate caviar nails with Essie Encrusted Nail Polish Collection. With
+all the fine detail of the most fanciful gem-encrusted jewel, these stunning shades take manicures to a whole new richly-sculpted dimension.Shade Range:Belugaria - live like a czarina. this richly ornamented jet black nail lacquer is laced with highly textured matte glitter with flashes of rainbow holographicsPeak of Chic - ascend the pinnacle of fashion and freeze your
+well-manicured assets in this alpine white holographic polish with icy
+crystal fringeOn a Silver Platter - violet holographic glitter and antique
+silver add bold contrast to this pearlescent gold polish that proclaims:
+ the world is yours for the takingLots of Lux - pile on the opulence and perfect the art of manicure
+ maximalism in this shimmering blue lapis lazuli lacquer with a sleek
+matte finishIgnite the Night - the scintillating light from this sparkling hematite nail lacquer with a superfine matte finish fans the flames of passion for luxurious fashionHors d'Oeuvres - nothing says extravagance like this delightful
+confection of platinum gold nail polish with a touch of iridescent
+silver glitter",5.0,,nail_polish,[],2016-10-01T18:26:39.952Z,2017-12-23T20:51:07.714Z,http://makeup-api.herokuapp.com/api/v1/products/138.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/138/original/open-uri20171223-4-1u24djz?1514062267,"[{'hex_value': '#827D7A', 'colour_name': 'On a Silver Platter '}, {'hex_value': '#005A98', 'colour_name': 'Lots of Lux '}, {'hex_value': '#76868C', 'colour_name': 'Ignite the Night '}]"
+137,revlon,Revlon Transforming Effects Top Coats,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5a4b4326f96cafe4c8bfc58ad60559e6_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-transforming-effects-top_101118.html?cat=678,https://well.ca," Transform your mani with these unique Transforming Effects Top Coats from Revlon. Bold glazes and alluring textures
+instantly transform your manicure. Wear over your favourite Nail
+Enamel to create unique effects.
+Shades:",4.0,,nail_polish,[],2016-10-01T18:26:38.470Z,2017-12-23T20:51:07.370Z,http://makeup-api.herokuapp.com/api/v1/products/137.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/137/original/data?1514062267,"[{'hex_value': '#efe8db', 'colour_name': 'Cosmic Flakies '}, {'hex_value': '#7e876b', 'colour_name': 'Golden Confetti '}, {'hex_value': '#e1c490', 'colour_name': 'Golden Glaze '}, {'hex_value': '#a7aba4', 'colour_name': 'Holographic Pearls '}, {'hex_value': '#f0c9de', 'colour_name': 'Matte Pearl Glaze '}, {'hex_value': '#dec3bc', 'colour_name': 'Nude Graffiti '}, {'hex_value': '#d9c2d2', 'colour_name': 'Pink Glaze '}]"
+136,sante,Sante Nail Polish,19.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e7bf82336f5e267d5d0b491c12fdb7cd_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/sante-nail-polish_51679.html,https://well.ca,"The colours of Sante nail polish range from a gentle glow to bold statement colors, and are very skin-friendly. Quick-drying, long-lasting and resistant. Incomparable variety of colors
+ and remarkably wearable: no formaldehyde, toluene or rosin. Not tested on animals.Jewel toned shades like Metallic Lavender by Sante make fall beauty a breeze. For more green fall beauty essentials, check out our blog, The Well!",4.4,,nail_polish,['Natural'],2016-10-01T18:26:37.072Z,2017-12-23T20:51:07.242Z,http://makeup-api.herokuapp.com/api/v1/products/136.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/136/original/data?1514062267,"[{'hex_value': '#8b6e6b', 'colour_name': 'No.7 Metallic Lavender '}]"
+135,pure anada,Pure Anada Princess Cosmetics Sugar Plum Kit ,15.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/28f6ca4ea2ce4e10d766f4c7cd9bf3d3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-princess-cosmetics-sugar_93643.html?cat=678,https://well.ca,"This little cosmetics kit is pure and pretty glamour for little princesses!Pure Anada Princess Cosmetics Kit contains eco-friendly, non-toxic formulas that are safe and healthy for the whole kingdom!This kit includes: a natural shimmering lip balm, non-toxic, water-based nail polish and a mineral shimmer powder. Ingredients:Shimmer Powder: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide (NOT nano-sized particles)Lip Shimmer: Organic
+ Sunflower Oil, Organic Shea Butter, Beeswax, Candelilla Wax, Mica, Iron
+ Oxides, Coconut Oil, Stevia Leaf Extract, Vitamin E (gluten free),
+Essential oil (peppermint, cinnamon, vanilla OR lemon)Nail Polish:
+ Water, Acrylates Copolymer, Butoxy Diglycol, Methylisothiazolinone,
+Hydroxxethylcellulose, Mineral Pigments: Ultramarines, Iron Oxide,
+Titanium Dioxide, Mica, OR Chromium Hydroxide Green",5.0,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:26:34.722Z,2017-12-23T20:51:06.988Z,http://makeup-api.herokuapp.com/api/v1/products/135.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/135/original/data?1514062266,[]
+134,l'oreal,L'Oreal Paris Colour Riche Collection Exclusive Nail Colour,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/dec895e124125238709b4dbac19d53c0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche_96634.html,https://well.ca,"Your dream colour is now at your fingertips with Colour Riche® Nail
+Colour. L'Oreal's formula delivers intense, luxurious colour and up to 10 days
+ of shine. This collection includes signature nude shades by L'Oreal's dazzling spokeswomen. The shades are custom-made to match various skin tones and
+haircolour.",,,nail_polish,[],2016-10-01T18:26:33.250Z,2017-12-23T20:51:06.132Z,http://makeup-api.herokuapp.com/api/v1/products/134.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/134/original/data?1514062266,"[{'hex_value': '#721f29', 'colour_name': ""Blake's Pure Red ""}, {'hex_value': '#AB7680', 'colour_name': ""Doutzen's Nude ""}, {'hex_value': '#E1B89C', 'colour_name': ""Eva's Nude ""}, {'hex_value': '#AF6E67', 'colour_name': ""Julianne's Nude ""}, {'hex_value': '#72545D', 'colour_name': ""Liya's Nude ""}]"
+133,maybelline,Maybelline Color Show Nail Lacquer ,4.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a05aa31a7e30d9d262ae36d0be2c4f87_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-show-nail-lacquer_78068.html,https://well.ca,"High fashion meets high-art. With Maybelline Color Show Nail Lacquer PolkaDots Collection you get 3D nail design for your fingertips!Features:
+Creates Hollywood-worthy special effectsChip-resistant formula Easy-flow brushFormaldehyde, DBP and Toluene freeShade Range:
+",3.3,,nail_polish,[],2016-10-01T18:26:31.673Z,2017-12-23T20:51:05.961Z,http://makeup-api.herokuapp.com/api/v1/products/133.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/133/original/open-uri20171223-4-zz1pau?1514062265,"[{'hex_value': '#037679', 'colour_name': 'Drops of Jade (55) '}]"
+132,pure anada,Pure Anada Princess Cosmetics Be Mine Kit ,15.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/729f14bbcaa15888a91cd7ad200c3a90_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-princess-cosmetics-be_93640.html?cat=678,https://well.ca,"This little cosmetics kit is pure and pretty glamour for little princesses!Pure Anada Princess Cosmetics Kit contains eco-friendly, non-toxic formulas that are safe and healthy for the whole kingdom!This kit includes: a natural shimmering lip balm, non-toxic, water-based nail polish and a mineral shimmer powder. Ingredients:Shimmer Powder: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide (NOT nano-sized particles)Lip Shimmer: Organic Sunflower Oil, Organic Shea Butter, Beeswax, Candelilla Wax, Mica, Iron Oxides, Coconut Oil, Stevia Leaf Extract, Vitamin E (gluten free), Essential oil (peppermint, cinnamon, vanilla OR lemon)Nail Polish: Water, Acrylates Copolymer, Butoxy Diglycol, Methylisothiazolinone, Hydroxxethylcellulose, Mineral Pigments: Ultramarines, Iron Oxide, Titanium Dioxide, Mica, OR Chromium Hydroxide Green",5.0,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:26:29.351Z,2017-12-23T20:51:05.773Z,http://makeup-api.herokuapp.com/api/v1/products/132.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/132/original/data?1514062265,[]
+131,essie,Essie Nail Colour Cashmere Matte Collection,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5a8e814bb61cd9168941f448d4ea8a1c_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/essie-nail-colour-cashmere-matte_102081.html,https://well.ca,"With a satin-matte texture and a subtle but spellbinding
+micro-iridescent finish, this Essie Nail Colour Cashmere Matte Collection is sure to inspire you to epic
+fashion heights.Features:Soft matte finish with reflective pearl colorLuxurious neutral color palette inspired by rich cashmereFor best results, use without a top coatShades (left to right): Comfy in Cashmere, Wrap Me Up, Just Stitched, All Eyes on Nude, Coat Couture, Spun in Luxe",1.5,,nail_polish,[],2016-10-01T18:26:27.827Z,2017-12-23T20:51:05.428Z,http://makeup-api.herokuapp.com/api/v1/products/131.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/131/original/data?1514062265,"[{'hex_value': '#a57f7b', 'colour_name': 'Comfy in Cashmere '}, {'hex_value': '#f3e5de', 'colour_name': 'Wrap Me Up '}, {'hex_value': '#938a98', 'colour_name': 'Coat Couture '}, {'hex_value': '#2f4a61', 'colour_name': 'Spun in Luxe '}]"
+130,revlon,Revlon Top Speed Enamel Nail,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/588d0b742409c3ad227d9b9c616e5772_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-top-speed-enamel-nail_31523.html,https://well.ca,"Revlon Top Speed's patented formula
+ delivers amazingly quick color, with a built-in topcoat that rises to
+the surface for a glossy, ultra smooth manicure- that sets in 60
+seconds. The ColorPrecise brush ensures even, smooth, salon quality
+application every time.
+",4.8,,nail_polish,[],2016-10-01T18:26:26.188Z,2017-12-23T20:51:04.960Z,http://makeup-api.herokuapp.com/api/v1/products/130.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/130/original/data?1514062264,"[{'hex_value': '#262425', 'colour_name': 'Black Magic '}, {'hex_value': '#E7E8EA', 'colour_name': 'Celestial Fix (Moon & Stars Glitter) '}, {'hex_value': '#C5C5C7', 'colour_name': 'Sterling (Metcallic) '}]"
+129,butter london,butter LONDON Patent Shine 10x Nail Laquer,22.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/739ca23d0c2ee60e0b19c38568b9d9b6_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/butter-london-patent-shine-10x-nail_106514.html,https://well.ca,"Butter London's Patent Shine 10x innovative 10-in-1 formula is loaded with ingredients proven to promote brighter, stronger, healthier nails in classic, creamy, wearable shades for your best-dressed nails.10 Benefits:Up to 10 day wearChip resistantFull colour coverageGel-like cushion finish and shineFade-resistantProtectSmoothStrengthenBrighten7 Free - Butter London does not add formaldehyde, formaldehyde resin, toluene, DBP, camphor, xylene, or ethyl tosalimide to its nail product formulaInstructions: Apply one coat of basecoat to clean, dry nails. Follow with your favorite Butter London Patent Shine 10X Nail Lacquer. Apply one coat of topcoat for a smooth, high-gloss finish. Ingredients: Butyl Acetate, Ethyl Acetate, Isopropyl Alcohol, Nitrocellulose, Tosylamide/Epoxy Resin, Acetyl Tributyl Citrate, Benzophenone -1, Styrene/Acrylates Copolymer, Stearalkonium Hectorite, Malic Acid, Citric Acid, Bambusa Vulgaris (Bamboo) Extract, Ethyl Trymethylbenzoyl Phenylphosphinate, Diamond Powder, Polymethylsilsesquioxane.",5.0,,nail_polish,"['Vegan', 'Natural']",2016-10-01T18:26:23.723Z,2017-12-23T20:51:04.648Z,http://makeup-api.herokuapp.com/api/v1/products/129.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/129/original/data?1514062264,"[{'hex_value': '#832A66', 'colour_name': 'Ace '}, {'hex_value': '#45060F', 'colour_name': 'Afters '}, {'hex_value': '#FEC2BA', 'colour_name': 'Brill! '}, {'hex_value': '#736641', 'colour_name': 'British Khaki '}, {'hex_value': '#B31733', 'colour_name': 'Broody '}, {'hex_value': '#D7E0E8', 'colour_name': 'Candy Floss '}, {'hex_value': '#005B83', 'colour_name': 'Chat Up '}, {'hex_value': '#F57984', 'colour_name': 'Coming Up Roses '}, {'hex_value': '#B0A482', 'colour_name': 'Dapper '}, {'hex_value': '#A7485E', 'colour_name': 'Dearie Me! '}, {'hex_value': '#BA7AA2', 'colour_name': 'Fancy '}, {'hex_value': '#FF5575', 'colour_name': 'Flusher Blusher '}, {'hex_value': '#DB0100', 'colour_name': ""Her Majesty's Red ""}, {'hex_value': '#FF6356', 'colour_name': 'Jolly Good '}, {'hex_value': '#FFACB6', 'colour_name': 'Loverly '}, {'hex_value': '#D09785', 'colour_name': ""Mum's the Word ""}, {'hex_value': '#9B9180', 'colour_name': 'Over the Moon '}, {'hex_value': '#FFDCD2', 'colour_name': 'Pink Knickers '}, {'hex_value': '#470900', 'colour_name': 'Rather Red '}, {'hex_value': '#FCD1A9', 'colour_name': 'Shop Girl '}, {'hex_value': '#F72008', 'colour_name': 'Smashing! '}, {'hex_value': '#CEC8BD', 'colour_name': 'Ta-Ta! '}, {'hex_value': '#AD7A69', 'colour_name': 'Tea Time '}, {'hex_value': '#FFE5EA', 'colour_name': 'Twist & Twirl '}]"
+128,suncoat,Suncoat Polish & Peel Super Natural Mineral Nail Polish,9.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/877c15ed5cbbbf0c92ff3a6d74396b25_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/suncoat-polish-peel-super-natural_55983.html,https://well.ca,"Suncoat introduces the first water-based, ordourless, eco-friendly, peelaway polish featuring
+natural colours and mineral pigments instead of synthetics. No nail polish remover needed!Features:Completely VOC free Free of toulene, formaldehyde (no
+ formaldehyde donours), acetates, acetone or any other
+ chemical solvents. Releases ONLY water when applied!
+
+ Usage Tips: Apply 2-3 thick coats. Polish lasts for weeks on
+ toenails and is good for a day or two on finger nails. Adding a
+ layer of Suncoat #23 Clear Top Coat will help the nail polish
+ to last longer. Removal: Soak nail in warm water, then peel from one corner.Ingredients: Water, acrylic copolymer.
+ May contain: mica, iron oxides, titanium dioxide, chromium
+ oxide green, ultramarines, ferric ferrocyanide, carmine.Colour Range:
+ ",3.8,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:26:19.609Z,2017-12-23T20:51:04.175Z,http://makeup-api.herokuapp.com/api/v1/products/128.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/128/original/data?1514062264,[]
+127,essie,Essie Mirror Metallics,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f9cf806594b794ebb2f10ce217a90adb_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/essie-mirror-metallics_55512.html,https://well.ca,Get ready to Metal around with colour! Essie's latest collection gives you a brushed steel effect with these high-impact chrome polishes. ,3.4,,nail_polish,[],2016-10-01T18:26:18.417Z,2017-12-23T20:51:04.080Z,http://makeup-api.herokuapp.com/api/v1/products/127.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/127/original/data?1514062264,"[{'hex_value': '#6a6f72', 'colour_name': 'No Place Like Chrome '}, {'hex_value': '#a18c70', 'colour_name': 'Good as Gold '}, {'hex_value': '#9e6b56', 'colour_name': 'Penny Talk '}]"
+126,pure anada,Pure Anada Nail Polish,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3184a0a50b398f81e7284b1a04befc9a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/pure-anada-nail-polish_93647.html,https://well.ca,"Pure Anada Nail Polish is long-wearing polish color that is “free” from the 5 most toxic ingredients found in traditional polish. Plus it is solvent-based, not water-based.Pure Anada Polish is amazingly long-lasting when applied with the “Over-Under” base/top coat.Ingredients: Butylacetate, Ethylacetate, Nitrocellulose, Acetyl Tributyl Citrate, Adipic Acid/Neopentyl, Glycol Trimellitic, Anhydride Copolymer, Isopropyl Alcohol, Acrylates Copolymer, Stearalkonium Bentonite, Styrene Acrylates, Copolymer, Silica, Alumina, Benzophenone-1. May contain: Mica, Iron Oxides (CI77491, 77499), Titanium Dioxide (CI77891), Red 7 Lake (CI158501), UltramarinesVegan, Gluten Free, Non-GMO, 5-Free, Dairy Free, Peanut Free",4.8,,nail_polish,"['Natural', 'Vegan', 'Gluten Free', 'Non-GMO', 'Canadian']",2016-10-01T18:26:15.348Z,2017-12-23T20:51:04.558Z,http://makeup-api.herokuapp.com/api/v1/products/126.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/126/original/data?1514062264,"[{'hex_value': '#aa897e', 'colour_name': 'Baroque Beauty\t- Medium Taupe '}, {'hex_value': '#e89488', 'colour_name': 'Call Me Baby\t - Coral '}, {'hex_value': '#eed4d2', 'colour_name': 'Cherry Blossom\t - Light Bubble Gum Pink '}, {'hex_value': '#590203', 'colour_name': 'Deep Wine\t - Rich Deep Red Burgundy '}, {'hex_value': '#4b1d33', 'colour_name': 'Eggplant\t - Dark Purple Black '}, {'hex_value': '#d1b494', 'colour_name': 'Jazz Hands\t - Medium Shimmering Caramel '}, {'hex_value': '#7b6a52', 'colour_name': 'Medieval - Deep Grey Brown with Slight Green Undertone '}, {'hex_value': '#f38d6a', 'colour_name': 'Melon Mania\t - Bright Orange Coral '}, {'hex_value': '#8b7267', 'colour_name': 'Mink\t - Medium Grey '}, {'hex_value': '#BD3871', 'colour_name': 'Nebula - Mixed Pink Glitter '}, {'hex_value': '#dbc59b', 'colour_name': 'Saturn\t - Large Gold Glitter and Small Rose Glitter '}, {'hex_value': '#ebd9cd', 'colour_name': 'Sheer Love\t - Sheer Nude '}, {'hex_value': '#d8afb7', 'colour_name': 'Twilight Romance\t - Medium Dusty Rose '}, {'hex_value': '#983539', 'colour_name': 'Velvet Rose\t - Medium Deep Reddish Rose '}, {'hex_value': '#E44579', 'colour_name': 'Make it Magenta '}, {'hex_value': '#FD5758', 'colour_name': 'Poolside Pink '}]"
+125,sinful colours,Sinful Colours Nail Polish,2.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/49011c715277e5f39fd63a8e05cd71ef_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/sinful-colours-nail-polish_92340.html,https://well.ca,"At a low price, Sinful Colors makes putting the glitz on your nails a steal, not a splurge. Nails with bling are an easy and quick way to create your own look: the fabulous value Sinful Colors offers (plus their huge variety of shades!) allows you to easily change your color to match your mood or look any time, any day. With vivid shades that pop, wow, flatter and inspire. In cream, glitter, shimmer and matte, and in formulas you want that provide full color coverage. All made in the USA, with the quality you expect from a leading nail brand, without formaldehyde, toluene and DBP.",4.3,,nail_polish,[],2016-10-01T18:26:13.388Z,2017-12-23T20:51:03.623Z,http://makeup-api.herokuapp.com/api/v1/products/125.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/125/original/data?1514062263,"[{'hex_value': '#C281B6', 'colour_name': 'Bali Mist (Purple Pearl) '}, {'hex_value': '#070706', 'colour_name': 'Black on Black (Black Cream) '}, {'hex_value': '#FC5A21', 'colour_name': 'Boogie Nights (Orange Cream) '}, {'hex_value': '#9AD0C8', 'colour_name': 'Cinderella (Blue Shimmer) '}, {'hex_value': '#FE920A', 'colour_name': 'Cloud 9 (Orange Pearl) '}, {'hex_value': '#EE1F70', 'colour_name': 'Cream Pink (Pink Cream) '}, {'hex_value': '#DA1A79', 'colour_name': 'Daredevil (Pink Cream) '}, {'hex_value': '#F8E2CC', 'colour_name': 'Easy Going (Nude Cream) '}, {'hex_value': '#25348D', 'colour_name': 'Endless Blue (Blue Cream) '}, {'hex_value': '#C30D37', 'colour_name': 'Folly (Red Cream) '}, {'hex_value': '#5B4668', 'colour_name': 'Frenzy (Purple Glitter) '}, {'hex_value': '#EEB3A5', 'colour_name': 'Glass Pink (Pink Shimmer) '}, {'hex_value': '#F4602B', 'colour_name': 'Hazard (Orange Cream) '}, {'hex_value': '#6A65BA', 'colour_name': 'Hottie (Blue Glitter) '}, {'hex_value': '#B69BA0', 'colour_name': 'Let Me Go (Purple Matte) '}, {'hex_value': '#46197C', 'colour_name': ""Let's Talk (Purple Pearl) ""}, {'hex_value': '#0BADC1', 'colour_name': 'Love Nails (Blue Pearl) '}, {'hex_value': '#1A276B', 'colour_name': 'Midnight Blue (Blue Cream) '}, {'hex_value': '#77A981', 'colour_name': 'Mint Apple (Green Cream) '}, {'hex_value': '#B2ACA5', 'colour_name': 'Out Of This World (Gray Shimmer) '}, {'hex_value': '#EB7685', 'colour_name': 'Pink Forever (Pink Cream) '}, {'hex_value': '#F792A5', 'colour_name': 'Pinky Glitter (Pink Glitter) '}, {'hex_value': '#671F20', 'colour_name': 'Rich in Heart (Red Pearl) '}, {'hex_value': '#188260', 'colour_name': 'Rise and Shine (Green Matte) '}, {'hex_value': '#800412', 'colour_name': 'Ruby Ruby (Red Cream) '}, {'hex_value': '#016F6E', 'colour_name': 'Savage (Blue Matte) '}, {'hex_value': '#F3F2F0', 'colour_name': 'Snow Me White (White Cream) '}, {'hex_value': '#E6B896', 'colour_name': 'Social Ladder (Pink Shimmer) '}, {'hex_value': '#D37959', 'colour_name': 'Soul Mate (Nude Cream) '}, {'hex_value': '#780613', 'colour_name': 'Sugar Sugar (Red Shimmer) '}, {'hex_value': '#FD4431', 'colour_name': 'Timbleberry (Red Cream) '}, {'hex_value': '#EBE8F6', 'colour_name': 'Tokyo Pearl (White Pearl) '}, {'hex_value': '#BD3127', 'colour_name': 'Under 18 (Red Pearl) '}, {'hex_value': '#A56340', 'colour_name': 'Vacation Time (Nude Cream) '}, {'hex_value': '#E98C70', 'colour_name': 'You Just Wait (Pink Pearl) '}]"
+124,mineral fusion,Mineral Fusion Nail Polish,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/affda4fa0d0c8263549fe901eda814cc_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/mineral-fusion-nail-polish_91622.html,https://well.ca,"Mineral Fusion Nail Polish is a healthier alternative to traditional nail polish in many gorgeous shades. Apply this long-lasting chip-resistant mineral nail polish formula flawlessly using the custom, extra-thick brush. Mineral Fusion Nail Polish is a toulene free nail polish and like all of their cosmetics, upholds their standard for Formula Purity.Features:Long-lasting chip resistant formulaFormaldehyde, toulene, camphor and dibutyl pthalate freeCustom, extra-thick brush for flawless applicationIngredients: Ethyl Acetate, Butyl Acetate, Isopropyl Alcohol, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic, Anhydride Copolymer, Trimethyl Pentanyl Diisobutyrate, Stearalkonium Hectorite, Diacetone Alcohol Styrene, Acrylates Copolymer, Silica, Citric Acid, Benzophenone. Mica, Oxides, Titanium Dioxide, Bismuth Oxychloride, Aluminum Powder, D&C Red No. 7 Calcium Lake, D&C Violet No. 2, FD&C Yellow No. 5 Alluminum Lake, Ferric Ammonium Ferrocyanide. Mineral Fusion Nail Polish is formaldehyde free, toulene free, camphor free, dibutyl pthalate free, paraben free, hypoallergenic, gluten free, talc free, fragrance free and free of artificial colors. As with all of their cosmetics, Mineral Fusion Nail Polish is never tested on animals.",4.0,,nail_polish,"['Gluten Free', 'Natural']",2016-10-01T18:26:11.009Z,2017-12-23T20:51:03.499Z,http://makeup-api.herokuapp.com/api/v1/products/124.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/124/original/data?1514062263,"[{'hex_value': '#E3BFC6', 'colour_name': 'Blushing Crystal - Pale pink (sheer finish) '}, {'hex_value': '#EED8E3', 'colour_name': 'Pink Crush - Sheer pink (glitter finish) '}, {'hex_value': '#F09AA9', 'colour_name': 'Skipping Stone - Light pink (metallic finish) '}]"
+123,covergirl,CoverGirl Outlast Stay Brilliant Nail Gloss,5.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ad5297ce5c35c04daa3c85b6906aaedc_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-outlast-stay-brilliant_107374.html,https://well.ca,"Dare to go topless with CoverGirl Outlast Stay Brilliant Nail Gloss. New high-gloss nail polish formula that combines a base coat, high-gloss color, and a chip-resistant top coat in one simple step. Features:High gloss colourLasts as long as one week3-in-1 formula - base coat, colour, and top coatQuick, easy and convenientHow to Apply:Step 1: File nails to your desired length and shape.Step 2: Brush your favorite nail color on top of each nail. Allow nail polish to fully dry.Step 3: Apply a second coat for deeper pigment.",,,nail_polish,[],2016-10-01T18:26:09.814Z,2017-12-23T20:51:04.423Z,http://makeup-api.herokuapp.com/api/v1/products/123.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/123/original/open-uri20171223-4-1dxo5r?1514062264,"[{'hex_value': '#CC2828', 'colour_name': 'Fury '}, {'hex_value': '#033C8D', 'colour_name': 'Mutant '}, {'hex_value': '#44092B', 'colour_name': 'Nemesis '}, {'hex_value': '#9A043B', 'colour_name': 'Red Revenge '}, {'hex_value': '#C0B7AF', 'colour_name': 'Speed of Light '}]"
+122,revlon,Revlon Nail Enamel,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e960bba3ac7a8cb393b2293a976c2b61_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-nail-enamel_4017.html,https://well.ca,"Rich, glorious, gorgeous color. It completes an outfit. It expresses your mood. It sets hearts racing!Revlon Nail Enamel gives up to 10
+days of lasting color and shine. Revlon's exclusive silk-protein
+shield works to instantly help even out the surface of the nail while
+rising above color to automatically smooth away bubbles, streaks and
+brush marks.",4.4,,nail_polish,[],2016-10-01T18:26:07.954Z,2017-12-23T20:51:03.360Z,http://makeup-api.herokuapp.com/api/v1/products/122.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/122/original/data?1514062263,"[{'hex_value': '#F15D5A', 'colour_name': 'Adventurous '}, {'hex_value': '#720a2d', 'colour_name': 'Bewitching '}, {'hex_value': '#F7ABB8', 'colour_name': 'Bubbly '}, {'hex_value': '#BC7F40', 'colour_name': 'Chameleon '}, {'hex_value': '#C80047', 'colour_name': 'Cherries In The Snow '}, {'hex_value': '#E1AD94', 'colour_name': 'Creme Brulee '}, {'hex_value': '#96181B', 'colour_name': 'Daring Graffiti (with Glitter) '}, {'hex_value': '#AE6475', 'colour_name': 'Desirable '}, {'hex_value': '#5E0012', 'colour_name': 'Divine '}, {'hex_value': '#61a9d3', 'colour_name': 'Dreamer '}, {'hex_value': '#b29a92', 'colour_name': 'Elegant '}, {'hex_value': '#ed1c24', 'colour_name': 'Fearless '}, {'hex_value': '#A03296', 'colour_name': 'Hypnotic '}, {'hex_value': '#B35448', 'colour_name': 'Iced Mauve '}, {'hex_value': '#2C2E2D', 'colour_name': 'Iconic '}, {'hex_value': '#4a3574', 'colour_name': 'Impulsive '}, {'hex_value': '#7D8BC8', 'colour_name': 'Irresistible '}, {'hex_value': '#E52F58', 'colour_name': 'Optimistic '}, {'hex_value': '#520111', 'colour_name': 'Passionate '}, {'hex_value': '#C6168D', 'colour_name': 'Plum Seduction '}, {'hex_value': '#F9F9F9', 'colour_name': 'Pure Pearl '}, {'hex_value': '#A5082E', 'colour_name': 'Raven Red '}, {'hex_value': '#BE0018', 'colour_name': 'Revlon Red '}, {'hex_value': '#C18076', 'colour_name': 'Romantique '}, {'hex_value': '#FDE4E7', 'colour_name': 'Sheer Petal '}, {'hex_value': '#B4A48D', 'colour_name': 'Stunner (with Glitter) '}, {'hex_value': '#B40B4E', 'colour_name': 'Valentine '}, {'hex_value': '#EA5994', 'colour_name': 'Vivacious '}, {'hex_value': '#66073B', 'colour_name': 'Vixen '}]"
+121,essie,Essie Nail Colour,10.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bec95851afb08acd6f00242e97535f98_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/essie-nail-colour_33987.html,https://well.ca,"Colour is the obsession! Dive in and make a splash with Essie Nail Polish. DBP, Toluene and Formaldehyde free.Features: Salon quality formulaLong-lasting, chip-resistant, with a high shine finishBright tropical colours from Essie are the perfect pop for summer! Find more beach ready beauty picks on our blog, The Well.",4.3,,nail_polish,[],2016-10-01T18:26:05.221Z,2017-12-23T20:51:03.218Z,http://makeup-api.herokuapp.com/api/v1/products/121.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/121/original/data?1514062263,"[{'hex_value': '#be254e', 'colour_name': 'A List (434) '}, {'hex_value': '#C0C8B3', 'colour_name': 'Absolutely Shore '}, {'hex_value': '#2D3450', 'colour_name': 'After School Boy Blazer '}, {'hex_value': '#894662', 'colour_name': 'Angora Cardi (700) '}, {'hex_value': '#20417d', 'colour_name': 'Aruba Blue (280) '}, {'hex_value': '#56152f', 'colour_name': 'Bahama Mama (400) '}, {'hex_value': '#fbf1ef', 'colour_name': 'Ballet Slippers (162) '}, {'hex_value': '#43787E', 'colour_name': 'Beach Bum Blu - Sea Side Blue Pearl (776) '}, {'hex_value': '#552C32', 'colour_name': 'Berry Naughty '}, {'hex_value': '#b2d8f2', 'colour_name': 'Bikini So Tenny (800) '}, {'hex_value': '#f1f1ec', 'colour_name': 'Blanc (008) '}, {'hex_value': '#5d2d31', 'colour_name': 'Bordeaux (424) '}, {'hex_value': '#1d5ca0', 'colour_name': 'Butler Please (819) '}, {'hex_value': '#b77c66', 'colour_name': 'Buy Me Cameo (286) '}, {'hex_value': '#CD565B', 'colour_name': 'Carousel Coral '}, {'hex_value': '#908080', 'colour_name': 'Chinchilly (696) '}, {'hex_value': '#E0BEA6', 'colour_name': 'Cocktails & Coconuts '}, {'hex_value': '#e41641', 'colour_name': 'Cute as a Button (686) '}, {'hex_value': '#EE0A5A', 'colour_name': 'Double Breasted Jacket '}, {'hex_value': '#d2878c', 'colour_name': 'Eternal Optimist (676) '}, {'hex_value': '#CDEAD8', 'colour_name': 'Fashion Playground '}, {'hex_value': '#ee1930', 'colour_name': 'Fifth Avenue (444) '}, {'hex_value': '#f9ced7', 'colour_name': 'Fiji (348) '}, {'hex_value': '#DEE8EE', 'colour_name': 'Find Me An Oasis '}, {'hex_value': '#004153', 'colour_name': 'Go Overboard (782) '}, {'hex_value': '#225443', 'colour_name': 'Going Incognito '}, {'hex_value': '#F9006B', 'colour_name': 'Haute In The Heat '}, {'hex_value': '#D9B3C0', 'colour_name': 'Hi Maintenance '}, {'hex_value': '#81373e', 'colour_name': 'In Stitches (727) '}, {'hex_value': '#61C3D5', 'colour_name': 'In The Cab-ana '}, {'hex_value': '#d5b0b7', 'colour_name': 'Lady Like '}, {'hex_value': '#658cbd', 'colour_name': 'Lapiz of Luxury (717) '}, {'hex_value': '#130a09', 'colour_name': 'Licorice (720) '}, {'hex_value': '#cab1ce', 'colour_name': 'Lilacism (705) '}, {'hex_value': '#fff4ee', 'colour_name': 'Mademoiselle (384) '}, {'hex_value': '#F46DB9', 'colour_name': 'Madison Ave-hue '}, {'hex_value': '#e9e8e7', 'colour_name': 'Marshmallow (024) '}, {'hex_value': '#9d8f8e', 'colour_name': 'Master Plan (779) '}, {'hex_value': '#776670', 'colour_name': 'Merino Cool (730) '}, {'hex_value': '#001445', 'colour_name': 'Midnight Cami (697) '}, {'hex_value': '#D6C7CD', 'colour_name': 'Minimalistic '}, {'hex_value': '#bde0c5', 'colour_name': 'Mint Candy Apple '}, {'hex_value': '#af9a95', 'colour_name': 'Mochacino (781) '}, {'hex_value': '#e9adc1', 'colour_name': 'Muchi Muchi (152) '}, {'hex_value': '#32195a', 'colour_name': 'No More Film (792) '}, {'hex_value': '#484445', 'colour_name': 'Over the Edge (712) '}, {'hex_value': '#967bb9', 'colour_name': 'Playdate (783) '}, {'hex_value': '#a50037', 'colour_name': 'Plumberry (292) '}, {'hex_value': '#2C6D45', 'colour_name': 'Pretty Edgy '}, {'hex_value': '#951517', 'colour_name': 'Really Red '}, {'hex_value': '#c8b6a2', 'colour_name': 'Sand Tropez (745) '}, {'hex_value': '#4f3d49', 'colour_name': ""Smokin' Hot (739) ""}, {'hex_value': '#02221d', 'colour_name': 'Stylenomics (806) '}, {'hex_value': '#fde7ea', 'colour_name': 'Sugar Daddy (473) '}, {'hex_value': '#FF726F', 'colour_name': 'Sunday Funday '}, {'hex_value': '#f2706b', 'colour_name': 'Tart Deco (709) '}, {'hex_value': '#D1C6C5', 'colour_name': 'Topless & Barefoot '}, {'hex_value': '#0e4a45', 'colour_name': 'Trophy Wife (776) '}, {'hex_value': '#EDE1D6', 'colour_name': 'Tuck It In My Tux '}, {'hex_value': '#74cbc2', 'colour_name': 'Turquoise & Caicos (720) '}, {'hex_value': '#dfbdbd', 'colour_name': 'Vanity Fairest (120) '}, {'hex_value': '#dc104f', 'colour_name': 'Watermelon (127) '}, {'hex_value': '#44001b', 'colour_name': 'Wicked (249) '}]"
+120,suncoat,Suncoat Girl Nail Beauty Kit with Decals Ballerina Beauty,22.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0c72c8cb27e4c89746e353a332474c81_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/suncoat-girl-nail-beauty-kit-with_74571.html,https://well.ca,"This Suncoat Girl Nail Beauty Kit with Decals is the ideal ""try-me"" pack or birthday gift! This three bottle set delivers fun and unique nail art designs with natural nail polish and nail decals.Features: Water-based nail polish Peel-able No remover needed Safe and non toxicKit Contains: Ballerina Beauty color (8 mL) Strawberry Delight color (8 mL) Clear Topcoat (8 mL) 1 Page of Nail DecalsIngredients: water, polyurethane. May contain: mica, titanium dioxide, carmine, ferric ferrocyanide, chromium oxide green, iron oxide",4.0,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:26:03.724Z,2017-12-23T20:51:03.088Z,http://makeup-api.herokuapp.com/api/v1/products/120.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/120/original/data?1514062263,[]
+119,suncoat,Suncoat Girl Nail Beauty Kit with Decals Mermaid Princess,22.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a05895c3b7792308c116e07ff7325f3a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/suncoat-girl-nail-beauty-kit-with_74570.html,https://well.ca,"This Suncoat Girl Nail Beauty Kit with Decals is the ideal ""try-me"" pack or birthday gift! This three bottle set delivers fun and unique nail art designs with natural nail polish and nail decals.Features: Water-based nail polish Peel-able No remover needed Safe and non toxicKit Contains: Mermaid Blue color (8 mL) Princess Purple color (8 mL) Clear Topcoat (8 mL) 1 Page of Nail DecalsIngredients: water, polyurethane. May contain: mica, titanium dioxide, carmine, ferric ferrocyanide, chromium oxide green, iron oxide",4.0,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:26:02.121Z,2017-12-23T20:51:02.898Z,http://makeup-api.herokuapp.com/api/v1/products/119.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/119/original/data?1514062262,[]
+117,l'oreal,L'Oreal Infallible Nail Polish in Keep Magenta,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/92adb254b0183b5652c581280301cb93_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-nail-polish-in_102192.html,https://well.ca,"L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin™ that
+interact with one another to create a unique matrix. The formulas are a
+combination of film forming polymer, gellifying agents and crystal
+copolymer designed to bring durability, adhesion to nail and brilliant
+shine. Provides a smooth, plump, spectacular gel shine manicure that
+lasts.Features: Up to 12-day wear
+Spectacular gel shine
+Matching tinted top coat
+No nail damage
+Easy to remove",,,nail_polish,[],2016-10-01T18:25:59.507Z,2017-12-23T20:51:02.340Z,http://makeup-api.herokuapp.com/api/v1/products/117.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/117/original/data?1514062262,[]
+116,piggy paint,Piggy Paint Nail Polish,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b52e199adc7a7a95d3b910cc234ffd65_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/piggy-paint-nail-polish_81387.html,https://well.ca,"Piggy Paint is specially formulated from natural ingredients and dries
+to a hard, durable finish. This kids nail polish has no toxic chemicals; it’s free of
+formaldehyde, toluene, phthalates, Bisphenol A, ethyl acetate and
+acetone.Say good-bye to harsh, smelly chemicals and hello to Piggy Paint…this natural nail polish is as Natural as Mud!Features: Non-toxicLow OdorWater-based formulaHypoallergenicFun, vibrant colorsDries to a hard, durable finishCruelty-freeHas a little bit of sparkle in the colourSafe for use during Pregnancy!Directions: Wash hands with soap and water.Apply 2 -3 thin coats of Piggy Paint.Air dry 60 seconds.Blow dry polished nails for 1 minute with hair dryer set on warm heat/low blower setting. For safety purposes, please follow manufacturer’s instructions on blow dryer and always monitor your child.Ingredients: Water, acrylates copolymers, melia azadirachta (neem oil). May contain:
+ mica, red 34 lake, ultramarines, titanium dioxide, iron oxide pigments.",4.3,,nail_polish,['Natural'],2016-10-01T18:25:57.245Z,2017-12-23T20:51:02.048Z,http://makeup-api.herokuapp.com/api/v1/products/116.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/116/original/data?1514062262,"[{'hex_value': '#FDA4A6', 'colour_name': 'Angel Kisses (Soft, Light Pink) '}, {'hex_value': '#EB00A1', 'colour_name': 'Berry Go Round (Raspberry Inspired Fuschia) '}, {'hex_value': '#2762B2', 'colour_name': 'Brand SpankN Blue (Royal Blue Glitter) '}, {'hex_value': '#8CB4C4', 'colour_name': 'Bubble Trouble '}, {'hex_value': '#BC6497', 'colour_name': 'Fairy Fabulous (Soft Purple) '}, {'hex_value': '#EB5C78', 'colour_name': 'Forever Fancy (Shimmer, Bright Pink '}, {'hex_value': '#C84F85', 'colour_name': 'Girls Rule! (Bright, Shimmery Purple) '}, {'hex_value': '#B0246B', 'colour_name': 'Glamour Girl (Purple Shimmer with Silver Glitter) '}, {'hex_value': '#889D9E', 'colour_name': 'GlitterBug (Silver Glitter) '}, {'hex_value': '#F78DCF', 'colour_name': 'Jazz It Up (Bright Pink Shimmer) '}, {'hex_value': '#FF199F', 'colour_name': 'LOL (Neon Magenta With Shimmer) '}, {'hex_value': '#20A4CB', 'colour_name': 'Mer-maid in the Shade (Creme, Ocean Blue) '}, {'hex_value': '#D1DFCA', 'colour_name': 'Mint to Be (Creme, Mint Green) '}, {'hex_value': '#EECCCD', 'colour_name': 'Muddles the Pig '}, {'hex_value': '#FF8C6F', 'colour_name': 'Peace of Cake (Creme, Peachy Coral) '}, {'hex_value': '#BCA8C4', 'colour_name': 'Periwinkle Little Star (Creme, Pastel Orchid) '}, {'hex_value': '#FD92BE', 'colour_name': 'PINKie Promise (Creme, Neon Pink) '}, {'hex_value': '#EDE6DC', 'colour_name': 'Radioactive (Glows in the Dark) '}, {'hex_value': '#53C5D0', 'colour_name': 'Sea-quin (Creme, Bright Turquoise) '}, {'hex_value': '#EACBC9', 'colour_name': 'Sweetpea (Sheer Pink) '}]"
+115,suncoat,Suncoat Girl Water-Based Nail Polish,8.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/492cefdf71c66968dd5c6da10cd9c385_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/suncoat-girl-water-based-nail-polish_11968.html,https://well.ca,"Suncoat Girl water-based nail polishes are uniquely formulated by their chemists without using any of the following chemicals: Phthalate plasticizers, Toluene, Formaldehyde, Acetates, Alcohol, Glycol ethers, FD&C dyes.Only water, acrylic copolymers and polyurethane (plastic), mineral-based pigments, plastic glitter* and carmine are in these natural nail polishes. Virtually odor-free. Releases water vapor when applied, not toxic chemical fumes. These water-based kids' nail polishes are truly the most natural nail polishes in the market place.*: Spectra glitter, inert plastic glitters. Conforms to ASTM D4236.Application: For children 3 years and older. Use under adult supervision. Also great for anyone to use especially when travel, and for special occasions. Can last couple of days on fingernails. Will last longer on toenails. Apply 2 to 3 thin coats to clean grease-free nails. Dry fully between coats. Peel off the nail polish before changing color by soaking nails in warm water, and peel off from one corner.Shade Range:",3.9,,nail_polish,"['Canadian', 'Natural']",2016-10-01T18:25:55.201Z,2017-12-23T20:51:01.931Z,http://makeup-api.herokuapp.com/api/v1/products/115.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/115/original/data?1514062261,"[{'hex_value': '#FF9680', 'colour_name': 'Baby Slipper '}, {'hex_value': '#C47690', 'colour_name': 'Princess Dress '}, {'hex_value': '#6A84BD', 'colour_name': 'Rock Star '}, {'hex_value': '#EC606B', 'colour_name': 'Twinkled Pink '}, {'hex_value': '#CF72A1', 'colour_name': 'Twinkled Purple '}, {'hex_value': '#b95b77', 'colour_name': 'Apple Blossom '}, {'hex_value': '#bb5439', 'colour_name': 'Delicious Peach '}, {'hex_value': '#ca6780', 'colour_name': 'Fairy Glitter '}, {'hex_value': '#1a4971', 'colour_name': 'Mermaid Blue '}, {'hex_value': '#733166', 'colour_name': 'Princess Purple '}, {'hex_value': '#4f4849', 'colour_name': 'Starlight Silver '}, {'hex_value': '#a20f0f', 'colour_name': 'Strawberry Delight '}, {'hex_value': '#C8D8F2', 'colour_name': 'Sparkling Snow '}, {'hex_value': '#c3adaf', 'colour_name': 'Ballerina Beauty '}, {'hex_value': '#cd857b', 'colour_name': 'Eye Candy '}, {'hex_value': '#b75c3f', 'colour_name': 'Golden Sunlight '}, {'hex_value': '#aa5477', 'colour_name': 'Forever Fuchsia '}]"
+114,covergirl,CoverGirl Outlast Longwear Lipstick,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2d46e82f21b11f658a4378abcbd1c31b_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/covergirl-outlast-longwear-lipstick_105803.html,https://well.ca,"With CoverGirl Outlast Longwear Lipstick you get both moisture and colour! No need to choose!This long lasting lipstick doesn’t flake or
+crumble because it’s super-powered with moisture. It'll stays super fresh and
+super flexible all day, leaving you with a light weight but very pigmented lip look.",,lipstick,lipstick,[],2016-10-01T18:25:52.547Z,2017-12-27T01:50:37.669Z,http://makeup-api.herokuapp.com/api/v1/products/114.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/114/original/open-uri20171223-4-fqgm96?1514062257,"[{'hex_value': '#51122B', 'colour_name': 'Plum Fury'}, {'hex_value': '#A1211C', 'colour_name': 'Red Siren'}, {'hex_value': '#C5777E', 'colour_name': 'Phantom Pink'}]"
+113,covergirl,CoverGirl Outlast Lipcolor Moisturizing Clear Topcoat (500),12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/00bee78599bf386be435237a1515fdb7_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-outlast-lipcolor_103284.html,https://well.ca,"CoverGirl Outlast Lipcolor Moisturizing Clear Topcoat is a moisturizing lip gloss that keeps lips feeling moist, soft & smooth.Features: Moisturizing formulaSafe for sensitive skinFragrance freeIngredients: Sucrose Polycottonseedate, Ozokerite, Beeswax/ Cire D'Abeille, Tocopheryl Acetate, Tocopherol, Propyl Gallate, Propylparaben, Acetyl Glucosamine, Cocos Nucifera (Coconut Oil), Aloe Barbadensis Leaf Extract, Theobroma Cacao (Cocoa) Seed Butter, Butyrospermum Parkii (Shea Butter), Sodium Saccharin, Flavor/Aroma, Eu Inci, Sucrose Polycottonseedate, Ozokerite, Cera Alba, Tocopheryl Acetate, Tocopherol, Propylparaben, Propyl Gallate, Acetyl Glucosamine, Cocos Nucifera (Coconut Oil), Aloe Barbadensis Leaf Extract, Theobroma Cacao (Cocoa) Seed Butter, Butyrospermum Parkii (Shea Butter), Sodium Saccharin, Aroma",,lipstick,lipstick,[],2016-10-01T18:25:51.301Z,2017-12-23T20:51:01.555Z,http://makeup-api.herokuapp.com/api/v1/products/113.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/113/original/data?1514062261,[]
+107,butter london,butter LONDON Moisture Matte Lipstick,28.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/53776859a9fc7bea891c66135f40d645_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/butter-london-moisture-matte_115254.html,https://well.ca,"butter LONDON Moisture Matte Lipstick offers full coverage, ultimate colour payoff in a velvety matte finish.
+With specialized pigments that extend colour wear, this long-lasting, non-drying
+formula does not feather or bleed. Revolutionary gel-capsule technology
+delivers colour and moisture for smooth, silky application and maximum
+comfort. Triple Butter Complex for rich, creamy, lasting moisture –
+Mango Seed Butter, Murumuru Seed Butter, and Cupuacu Seed Butter.
+Vitamin E and minerals smooth the lip surface for a flawless
+application. Subtly scented with creamy vanilla. Sleek, slim line metal
+component for easy application, control and portability.Ingredients: Pentaerythrityl Tetraisostearate, Caprylic/Capric Triglyceride, Ethylhexyl Palmitate, Silica, Aluminum Starch Octenylsuccinate, Polyethylene, Bis-Diglyceryl Polyacyladipate-2, C20-40 Alcohols, Caprylyl Glycol, Mangifera Indica (Mango) Seed Butter, Theobroma Grandiflorum Seed Butter, Astrocaryum Murumuru Seed Butter, Parfum (Fragrance), Benzyl Benzoate, Tocopheryl Acetate, Tocopherol, Calcium Sodium Borosilicate, Tin Oxide. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, 77492, 77499), Mica (CI 77019), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 27 (CI 45410), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Yellow 5 Lake (CI 19140), Blue 1 Lake (CI 42090), Carmine (CI 75470).Paraben Free",,lipstick,lipstick,[],2016-10-01T18:25:45.292Z,2017-12-23T21:08:35.925Z,http://makeup-api.herokuapp.com/api/v1/products/107.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/107/original/data?1514063315,"[{'hex_value': '#CF2D4F', 'colour_name': 'Loved Up - sassy berry-red cream '}, {'hex_value': '#B53034', 'colour_name': 'Old Blighty - brilliant brick red cream '}, {'hex_value': '#AE2343', 'colour_name': 'Ruby Murray - delicious deep berry cream '}]"
+106,l'oreal,L'Oreal Paris Colour Riche Le Matte & La Lacque Lip Colour,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a368eac7a50f7aa3fcc773b06915eb39_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/loreal-paris-colour-riche-le-matte_112642.html,https://well.ca,"Introducing Colour Riche Le Matte & La Lacque, the newest format in lip colour. velvety matte or irresistibly glossy pigment-rich colour, perfectly precise. Use it anywhere, anytime – it’s the newest makeup designer must-have!Features:The sleek, sophisticated pen offers highly pigmented colour Glides on effortlessly in one precise stroke Available in 2 iconic finishes, creamy matte & smooth lacquerEnriched with argan oil for deep hydration and soft feel & vitamin antioxidant for protection",,lipstick,lipstick,[],2016-10-01T18:25:43.991Z,2017-12-23T20:50:58.780Z,http://makeup-api.herokuapp.com/api/v1/products/106.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/106/original/open-uri20171223-4-1252cli?1514062258,"[{'hex_value': '#FC6E7F', 'colour_name': 'Game, Set & Matte '}, {'hex_value': '#C14E5C', 'colour_name': 'Lacque-y Charm '}, {'hex_value': '#B0233E', 'colour_name': 'Lacque-y You '}, {'hex_value': '#B41428', 'colour_name': 'Lacquerized '}, {'hex_value': '#C81E2F', 'colour_name': 'Mad for Matte '}, {'hex_value': '#FC5B9D', 'colour_name': 'Matte for Me '}, {'hex_value': '#D03370', 'colour_name': 'Matte-r of Fact '}, {'hex_value': '#C15555', 'colour_name': ""She's So Matte ""}]"
+105,covergirl,CoverGirl Colorlicious Lipstick,10.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c88809fbffe05fb9594103e635387152_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-colorlicious-lipstick_103162.html,https://well.ca,"CoverGirl Colorlicious Lipstick gives you rich, satisfying color in shades you can't help but crave!Features: Deliciously rich color infused with shea butterFull coverage color, high shine intensityNatural butters help keep lips suppleLasting colourIngredients:
+ Ricinus Communis (Castor) Seed Oil, Isopropyl Isostearate, Mica,
+Ethylhexyl Hydroxystearate, Acetylated Lanolin, Ozokerite, Euphorbia
+Cerifera (Candelilla) Wax/Cire De Candelilla, Paraffin, Squalane,
+Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, Cetyl Lactate,
+Cetyl Alcohol, Fragrance/Parfum, Ascorbyl Palmitate, Tocopheryl Acetate,
+ Maltodextrin, Camellia Sinensis Leaf Extract, Butyrospermum Parkii
+(Shea) Butter, Silk Powder/Poudre De Soie, Persea Gratissima (Avocado)
+Oil, Cocos Nucifera (Coconut) Oil, Aloe Barbadensis Leaf Extract,
+Propylparaben, Hydrogenated Vegetable Oil, Retinyl Palmitate, Some
+Shades Also Contain/Certaines Teintes Contiennent Aussi: Lauroyl Lysine,
+ Synthetic Fluorphlogopite, May Contain/Peut Contenir: Titanium Dioxide,
+ Red 7 Lake, Yellow 5 Lake, Red 6 Lake, Iron Oxides, Blue 1 Lake,
+Carmine, Red 27 Lake, Yellow 6 Lake, Orange 5, Red 27",,lipstick,lipstick,[],2016-10-01T18:25:42.891Z,2017-12-27T01:53:08.088Z,http://makeup-api.herokuapp.com/api/v1/products/105.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/105/original/data?1514063312,"[{'hex_value': '#ECA4BE', 'colour_name': 'Verve Violet'}, {'hex_value': '#BF837C', 'colour_name': 'Sultry Sienna'}]"
+102,covergirl,CoverGirl Outlast Lipcolor,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/be04329866e96a0077545d230489d7a9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-outlast-lipcolor-plum_97226.html,https://well.ca,"CoverGirls very popular longwear lip color just got better! The advanced formula with resilient, brilliant color and new applicator gives you up to 24 hours of color in just 2 easy, breezy steps.Features:Lasts up to 24 hoursBeautiful shades that are food proof and transfer resistant all day!Moisturizing topcoat keeps lips feeling moist, soft and smoothApplication Tips: Apply color to clean lips. Let dry 60 seconds. Apply moisturizing topcoat. Reapply topcoat like a balm throughout the day to refresh your look and feel.",5.0,lipstick,lipstick,[],2016-10-01T18:25:39.503Z,2017-12-27T01:46:54.379Z,http://makeup-api.herokuapp.com/api/v1/products/102.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/102/original/data?1514062260,"[{'hex_value': '#864058', 'colour_name': 'Plum Berry'}, {'hex_value': '#996066', 'colour_name': 'Nude'}, {'hex_value': '#9C5961', 'colour_name': 'Wine to Five'}, {'hex_value': '#8B3158', 'colour_name': 'Wild Berry'}, {'hex_value': '#744144', 'colour_name': 'Cinnamon Stick'}, {'hex_value': '#783E49', 'colour_name': 'Brazen Raisin'}]"
+101,mineral fusion,Mineral Fusion Sheer Moisture Lip Tint,12.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8980a2195fbd6f4a47e5b57ac2148e9b_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/mineral-fusion-sheer-moisture-lip_119085.html?cat=330,https://well.ca,"Mineral Fusion Sheer Moisture Lip Tint is a sheer, buildable mineral colour that provides long-lasting hydration and applies effortlessly on-the-go with no mirror required. The 100% pure mineral shades are ultra-hydrating, infused with Cocoa Butter, a lip-firming peptide, and a refreshing Vanilla-Mint flavor. Features:Hydrating & FirmingPerfect for On-The-Go UseFree of artificial colour and fragranceCruelty FreeParaben FreeTalc FreeHypo-allergenicPhthalate FreeIngredients: Ricinus Communis (Castor) Seed Oil, Ethylhexyl Hydroxystearate, Jojoba (Simmondsia Chinensis) Seed Oil, Cera Alba (Beeswax), Euphorbia Cerifera (Candelilla) Wax, Copernicia Cerifera (Carnauba) Wax, Isopropyl Palmitate, Cetyl Alcohol, Ascorbic Acid (Vitamin C), Theobroma Cacao (Cocoa) Seed Butter, Aloe Barbadensis, Tocopheryl Acetate (Vitamin E), Palmitoyl Tripeptide-5, Olea Europaea (Olive) Leaf Extract, Eupatorium Rebaudianum Bertoni Leaf Extract, Origanum Vulgare (Oregano) Leaf Extract, Thymus Vulgarus (Thyme) Extract, Cocos Nucifera (Coconut) Oil, and Natural Vanilla Mint. May Contain: Red Iron Oxide, Yellow Iron Oxide, Black Iron Oxide, Titanium Dioxide, Mica. Gluten Free, Vegan",,lipstick,lipstick,"['Natural', 'Vegan', 'Gluten Free']",2016-10-01T18:25:38.145Z,2017-12-23T21:08:30.160Z,http://makeup-api.herokuapp.com/api/v1/products/101.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/101/original/data?1514063310,"[{'hex_value': '#54281F', 'colour_name': 'Adorn - Rich Plum '}, {'hex_value': '#793041', 'colour_name': 'Blush - Earthy Purple '}, {'hex_value': '#892E33', 'colour_name': 'Flicker - Berry '}, {'hex_value': '#B1585C', 'colour_name': 'Glisten - Caramel Shimmer '}, {'hex_value': '#981E29', 'colour_name': 'Smolder - Cherry Red '}]"
+99,dr. hauschka,Dr. Hauschka Limited Edition Lipstick Novum,27.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5876ec738df72b74a0aac649415a452f_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dr-hauschka-limited-edition_117899.html,https://well.ca,"This Dr. Hauschka Lipstick leaves the lips feeling soft and silky thanks
+ to its composition of premium argan oil and beeswax, as well as mineral
+ pigments and medicinal plant extracts. The colour of the slim-liner
+combines with the natural red of the lips to create completely uniquenuances of colour.Ingredients: Ricinus
+ Communis (Castor) Seed Oil, Simmondsia Chinensis (Jojoba) Seed Oil,
+Rosa Canina Fruit Extract, Lanolin, Beeswax (Cera Alba), Mica, Daucus
+Carota Sativa (Carrot) Root Extract, Argania Spinosa Kernel Oil,
+Euphorbia Cerifera (Candelilla) Wax, Copernicia Cerifera (Carnauba) Wax,
+ Rosa Damascena Flower Extract, Anthyllis Vulneraria Extract, Prunus
+Amygdalus Dulcis (Sweet Almond) Oil, Prunus Armeniaca (Apricot) Kernel
+Oil, Hydrogenated Jojoba Oil, Rosa Damascena Flower Wax, Fragrance
+(Parfum), Linalool*, Benzyl Benzoate*, Farnesol*, Limonene*, Geraniol*,
+Benzyl Salicylate*, Eugenol*, Citronellol*, Benzyl Alcohol*,
+Maltodextrin, Lecithin, Silica, Carmine (CI 75470), Iron Oxides (CI
+77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891). *component of
+natural essential oils",5.0,lipstick,lipstick,"['Organic', 'Natural']",2016-10-01T18:25:36.091Z,2017-12-23T21:08:24.940Z,http://makeup-api.herokuapp.com/api/v1/products/99.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/099/original/data?1514063304,[]
+98,marcelle,Marcelle Rouge Xpression Lipstick,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0fbba5395dcc750a7b43b3e3fefb6015_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-rouge-xpression-lipstick_100283.html,https://well.ca,"Luscious lips made easy! Express your true self with Marcelle Rouge Xpression lipstick! Rouge Xpression
+ has a dual personality that will delight your lips; it has a
+moisturizing Maxi-Lip complex that hydrates your lips' delicate skin and
+ adds sexy volume.
+Replete with avocado and Omega-6 oils, its formula prevents dry,
+cracked lips and restores moisture. Its creamy, velvety and non-sticky
+texture ensures total comfort. And with so many vibrant colours, biting
+into life will never have looked so sexy!
+Hypoallergenic and perfume-free.",,lipstick,lipstick,"['Gluten Free', 'Canadian']",2016-10-01T18:25:34.246Z,2017-12-23T20:50:58.631Z,http://makeup-api.herokuapp.com/api/v1/products/98.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/098/original/data?1514062258,"[{'hex_value': '#b22a4a', 'colour_name': 'Amour '}, {'hex_value': '#903459', 'colour_name': 'Cleopatra '}, {'hex_value': '#a3656a', 'colour_name': 'Couture '}, {'hex_value': '#cb5a6e', 'colour_name': 'Delight '}, {'hex_value': '#bd7775', 'colour_name': 'Enchantment '}, {'hex_value': '#a84c61', 'colour_name': 'Euphoria '}, {'hex_value': '#a1534f', 'colour_name': 'Exuberance '}, {'hex_value': '#824e73', 'colour_name': 'Feline '}, {'hex_value': '#C97DA4', 'colour_name': 'French Rose '}, {'hex_value': '#7F355D', 'colour_name': 'Fuchsia Flare '}, {'hex_value': '#974f5a', 'colour_name': 'Jezebel '}, {'hex_value': '#9f596b', 'colour_name': 'Mauve Avant-Garde '}, {'hex_value': '#C18181', 'colour_name': 'Nude Pink '}, {'hex_value': '#a8444e', 'colour_name': 'Paris Rose '}, {'hex_value': '#a83b52', 'colour_name': 'Passion '}, {'hex_value': '#FC6A86', 'colour_name': 'Pink Mademoiselle '}, {'hex_value': '#a65463', 'colour_name': 'Revolution '}, {'hex_value': '#b06c69', 'colour_name': 'Romanesque '}, {'hex_value': '#C91A19', 'colour_name': 'Rouge En Folie '}, {'hex_value': '#da8f83', 'colour_name': 'Sentimental '}, {'hex_value': '#C75878', 'colour_name': 'Vivid Coral '}]"
+97,maybelline,Maybelline Color Sensational Vivid Matte Liquid Lip Colour,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d0b6855d9b603a00f776de498c971b88_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational-vivid_114538.html,https://well.ca,"Bold, vivid color glides easily onto lips for a velvety matte finish with Maybelline Color Sensational Vivid Matte Liquid Lip Colour.
+Formula is comfortable and creamy with a smooth feel upon application.
+With full color coverage, the result is a rich, intense lip look in a
+range of colors from Nude Flush to Electric Pink to Vivid Violet.Features: Lip color glides on smooth to a matte finishInfused with pure pigments for high-impact colorCreamy liquid base for a soft, cushiony feel",,lipstick,lipstick,[],2016-10-01T18:25:33.281Z,2017-12-23T20:50:59.331Z,http://makeup-api.herokuapp.com/api/v1/products/97.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/097/original/open-uri20171223-4-128aihq?1514062259,"[{'hex_value': '#AC7773', 'colour_name': 'Nude Thrill '}, {'hex_value': '#BD7A80', 'colour_name': 'Nude Flush '}, {'hex_value': '#D65F84', 'colour_name': 'Pink Charge '}, {'hex_value': '#D73D8C', 'colour_name': 'Electric Pink '}, {'hex_value': '#B12156', 'colour_name': 'Fuchsia Ecstasy '}, {'hex_value': '#BC2830', 'colour_name': 'Orange Shot '}, {'hex_value': '#B7233B', 'colour_name': 'Rebel Red '}, {'hex_value': '#8C1F48', 'colour_name': 'Berry Boost '}, {'hex_value': '#542A71', 'colour_name': 'Vivid Violet '}, {'hex_value': '#300B28', 'colour_name': 'Possessed Plum '}]"
+96,revlon,Revlon Ultra HD Lip Lacquer,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/97f6225468596320404785ab71cb1e02_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-ultra-hd-lip-lacquer_101023.html,https://well.ca,"Lip lacquer goes HD with Revlon's innovative wax-free gel technology. Get true color clarity, vivid high-impact shine and a bouncy, lightweight feel. ",5.0,lipstick,lipstick,[],2016-10-01T18:25:31.871Z,2017-12-23T20:51:00.213Z,http://makeup-api.herokuapp.com/api/v1/products/96.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/096/original/open-uri20171223-4-1buvtc3?1514062260,"[{'hex_value': '#a41c42', 'colour_name': 'HD Carenelian '}, {'hex_value': '#d8242f', 'colour_name': 'HD Fire Opal '}, {'hex_value': '#cc3b75', 'colour_name': 'HD Garnet '}, {'hex_value': '#f18085', 'colour_name': 'HD Petalite '}, {'hex_value': '#c8a0bc', 'colour_name': 'HD Pink Diamond '}, {'hex_value': '#d9198b', 'colour_name': 'HD Pink Ruby '}, {'hex_value': '#f07b98', 'colour_name': 'HD Pink Sapphire '}, {'hex_value': '#b55d6d', 'colour_name': 'HD Rose Quartz '}, {'hex_value': '#894643', 'colour_name': 'HD Smoky Quartz '}, {'hex_value': '#ce8886', 'colour_name': 'HD Smoky Topaz '}, {'hex_value': '#e02246', 'colour_name': 'HD Strawberry Topaz '}, {'hex_value': '#ef5e5f', 'colour_name': 'HD Sunstone '}, {'hex_value': '#eb4296', 'colour_name': 'HD Tourmaline '}]"
+95,nyx,NYX Jumbo Lip Pencil ,5.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6b7a0f4f93839573bf046e149d4927df_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-jumbo-lip-pencil_106054.html?cat=330,https://well.ca,"NYX Jumbo Lip Pencil is a radiant lip liner that also doubles as a lipstick. NYX Jumbo Lip Pencils infuse lips with alluring, nourishing color, and help you create a perfect pout. Features:Line, define and color with one jumbo pencilFormulated with mineral oil which does not dry out your lipsGoes on smoothly for easy applicationComes in a variety of seductive shades",4.0,lipstick,lipstick,[],2016-10-01T18:25:30.256Z,2017-12-23T21:08:16.260Z,http://makeup-api.herokuapp.com/api/v1/products/95.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/095/original/open-uri20171223-4-e4kg6p?1514063296,"[{'hex_value': '#C1486C', 'colour_name': 'Chaos (JLP724) Strawberry Pink (Cream) '}, {'hex_value': '#C27273', 'colour_name': 'Fuschia '}, {'hex_value': '#C9528C', 'colour_name': 'Hera (JLP722) Iridescent Soft Fuchsia (Pearl) '}, {'hex_value': '#BB5F60', 'colour_name': 'Honey Nectar (JLP720) Soft Brown '}, {'hex_value': '#AA202E', 'colour_name': 'Hot Red (JLP704) Bright Blue-Red (Cream) '}, {'hex_value': '#975D4F', 'colour_name': 'Iced Coffee (JLP711) Deep Beige (Cream) '}, {'hex_value': '#A1605E', 'colour_name': 'Pecan '}]"
+94,cargo cosmetics,Cargo Cosmetics ColorStick,32.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1855452da6a7fb08fe4154311ccb3369_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-colorstick_87544.html?cat=330,https://well.ca,"Cargo Cosmetics ColorSticks are an oil-free, cream colour stick that blends effortlessly to eyes,
+cheeks and lips, for a natural, monochromatic look. The velvety,
+ultra-light texture blends flawlessly onto the skin for an “airbrushed”
+finish. Cheeks appear smooth and flawless. The cream-to-powder formula
+ sets for an exceptionally longwearing finish and never settles into
+fine lines. The dial-up stick makes application a breeze.
+Available in 5 shades: Santorini, Key West and Maui give a natural and
+pretty colour to the cheeks, eyes and lips. St. Tropez offers sheer
+bronze glow perfect for giving a soft tan glow or sculpting the
+cheekbones. Champagne is a warm highlighter that is ideal for
+highlighting key areas of the face.
+
+Features and Benefits
+The make-up you’re wearing when you’re not wearing make-upA three-in-one cream-to-powder colour stick for the eyes, lips and cheeks The simplicity of multi-use colour in a convenient dial-up stickA velvety, ultra-light texture that blends flawlessly onto the skin for an “airbrushed” finishThe cream-to-powder formula sets for an exceptionally longwearing finish and never settles into fine linesResults in the ultimate nude glow that seems to come from withinDelivers a glowing finish that is never greasy and exceptionally long lastingOIL-FREEHow to Use: Application is versatile. Apply it directly from the stick, blending
+with your fingers or a foundation brush. Or use a brush directly on the
+product and then blend with the brush onto your cheeks.Ingredients: Isopropyl Myristate,Mica, Ethylhexyl Palmitate, Isopropyl Stearate,
+HDI/Trimethylol Hexyllactone Crosspolymer, Polymethylsilsesquioxane,
+Synthetic Wax, CI 77891 (Titanium Dioxide), Ozokerite, CI 77491 (Iron
+Oxides), CI 75470 (Carmine).",4.0,lipstick,lipstick,[],2016-10-01T18:25:29.390Z,2017-12-23T21:08:15.631Z,http://makeup-api.herokuapp.com/api/v1/products/94.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/094/original/data?1514063295,"[{'hex_value': '#F7E4C6', 'colour_name': 'Champagne '}, {'hex_value': '#F8C9BF', 'colour_name': 'Key West '}, {'hex_value': '#EF8087', 'colour_name': 'Maui '}, {'hex_value': '#FBBBD3', 'colour_name': 'Santorini '}, {'hex_value': '#FEC7CC', 'colour_name': 'St. Tropez '}]"
+93,revlon,Revlon ColorBurst Lacquer Balm,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4992a5ad01b474ae1de4a955d6224aca_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorburst-lacquer-balm_84514.html,https://well.ca,"Revlon ColorBurst Lacquer Balm offers high shine with balm-like
+moisture! Packaged in an adorable chubby crayon, this Lacquer balm is infused with a Triple Butter Complex of Shea, Mango and
+Coconut Butter.",,lipstick,lipstick,[],2016-10-01T18:25:28.092Z,2017-12-23T20:50:59.978Z,http://makeup-api.herokuapp.com/api/v1/products/93.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/093/original/data?1514062259,"[{'hex_value': '#BF7061', 'colour_name': 'Coy '}, {'hex_value': '#E58674', 'colour_name': 'Demure '}, {'hex_value': '#8E4852', 'colour_name': 'Enticing '}, {'hex_value': '#A30017', 'colour_name': 'Provocative '}]"
+92,cargo cosmetics,Cargo Cosmetics Essential Lip Color,24.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5e51a2c8ce9316c8342ac47fdc0ebd1d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/cargo-cosmetics-essential-lip-color_87598.html,https://well.ca,"Cargo Cosmetics Essential Lip Color has a smooth, creamy and lightweight formula that offers high pigment
+payoff while leaving lips plump and perfectly hydrated throughout the
+day. Olive oil, Shea Butter and Jojoba oil provide essential moisture
+while plumping peptides offer instant fullness.
+
+Features:
+Rich Emollients of olive oil, jojoba and shea butter flood lips with
+ essential moisture, enhancing the feel and wear of the lipstick.Maxi Lip greatly increases lip moisture as it reinforces the
+connective tissue of the lips. Instantly lips appear fuller and more
+voluminous.Gluten FreeShade Range: Ingredients: Hydrogenated Polyisobutene, Phytosteryl/Isostearyl/Cetyl/Stearyl/Behenyl
+ Dimer Dilinoleate, Polyethylene, Bis-Diglyceryl Polyacyladipate-2,
+Octyldodecanol, Triisostearin, Phenyl Trimethicone, Hydrated Silica,
+Squalane, Microcrystalline Wax (Cera Microcristallina), Pentaerythrityl
+Tetraisostearate, Ethylhexyl Palmitate, Tribehenin, Sorbitan
+Isostearate, Palmitoyl Oligopeptide, Hydrogenated Olive Oil, Olea
+Europaea (Olive) Fruit Oil, Olea Europaea (Olive) Oil Unsaponifiables,
+Theobroma Cacao (Cocoa) Seed Butter, Simmondsia Chinensis (Jojoba) Seed
+Oil, Persea Butyrospermum Parkii (Shea Butter), Gratissima (Avocado)
+Oil, Pentaerythrityl Tetra-Di-T-Butyl Hydroxyhydrocinnamate, Tocopheryl
+Acetate, Tocopherol, Tetrahexyldecyl Ascorbate, Vp/Eicosene Copolymer,
+Vp/Hexadecene Copolymer, Acrylates Copolymer, Polyethylene
+Terephthalate, Synthetic Fluorphlogopite, Calcium Sodium Borosilicate,
+Calcium Aluminum Borosilicate, Tin Oxide, Silica. May Contain (+/-):
+Mica, Titanium Dioxide (Ci 77891), Iron Oxides (Ci 77491, Ci 77492, Ci
+77499), Carmine (Ci 75470), Manganese Violet (Ci 77742), Red 6 (Ci
+15850), Red 7 Lake (Ci 15850), Red 21 (Ci 45380), Red 27 (Ci 45410), Red
+ 28 Lake (Ci 45410), Red 30 Lake (Ci 77360), Red 33 Lake (Ci 17200),
+Orange 5 (Ci 45370), Yellow 5 Lake (Ci 45370), Yellow 6 Lake (Ci 15985),
+ Blue 1 Lake (Ci 42090).
+",4.8,lipstick,lipstick,['Gluten Free'],2016-10-01T18:25:26.646Z,2017-12-23T20:50:59.834Z,http://makeup-api.herokuapp.com/api/v1/products/92.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/092/original/data?1514062259,"[{'hex_value': '#EBACA3', 'colour_name': 'Bermuda (Nude Pink) '}, {'hex_value': '#E07875', 'colour_name': 'Bombay (Shimmery Rose) '}, {'hex_value': '#6F1E2C', 'colour_name': 'Bordeaux (Deep Wine) '}, {'hex_value': '#CB705D', 'colour_name': 'Dubai (Burnt Nude) '}, {'hex_value': '#E379A1', 'colour_name': 'Kyoto (Baby Pink) '}, {'hex_value': '#E7A680', 'colour_name': 'Las Vegas (Pale Beige) '}, {'hex_value': '#A32950', 'colour_name': 'Napa (Rich Berry) '}, {'hex_value': '#DA506A', 'colour_name': 'Palm Beach (Pink Coral) '}, {'hex_value': '#BC2A2D', 'colour_name': 'Paris (Deep Red) '}, {'hex_value': '#DF5A99', 'colour_name': 'Punta Cana (Bright Fuscia) '}, {'hex_value': '#E1A2A3', 'colour_name': 'Santa Fe (Deep Apricot) '}, {'hex_value': '#DB3B3D', 'colour_name': 'Sedona (Bright Coral) '}]"
+91,l'oreal,L'Oreal Paris Colour Riche Collection Exclusive Pure Reds,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5d0df885cb5721b74b32f64884736ce4_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-paris-colour-riche_107475.html,https://well.ca,"Inspired by L’Oréal Paris muses, Colour Riche introduces six custom-made, enriching matte red shades tailored to enhance a variety of complexions. Play on a coordinated look by pairing with red nails for an absolute statement.Features:A matte that reveals red's colour intensitySoft intense velvet formulationFormulated with velvet spheres, pure pigments, jojoba oil",5.0,lipstick,lipstick,[],2016-10-01T18:25:25.419Z,2017-12-23T20:50:59.141Z,http://makeup-api.herokuapp.com/api/v1/products/91.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/091/original/data?1514062259,"[{'hex_value': '#AB0C19', 'colour_name': ""Blake's Red ""}, {'hex_value': '#8E1305', 'colour_name': ""Eva's Red ""}, {'hex_value': '#C5004B', 'colour_name': ""Freida's Red ""}, {'hex_value': '#D82A37', 'colour_name': ""Julianne's Red ""}, {'hex_value': '#C90E32', 'colour_name': ""Liya's Red ""}, {'hex_value': '#782B2F', 'colour_name': ""Zoe's Red ""}]"
+90,nyx,NYX Extra Creamy Round Lipstick,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7e72bc983d7988c6e9b9f35d7703fbe4_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-extra-creamy-round-lipstick_106073.html,https://well.ca,"NYX Extra Creamy Round Lipstick is the classic, go-to lipstick for all occasions. From Pure Nude to Pink Lyric to Chic Red, Round Lipstick is available in a jaw-dropping variety of shades. Features:Formula offers a velvety textureMineral based to moisturize and condition lipsPigment packed saturated color Long-wearing and smudge resistant Available in a variety of coloursINGREDIENTS: Diisostearyl Malate, Bis-DiglycerylPolyacyladipate-2, Polyglyceryl-2 Triisostearate, Octyldodecanol, IsostearylIsostearate, Ethylhexyl Palmitate, Euphorbia Cerifera (Candelilla) Wax /Euphorbia Cerifera Cera / Cire de Candelilla, Ceresin, Beeswax / Cera Alba /Cire d’abeille, Polyisobutene, Polyethylene, Copernicia Cerifera (Carnauba) Wax/ Copernicia Cerifera Cera / Cire de Carnauba, Microcrystalline Wax / CeraMicrocristallina / Cire Microcristalline, Tocopheryl Acetate, BHA, Limonene,Fragrance / Parfum. MAY CONTAIN / PEUTCONTENIR (+/-): Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491,77492, 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 28 (CI 45410), Red 36(CI 12085), Blue 1 Lake (CI 42090), Yellow 5 Lake (CI 19140).",4.0,lipstick,lipstick,[],2016-10-01T18:25:22.485Z,2017-12-23T21:08:12.834Z,http://makeup-api.herokuapp.com/api/v1/products/90.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/090/original/open-uri20171223-4-d4yyud?1514063292,"[{'hex_value': '#DAA8C5', 'colour_name': 'Baby Pink '}, {'hex_value': '#AB6BA0', 'colour_name': 'Castle '}, {'hex_value': '#970015', 'colour_name': 'Chaos '}, {'hex_value': '#FF898F', 'colour_name': 'Chic (LSS563A) Blue-Toned Bubblegum Pink (Pearl) '}, {'hex_value': '#CF337A', 'colour_name': 'Chloe (LSS521) Iridescent Fuchsia (Pearl) '}, {'hex_value': '#FA394C', 'colour_name': 'Femme (LSS643) Bright Pink-Red (Cream) '}, {'hex_value': '#E46A79', 'colour_name': 'Fig (LSS640) Dark Neutral Pink (Cream) '}, {'hex_value': '#DC002C', 'colour_name': 'Fire (LSS599) Fire-Engine Blue-Toned Red (Cream) '}, {'hex_value': '#E96384', 'colour_name': 'Flower (LSS619) Blue-Toned Medium Pink (Pearl) '}, {'hex_value': '#F08C8C', 'colour_name': 'Gala '}, {'hex_value': '#FD6C65', 'colour_name': 'Haute Melon '}, {'hex_value': '#DE6463', 'colour_name': 'Indian Pink (LSS550) Peachy Pink with Gold Shimmer (Pearl) '}, {'hex_value': '#F96173', 'colour_name': 'Margarita (LSS597) Shimmery Coral (Pearl) '}, {'hex_value': '#FC86AF', 'colour_name': 'Narcissus '}, {'hex_value': '#FE7C61', 'colour_name': 'Nyx (LSS507) Tangerine (Pearl) '}, {'hex_value': '#E69F73', 'colour_name': 'Orange Soda (LSS588) Light Salmon Pink (Cream) '}, {'hex_value': '#F76E64', 'colour_name': 'Peach Bellini (LSS593A) Glittery Coral (Pearl) '}, {'hex_value': '#CD859D', 'colour_name': 'Power (LSS629) Blue-Toned Mauve (Cream) '}, {'hex_value': '#E6A28E', 'colour_name': 'Pure Nude (LSS518A) Neutral Baby Pink (Cream) '}, {'hex_value': '#F58E7C', 'colour_name': 'Stella (LSS564A) Bright Yellow-Toned Pink (Cream) '}, {'hex_value': '#DDA1A1', 'colour_name': 'Summer Love (LSS617) Beige with Soft Pink Undertones (Cream) '}, {'hex_value': '#7A3760', 'colour_name': 'Violet Ray (LSS561) Violet (Cream) '}, {'hex_value': '#FA8F85', 'colour_name': 'Vitamin (LSS626) Shimmering Peach (Pearl) '}]"
+89,maybelline,Maybelline Color Sensational Rebel Bloom Lipcolour ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fb9e6485500135d94163577da4c3579b_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational-rebel_101920.html,https://well.ca,"
+
+ Maybelline Color Sensational® Rebel Bloom lipstick offers vivacious pastels in a super-saturated lipcolour. Enjoy the kicky bouquet of lip colors in
+pinks, reds and mauves. Features:Super-saturated pigments take fresh picked pastels to a new bright
+Never dull, washed out or shy
+Honey nectar adds a sumptuous feel
+
+ Application: Apply lipcolor starting in the center of your upper lip. Work
+ from the center to the outer edges of your lip, following the contours
+of your mouth. Then glide across the entire bottom lip.
+
+
+
+
+ ",3.0,lipstick,lipstick,[],2016-10-01T18:25:20.981Z,2017-12-23T20:50:59.663Z,http://makeup-api.herokuapp.com/api/v1/products/89.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/089/original/open-uri20171223-4-pkrmxd?1514062259,"[{'hex_value': '#db967f', 'colour_name': 'Barely Bloomed '}, {'hex_value': '#d37d79', 'colour_name': 'Blushing Bud '}, {'hex_value': '#f05b4a', 'colour_name': 'Coral Burst '}, {'hex_value': '#cd86b0', 'colour_name': 'Lilac Flush '}, {'hex_value': '#ff8f9d', 'colour_name': 'Petal Pink '}, {'hex_value': '#bd2629', 'colour_name': 'Rose Rush '}]"
+87,dalish,DaLish Lipstick Matte Collection,22.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6804e2a3b19200e7a7a67456421763c4_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/dalish-lipstick-matte-collection_98202.html,https://well.ca,"This DaLish Lipstick wows with full coverage, full pigment colour that won’t dry out lips. Inspired by bright, garden blooms, the long lasting, fashion-forward hues endure coffee time or cocktail hour without the ring around your lips. Shade Range: LO1 - Nude Shade – ideal for thick to medium lips.LO2 - Pinky/Red – Has a real punch of colour. For anyone one is willing to be bold!LO3 - Barbie Pink! – It's bright and a fun colour to wear.LO4 - Vintage Ruby Red – This is the original Red lipstick from the 1920’s. It just never goes out of style!LO5 - Soft Coral – It’s a very versatile colour and works well on most.Ingredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglycerides, Copernicia Cerifera (Carnauba) Wax, Cetyl Palmitate, Sorbitan Palmitate, Beeswax, Sorbitan Olivate, Cetyl Alcohol, Euphorbia Cerifera (Candelilla) Wax, Hydrogenated Castor oil, Butyrospermum Parkii (shea Butter), Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus officinalis (Rosemary) Leaf Extract, Benzyl Alcohol, Benzoic Acid, Dehydroacetic Acid, Sorbic Acid, Tocopherol, Vanillin, May contain (+/-), Titanium Dioxide CI 77891, Iron Oxides CI 77491, Mica CI 77019, Red 7 Lake CI 15850, Yellow 5 Lake CI 19140, Red 27 Lake CI 45410, Red 30 Lake CI 73360, Blue 1 Lake CI 42090, Carmine CI 75470. *Contains natural Antioxidant *Contains organic castor oil and Carnauba Wax ",3.8,lipstick,lipstick,"['Canadian', 'Natural']",2016-10-01T18:25:17.425Z,2017-12-23T20:50:58.258Z,http://makeup-api.herokuapp.com/api/v1/products/87.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/087/original/data?1514062258,"[{'hex_value': '#955b57', 'colour_name': 'LO1 - Nude Shade '}, {'hex_value': '#a7082e', 'colour_name': 'LO2 - PinkyRed '}, {'hex_value': '#bd2150', 'colour_name': 'LO3 - Barbie Pink '}, {'hex_value': '#891228', 'colour_name': 'LO4 - Vintage Ruby Red '}, {'hex_value': '#bf3238', 'colour_name': 'LO5 - Soft Coral '}]"
+86,e.l.f.,e.l.f. Gotta Glow Lip Tint ,7.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ec1e1f8ef1fcf76d2fd21d231bbfac7c_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/elf-gotta-glow-lip-tint_117870.html,https://well.ca,"This innovative e.l.f. Gotta Glow Lip Tint reacts with the chemistry of your lips to deliver a personalized, perfect shade of pink, berry. or peach! The ethereal hue gives a sheer flush of colour that enhances the natural beauty of your lips. The gel-based formula glides on smoothly and is infused with Shea Butter to moisturize and nourish. How To Use: Apply alone for a natural-looking wash of colour or as a base to any of your favorite e.l.f. lip colours. Repeat application as often as desired.Beauty Tip: Create a flushed glow on the check by applying a little directly to the cheeks and blend out with fingers or a sponge. Ingredients: Octyldodecanol, Hydrogenated Polyisobutene, Isononyl Isononanoate, Polyethylene, Dipentaerythrityl Hexahydroxystearate, Triisodecyl Trimellitate, Diisostearylmalate, Stearyl Dimethicone, Butyrospermum Parkii (Shea) Butter, Euphorbia Cerifera (Candelila) Wax, Synthetic Beeswax, Polymethyl Methacrylate, Stearic Acid, Phenoxyethanol, Tocopheryl Acetate (Ve), Ethylhexylglycerin, Oryza Sativa (Rice) Bran Oil, Pentaerythrityl Tetra-Di-T-Butyl, Hydroxyhydrocinnamate, Propylparaben. MAY CONTAIN: Titanium Dioxide (CI 77891),Red 6 Lake (CI 15850), Red 27 Lake (CI 45410), Red 21 Lake (CI 45380). ",4.5,lipstick,lipstick,[],2016-10-01T18:25:16.232Z,2017-12-23T21:08:11.341Z,http://makeup-api.herokuapp.com/api/v1/products/86.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/086/original/data?1514063291,[]
+85,maybelline,Maybelline Lip Studio Color Blur ,11.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a1151b59f69491a75d9f8d80827bc1ee_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-lip-studio-color-blur_106565.html,https://well.ca,"Maybelline's Lip Studio Color Blur is a unique cream matte pencil with vivid colour. The blurring smudger allows you to create your look from full on bold to softly blurred.Features:The cream matte pencil feels extremely smooth and comfortable on lips The blurring smudger means you can create your own looks from full-on bold to softly blurredColor Blur comes in many shades ranging from vivids to neutralsHow to Use: To achieve the softly blurred look, apply colour in the center of your top and bottom lips. Using the smudger, gently blur the colour out towards the edges of your top lip and then bottom lip.",,lipstick,lipstick,[],2016-10-01T18:25:14.865Z,2017-12-23T20:50:59.009Z,http://makeup-api.herokuapp.com/api/v1/products/85.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/085/original/open-uri20171223-4-1cl0hgq?1514062258,"[{'hex_value': '#EF6E87', 'colour_name': 'Berry Misbehaved '}, {'hex_value': '#CF444B', 'colour_name': 'Cherry Cherry Bang Bang '}, {'hex_value': '#FF94A7', 'colour_name': 'Fast & Fuchsia '}, {'hex_value': '#E18CB0', 'colour_name': 'I Like to Mauve It '}, {'hex_value': '#F393B0', 'colour_name': ""I'm Blushing! ""}, {'hex_value': '#C06E8A', 'colour_name': 'My-My Magenta '}, {'hex_value': '#B42F3F', 'colour_name': 'Partner in Crimson '}, {'hex_value': '#FF99DC', 'colour_name': 'Pink Insanity '}, {'hex_value': '#955C69', 'colour_name': 'Plum, Please '}]"
+84,l'oreal,L'Oreal Color Riche Extraordinaire Lip Color,13.96,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/739bc21253ce772c2b2e7ad40d9d3f44_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-color-riche-extraordinaire_86250.html,https://well.ca,"Transform lips from ordinary to extraordinary. Color is richer, lip
+surface is smoother and shine is magnified. Formulated with precious
+micro-oils and rich color pigments, Extraordinaire provides the ideal
+balance of color and care for perfect lips. The unique soft-touch
+applicator allows for a silky-smooth, gliding application.Directions: Use the wand to apply starting in the center of your upper lip. Work
+from the center to outer edges of your lips, following the contour of
+your mouth. Then glide across the entire bottom lip.
+ ",4.0,lipstick,lipstick,[],2016-10-01T18:25:13.698Z,2017-12-23T21:08:06.752Z,http://makeup-api.herokuapp.com/api/v1/products/84.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/084/original/data?1514063286,"[{'hex_value': '#D15D62', 'colour_name': 'Rose Melody (101) '}]"
+83,almay,Almay Smart Shade Butter Kiss Lipstick,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c4033d18bed5b281e0340d437b81370c_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/almay-smart-shade-butter-kiss_101160.html,https://well.ca,"Almay makes it easy to find your perfect lip color!Almay Smart Shade Butter Kiss™ Lipstick offers beautiful shades expertly coordinated to your unique skintone. The ultra-buttery formula drenches lips in hydration. In fact, 98% of women felt lips were instantly hydrated. Collect the perfect pink, berry, red and nude lipstick for your light, light/medium or medium skintone.Pure. Hypoallergenic. Dermatologist Tested.",,lipstick,lipstick,[],2016-10-01T18:25:11.902Z,2017-12-23T20:50:57.691Z,http://makeup-api.herokuapp.com/api/v1/products/83.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/083/original/data?1514062257,"[{'hex_value': '#c66294', 'colour_name': 'Berry - light '}, {'hex_value': '#f3748f', 'colour_name': 'Pink - light '}, {'hex_value': '#eb796f', 'colour_name': 'Nude - light '}, {'hex_value': '#f51f41', 'colour_name': 'Red - light '}, {'hex_value': '#d46179', 'colour_name': 'Berry - light / medium '}, {'hex_value': '#f05283', 'colour_name': 'Pink - light / medium '}, {'hex_value': '#af675e', 'colour_name': 'Nude - light / medium '}, {'hex_value': '#cb1e4b', 'colour_name': 'Red - light / medium '}, {'hex_value': '#9a3056', 'colour_name': 'Berry - medium '}, {'hex_value': '#dc4787', 'colour_name': 'Pink - medium '}, {'hex_value': '#763c36', 'colour_name': 'Nude - medium '}, {'hex_value': '#9e1b3b', 'colour_name': 'Red - medium '}]"
+82,wet n wild,Wet n Wild Silk Finish Lipstick,1.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/31b7ac34f3370824a7d7ed41d21092a3_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/wet-n-wild-silk-finish-lipstick_114014.html,https://well.ca,"Wet n Wild lipstick formula contains all the same things as the other guys: rich color, vitamins A & E, aloe vera, and really feels like putting silk on your lips. If you’re already thinking “That is a crazy bargain,” they've now added macadamia nut oil that contains antioxidants to hydrate your lips for a smooth, supple pout. Features:Purse Pride! New improved formula and packaging!Rich, creamy, bulidable color that feels like silk on the lips!Chock-full of nutrients! Enriched with conditioning ingredients of vitamins A & E, aloe vera, and macadamia nut oilIngredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglyceride, Cetyl Ethylhexanoate, Ozokerite, Microcrystalline Wax/Cire microcristalline, Ethylhexyl Palmitate, Euphorbia Cerifera (Candelilla) Wax/Cire de candelilla, Ceresin, Diisostearyl Malate, Beeswax/Cire d'abeille, Petrolatum, VP/Hexadecene Copolymer, Copernicia Cerifera (Carnauba) Wax/Cire de carnauba, Pentaerythrityl Adipate/Caprate/Caprylate/Heptanoate, Mineral Oil/Huile minérale, Fragrance/Parfum, Phenoxyethanol, Sorbic Acid, Tocopheryl Acetate, Phytosteryl Macadamiate, Tocopherol, Glycine Soja (Soybean) Oil, Aloe Barbadensis Leaf Extract, Silica, [+/- (MAY CONTAIN/PEUT CONTENIR): Blue 1 Lake/CI 42090, Carmine/CI 75470, Iron Oxides/CI 77491, CI 77492, CI 77499, Mica, Red 21 Lake/CI 45380, Red 27 Lake/CI 45410, Red 30 Lake/CI 73360, Red 40 lake/CI 16035, Red 6/CI 15850, Red 7 Lake/CI 15850, Titanium Dioxide/CI 77891, Yellow 5 Lake/CI 19140, Yellow 6 Lake/CI 15985] ",5.0,lipstick,lipstick,[],2016-10-01T18:25:11.068Z,2017-12-23T21:08:06.371Z,http://makeup-api.herokuapp.com/api/v1/products/82.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/082/original/open-uri20171223-4-lb43oh?1514063286,"[{'hex_value': '#AD6678', 'colour_name': 'Dark Pink Frost '}, {'hex_value': '#BF1790', 'colour_name': 'Fuchsia with Blue Pearl '}, {'hex_value': '#E96187', 'colour_name': 'Pink Ice '}]"
+81,l'oreal,L'Oreal Paris Colour Riche Crystal Shine,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6709b779907bbb8410a81c3156ac5a1c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche-crystal_4425.html,https://well.ca,"Crystal Shine is a spectacular L'Oreal Paris innovation in lip colour that reflects light to perfection!Crystal Shine is brilliance redefined: an explosion of colour that combines the glint of metal with the gleam of crystal. Tiny flakes of crystal are covered by a thick layer of metal and trapped within the rich, moist colour and texture of the lipstick.
+Crystal Shine technology is contained within Colour Riche's new and improved Tri-Active formula of Vitamins A and E, for long lasting comfort.
+Colour Riche Crystal Shine is available in 10 stunning shades with crystal reflections-get ready to dazzle!",5.0,lipstick,lipstick,[],2016-10-01T18:25:09.774Z,2017-12-23T20:50:57.584Z,http://makeup-api.herokuapp.com/api/v1/products/81.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/081/original/data?1514062257,"[{'hex_value': '#DA5468', 'colour_name': 'Praline # 340 '}]"
+80,dr. hauschka,Dr. Hauschka Lipstick ,34.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6598776755f921413532606f6db6c8f8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-lipstick_34479.html,https://well.ca,"Dr. Hauschka Lipstick has all the nurturing qualities of their lip care products. Color glides on effortlessly, leaving your lips velvety-smooth.Features: Rose hip and carrot extract keep lips moist and nourishedRose and Jojoba waxes soften and protectColors from nature highlight your natural tonesFurther contour and highlight with Dr.Hauschka LiplinerIngredients: Ricinus Communis (Castor) Seed Oil, Simmondsia Chinensis (Jojoba) Seed
+Oil, Rosa Canina Fruit Extract, Lanolin, Beeswax (Cera Alba), Daucus
+Carota Sativa (Carrot) Root Extract, Euphorbia Cerifera (Candelilla)
+Wax, Copernicia Cerifera (Carnauba) Wax, Rosa Damascena Flower Extract,
+Anthyllis Vulneraria Extract, Prunus Amygdalus Dulcis (Sweet Almond)
+Oil, Prunus Armeniaca (Apricot) Kernel Oil, Hydrogenated Jojoba Oil,
+Rosa Damascena Flower Wax, Fragrance (Parfum), Linalool*, Benzyl
+Benzoate*, Farnesol*, Limonene*, Geraniol*, Benzyl Salicylate*,
+Eugenol*, Maltodextrin, Lecithin, Silica, Mica, Carmine (CI 75470), Iron
+ Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891)
+",4.9,lipstick,lipstick,[],2016-10-01T18:25:08.709Z,2017-12-23T20:51:25.377Z,http://makeup-api.herokuapp.com/api/v1/products/80.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/080/original/data?1514062285,"[{'hex_value': '#E96B6F', 'colour_name': 'Soft Coral (01) '}, {'hex_value': '#BC525C', 'colour_name': 'Red Quartz (13) '}, {'hex_value': '#B5506E', 'colour_name': 'Violet Marble (15) '}, {'hex_value': '#DB3D78', 'colour_name': 'Pink Topaz (16) '}]"
+79,revlon,Revlon Ultra HD Matte Lipcolor,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8e5fad1f09c17ff8b312508a2a7da161_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-ultra-hd-matte-lipcolor_112322.html,https://well.ca,"Revlon Ultra HD Matte Lipcolor gives you lightweight, high definition velvety matte color. It has a moisturizing, velvety
+feel with a 100% wax-free, gel formula. Features: Creamy mango and whipped vanilla fragrance
+Plush velvety applicator Shade Range: (top row, left to right / bottom row, left to right) Devotion, Obsession, Addiction, Temptation / Flirtation, Love, Seduction, Passion",5.0,lipstick,lipstick,[],2016-10-01T18:25:07.889Z,2017-12-23T20:50:57.455Z,http://makeup-api.herokuapp.com/api/v1/products/79.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/079/original/open-uri20171223-4-s90p21?1514062257,"[{'hex_value': '#B03062', 'colour_name': 'Addiction '}, {'hex_value': '#D46C6A', 'colour_name': 'Seduction '}, {'hex_value': '#9E0C30', 'colour_name': 'Passion '}]"
+78,l'oreal,L'Oreal Infallible Lipstick ,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8768b6e9ad0890545f5f261980727caa_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/loreal-infallible-lipstick_101922.html,https://well.ca,"L'Oreal Infallible Lipstick is a longwear 2-step lip colour with hyaluronic gel for 24HR triple action.The hyaluron-infused longwear formula provides saturated, vibrant colour for lips that appear smooth and replenished.Features:All day smoothness for colour that never driesAll day hydration for endless comfortAll day resistance for colour that never fades ",5.0,lipstick,lipstick,[],2016-10-01T18:25:06.524Z,2017-12-23T20:50:58.113Z,http://makeup-api.herokuapp.com/api/v1/products/78.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/078/original/data?1514062258,"[{'hex_value': '#692628', 'colour_name': 'Cherry Noir 217 '}, {'hex_value': '#aa2b37', 'colour_name': 'Continual Crimson 213 '}, {'hex_value': '#d9695a', 'colour_name': 'Everlasting Caramel 201 '}, {'hex_value': '#dc6d81', 'colour_name': 'Flamboyant Flamingo 113 '}, {'hex_value': '#b75b4e', 'colour_name': 'Heaven to Henna 205 '}, {'hex_value': '#e01d25', 'colour_name': 'Infallible Red '}, {'hex_value': '#b25875', 'colour_name': 'Lilac Infinite 105 '}, {'hex_value': '#c5725f', 'colour_name': 'Neverending Nutmeg 119 '}, {'hex_value': '#dc6375', 'colour_name': 'Passionate Petal 111 '}, {'hex_value': '#d33c2e', 'colour_name': 'Perpetual Apricot 207 '}, {'hex_value': '#5a243b', 'colour_name': 'Raisin Revival 215 '}, {'hex_value': '#e89da2', 'colour_name': 'Timeless Rose 115 '}, {'hex_value': '#c24651', 'colour_name': 'Toujours Teaberry 109 '}, {'hex_value': '#a13954', 'colour_name': 'Violet Parfait 107 '}]"
+77,revlon,Revlon ColorStay Ultimate Suede Lipstick,14.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6ca3ee39a1dde0039b18d0ebdb7c2603_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/revlon-colorstay-ultimate-suede_67106.html,https://well.ca,"Is your lipstick giving you both moisture
+and wear? This velvety soft formula with moisturizing shea butter and
+aloe is food proof and doesn’t quit. Apply Revlon ColorStay Ultimate Suede Lipstick once and go!Features: Instant MoistureAll-day Color
+Shea butter, Aloe
+Soft suede finishApplication Tips: Apply your favorite shade of Revlon
+ColorStay Ultimate Suede onto clean, smooth lips. Make a statement with a
+ modern matte finish. Revlon ColorStay Ultimate Suede can be worn with
+or without a Lipliner.",3.3,lipstick,lipstick,[],2016-10-01T18:25:04.847Z,2017-12-23T20:51:18.339Z,http://makeup-api.herokuapp.com/api/v1/products/77.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/077/original/open-uri20171223-4-890nag?1514062278,"[{'hex_value': '#7B050A', 'colour_name': 'Boho Chic '}, {'hex_value': '#B30232', 'colour_name': 'Ready 2 Wear '}, {'hex_value': '#D04E83', 'colour_name': 'Stylist '}, {'hex_value': '#801b3c', 'colour_name': 'Backstage '}, {'hex_value': '#9e5e76', 'colour_name': 'Supermodel '}, {'hex_value': '#a36f68', 'colour_name': 'Runway '}, {'hex_value': '#b25a5d', 'colour_name': 'Iconic '}, {'hex_value': '#b64847', 'colour_name': 'Fashionista '}, {'hex_value': '#c21643', 'colour_name': 'Couture '}, {'hex_value': '#c77a9b', 'colour_name': 'Silhouette '}, {'hex_value': '#cc7183', 'colour_name': 'Preview '}, {'hex_value': '#ce7e82', 'colour_name': 'Socialite '}, {'hex_value': '#d47e93', 'colour_name': 'Womenswear '}, {'hex_value': '#da469a', 'colour_name': 'Muse '}, {'hex_value': '#df274f', 'colour_name': 'Finale '}, {'hex_value': '#eabbaa', 'colour_name': 'Private Viewing '}, {'hex_value': '#ed8984', 'colour_name': 'Flashing Lights '}, {'hex_value': '#f26f67', 'colour_name': 'Cruise Collection '}, {'hex_value': '#f382a4', 'colour_name': 'High Heels '}]"
+75,revlon,Revlon Ultra HD Lipstick,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/520ec3a925b375de902b75008f492794_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-ultra-hd-lipstick_101021.html,https://well.ca,Revlon Ultra HD Lipstick gives you true color clarity without the heavy feel.Featuring revolutionary wax-free gel technology this lipstick offers true color clarity in one smooth swipe. ,,lipstick,lipstick,[],2016-10-01T18:25:00.884Z,2017-12-23T20:31:53.459Z,http://makeup-api.herokuapp.com/api/v1/products/75.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/075/original/data?1514061113,"[{'hex_value': '#b47b6d', 'colour_name': 'HD Camilla '}, {'hex_value': '#a7363e', 'colour_name': 'HD Dahlia '}, {'hex_value': '#ee5c5f', 'colour_name': 'HD Geranium '}, {'hex_value': '#da1f3e', 'colour_name': 'HD Gladiolus '}, {'hex_value': '#f1766c', 'colour_name': 'HD Hibiscus '}, {'hex_value': '#e14c70', 'colour_name': 'HD Hydrangea '}, {'hex_value': '#95164a', 'colour_name': 'HD Iris '}, {'hex_value': '#df888d', 'colour_name': 'HD Magnolia '}, {'hex_value': '#ed4838', 'colour_name': 'HD Marigold '}, {'hex_value': '#f07ea4', 'colour_name': 'HD Peony '}, {'hex_value': '#cb1861', 'colour_name': 'HD Petunia '}, {'hex_value': '#cf254c', 'colour_name': 'HD Poinsettia '}, {'hex_value': '#d8222d', 'colour_name': 'HD Poppy '}, {'hex_value': '#a95661', 'colour_name': 'HD Primrose '}, {'hex_value': '#d97484', 'colour_name': 'HD Rose '}, {'hex_value': '#9c4b3f', 'colour_name': 'HD Snapdragon '}, {'hex_value': '#ef74a5', 'colour_name': 'HD Sweet Pea '}, {'hex_value': '#f07273', 'colour_name': 'HD Tulip '}]"
+74,l'oreal,L'Oreal Paris Colour Riche Collection Exclusive Lip Colour ,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a9c19212339fb2ed792af559b2a4208d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche_96596.html,https://well.ca,"L'Oreal Paris Collection Exclusive by Colour Riche® introduces a permanent offer to
+the L'Oreal Paris portfolio. This collection includes six signature nude shades by L'Oreal's six
+dazzling spokeswomen. The shades are custom-made to match various skin tones and
+haircolour.",4.7,lipstick,lipstick,[],2016-10-01T18:24:59.507Z,2017-12-23T20:31:52.834Z,http://makeup-api.herokuapp.com/api/v1/products/74.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/074/original/data?1514061112,"[{'hex_value': '#DEA1A6', 'colour_name': ""Doutzen's Nude ""}, {'hex_value': '#B16B61', 'colour_name': ""Eva's Nude ""}, {'hex_value': '#83605E', 'colour_name': ""Freida's Nude ""}, {'hex_value': '#BD7069', 'colour_name': ""JLo's Nude ""}, {'hex_value': '#BA6C6C', 'colour_name': ""Julianne's Nude ""}, {'hex_value': '#994835', 'colour_name': ""Liya's Nude ""}]"
+73,maybelline,Maybelline Color Sensational The Buffs Lipcolour,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/27afa69db661563a1d6135bb5f6079dd_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational-the_88857.html,https://well.ca,"Raw. Real. Pigments explode with sensuous impact…sensational! Maybelline Color Sensational The Buffs Lipcolour have true nude lip color pigments for honest flesh tone color. This range has it all, from blushing beige, to bronze, to espresso.
+ For Best Results: Apply your nude lip color lipstick by starting in the center
+of your upper lip. Work from the center to the outer edges of your lip,
+following the contours of your mouth. Then glide across the entire
+bottom lipShade Range:
+
+
+ ",4.8,lipstick,lipstick,[],2016-10-01T18:24:56.389Z,2017-12-23T20:51:18.174Z,http://makeup-api.herokuapp.com/api/v1/products/73.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/073/original/open-uri20171223-4-92movw?1514062278,"[{'hex_value': '#E3A28C', 'colour_name': 'Bare All '}, {'hex_value': '#EB907D', 'colour_name': 'Blushing Beige '}, {'hex_value': '#DD8A78', 'colour_name': 'Nude Lust '}, {'hex_value': '#A95D50', 'colour_name': 'Maple Kiss '}, {'hex_value': '#E2937F', 'colour_name': 'Truffle Tease '}, {'hex_value': '#D47661', 'colour_name': 'Stormy Sahara '}, {'hex_value': '#8A3938', 'colour_name': 'Untainted Spice '}, {'hex_value': '#590004', 'colour_name': 'Expresso Exposed '}]"
+72,maybelline,Maybelline Color Sensational Vivids Lipcolour,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0d31f41c37fd18dfc02daa1671719378_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational-vivids_66103.html,https://well.ca,"With Maybelline Colour Sensational Vivids Lipcolour bright goes gorgeous, never garish!Get brighter color from Maybelline's exclusive vivid pigments. Plus get creamier feel from nourishing honey nectar. Features: Be bright and gorgeousExclusive Vivid colors are brighterHoney nectar formula nourishes lipsFor Best Results: Apply lipcolor starting in the center of your upper lip. Work from the center to the outer edges of your lip, following the contours of your mouth. Then glide across the entire bottom lip.Shade Range: ",5.0,lipstick,lipstick,[],2016-10-01T18:24:55.093Z,2017-12-23T20:50:55.568Z,http://makeup-api.herokuapp.com/api/v1/products/72.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/072/original/open-uri20171223-4-jaz2h8?1514062255,"[{'hex_value': '#f9005b', 'colour_name': 'Vivid Rose (825) '}, {'hex_value': '#ff2e8c', 'colour_name': 'Fuchsia Flash (865) '}, {'hex_value': '#ff4a62', 'colour_name': 'Shocking Coral (870) '}, {'hex_value': '#ff3b00', 'colour_name': 'Electric Orange (880) '}, {'hex_value': '#ff6ab6', 'colour_name': 'Pink Pop (880) '}, {'hex_value': '#ba0000', 'colour_name': 'On Fire Red (895) '}]"
+71,pacifica,Pacifica Devocean Natural Lipstick Deeply Devoted Creamy Color,21.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/54eca0da1259fdc4eed0346e6fdcb590_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-devocean-natural-lipstick_94362.html,https://well.ca,"Pacifica Devocean Lipstick is a 100% natural, hydrating vegan lipstick that will last with intensity, like the deepest of love.What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Formulated without: Animal ingredients (including carmine,
+beeswax and lanolin), animal testing. FD & C colors, mineral oil,
+parabens, phthalates, petroleum, propylene glycol, SLS, gluten, peanut
+oil and other ingredients you don't want on your skin.",4.3,lipstick,lipstick,"['Natural', 'Vegan']",2016-10-01T18:24:53.472Z,2017-12-23T20:50:55.441Z,http://makeup-api.herokuapp.com/api/v1/products/71.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/071/original/open-uri20171223-4-1b53nbg?1514062255,"[{'hex_value': '#EB7583', 'colour_name': 'XOX '}]"
+70,burt's bees,Burt's Bees Lipstick ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cffae93a3ef7d0c543b36a74684735ad_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/burts-bees-lipstick_113124.html,https://well.ca,"Burt's Bees Lipstick provides luscious, full-coverage color and hours of natural moisture.Features:Moisturizing Satin-finish shades Creamy and lightweight feel, ideal for everyday wear 100% Natural with 100% recyclable materialDirections: Remove lid, apply to lips for your desired level of satin colorIngredients: diheptyl succinate, capryloyl glycerin/sebacic acid copolymer, ricinus communis, helianthus annuus, cera alba, candelilla cera , behenyl alcohol, oleic/linoleic/linolenic polyglycerides, C12-18 acid triglyceride, lanolin hydrogenated vegetable oil, cera carnauba [copernicia cerifera (carnauba) wax], moringa oleifera seed oil rubus idaeus (raspberry) seed.",3.7,lipstick,lipstick,['Natural'],2016-10-01T18:24:52.538Z,2017-12-23T20:50:55.199Z,http://makeup-api.herokuapp.com/api/v1/products/70.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/070/original/open-uri20171223-4-1y6qjm6?1514062255,"[{'hex_value': '#A86160', 'colour_name': 'Blush Basin '}, {'hex_value': '#831F41', 'colour_name': 'Brimming Berry '}, {'hex_value': '#AE4B74', 'colour_name': 'Fuchsia Flood '}, {'hex_value': '#CD6A86', 'colour_name': 'Iced Iris '}, {'hex_value': '#7A2946', 'colour_name': 'Juniper Water '}, {'hex_value': '#853D53', 'colour_name': 'Lilly Lake '}, {'hex_value': '#8B214F', 'colour_name': 'Magenta Rush '}, {'hex_value': '#B66F61', 'colour_name': 'Nile Nude '}, {'hex_value': '#811A35', 'colour_name': 'Ruby Ripple '}, {'hex_value': '#662A2C', 'colour_name': 'Russet River '}, {'hex_value': '#892026', 'colour_name': 'Scarlet Soaked '}, {'hex_value': '#B06A60', 'colour_name': 'Suede Splash '}, {'hex_value': '#AE4349', 'colour_name': 'Sunset Cruise '}, {'hex_value': '#B26487', 'colour_name': 'Tulip Tide '}]"
+69,maybelline,Maybelline Color Sensational Creamy Mattes Lipcolour ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/81fd80f898674d00f1860cd0724460f4_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational-creamy_100322.html,https://well.ca,"Maybelline Creamy Mattes by Color Sensational deliver a burst of bold lip color and a surge of creamy texture in great make-a-statement shades, for mattes your lips will love to wear!Features: Lips slip into this creamy matteMattifying cream pure pigments and three precious oilsMake-a-statement shades",5.0,lipstick,lipstick,[],2016-10-01T18:24:51.748Z,2017-12-23T20:50:56.946Z,http://makeup-api.herokuapp.com/api/v1/products/69.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/069/original/open-uri20171223-4-uyvfh1?1514062256,"[{'hex_value': '#ff1303', 'colour_name': 'Craving Coral '}, {'hex_value': '#e87e74', 'colour_name': 'Daringly Nude '}, {'hex_value': '#ff2f99', 'colour_name': 'Faint For Fuchsia '}, {'hex_value': '#db5c83', 'colour_name': 'Lust for Blush '}, {'hex_value': '#ec0064', 'colour_name': 'Mesmerizing Magenta '}, {'hex_value': '#f5367d', 'colour_name': 'Ravishing Rose (Bright Rose Pink) '}, {'hex_value': '#b63849', 'colour_name': 'Touch of Spice '}]"
+68,l'oreal,L'Oreal Paris Colour Riche Lipstick,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5409595e1888807b979036e77ef7e496_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-colour-riche-lipstick_4424.html,https://well.ca,"Indulge in richness beyond compare with L'Oreal's most luxuriously rich color and intensely rich hydration. Colour Riche®
+ Lipcolour is richer, creamier and more moisturizing than ever before.
+In addition to nourishing ingredients like Omega 3 and Vitamin E, the
+formula is enriched with Argan Oil to condition and soften lips. Your
+lips are kept soft, smooth, and ultra-hydrated. With a spectrum of
+gorgeous shades from bold to nearly nude, Colour Riche® Lipcolour offers a shade that’s perfect for every look and any occasion.
+ ",4.6,lipstick,lipstick,[],2016-10-01T18:24:50.904Z,2017-12-23T20:50:56.751Z,http://makeup-api.herokuapp.com/api/v1/products/68.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/068/original/data?1514062256,"[{'hex_value': '#A33750', 'colour_name': 'Blushing Berry '}, {'hex_value': '#FF244B', 'colour_name': 'British Red '}, {'hex_value': '#B5353A', 'colour_name': 'Cinnamon Toast '}, {'hex_value': '#B3857D', 'colour_name': 'Fairest Nude '}, {'hex_value': '#C37685', 'colour_name': 'Mica '}, {'hex_value': '#A44D54', 'colour_name': ""Nature's Blush ""}, {'hex_value': '#761214', 'colour_name': 'Plum Explosion '}, {'hex_value': '#c52531', 'colour_name': 'Ruby Flame '}]"
+67,revlon,Revlon Matte Lipstick,11.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ee024f34ca91f5fa1358d47284f07fb0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-matte-lipstick_10014.html,https://well.ca,"
+Straight from the Runway shades !
+Beautifully rich matte color glides effortlessly across lips.
+Suede-like, cushiony feel and with maximum color impact.
+Beautifully rich shades from nude to deepest berry.
+",4.5,lipstick,lipstick,[],2016-10-01T18:24:50.140Z,2017-12-23T20:50:56.545Z,http://makeup-api.herokuapp.com/api/v1/products/67.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/067/original/data?1514062256,"[{'hex_value': '#C21919', 'colour_name': 'Really Red '}, {'hex_value': '#F6B197', 'colour_name': 'Nude Attitude '}]"
+66,revlon,Revlon ColorStay Ultimate Liquid Lipstick,14.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6750098db06175dee7493eca3f711fc3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/revlon-colorstay-ultimate-liquid_12504.html,https://well.ca,"Revlon ColorStay Ultimate Liquid Lipstick is a one-step, food-proof lipcolor with a patented ColorStay technology that lasts up to 24 hours.Features:Food-proof lipcolor with a built-in, ultra-conditioning topcoatOne-step application- No topcoat required for comfortable wearStays comfortable and wears beautifullyDoes not feather or fade; no touch-ups required, even after meals
+
+To Use: Apply a thin, even layer to clean, bare lips and wait until dry.",4.1,lipstick,lipstick,[],2016-10-01T18:24:49.055Z,2017-12-23T20:50:56.073Z,http://makeup-api.herokuapp.com/api/v1/products/66.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/066/original/data?1514062256,"[{'hex_value': '#8E0F34', 'colour_name': 'Brilliant Bordeaux '}, {'hex_value': '#A14667', 'colour_name': 'Premier Plum '}, {'hex_value': '#BD736B', 'colour_name': '#1 Nude '}, {'hex_value': '#C1738F', 'colour_name': 'Iconic Iris '}, {'hex_value': '#C20D20', 'colour_name': 'Top Tomato '}, {'hex_value': '#DA2D26', 'colour_name': 'Stellar Sunrise '}, {'hex_value': '#EF4D75', 'colour_name': 'Premium Pink '}]"
+65,maybelline,Maybelline Color Sensational Lipcolour,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b1c627d5a7e341e53754c8dee92d2878_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-color-sensational_14537.html,https://well.ca,"Maybelline Colour Sensational Lipcolour will make you fall in love with color, all over again! Features:
+
+Crisper color from pure pigments
+Creamier feel from nourishing honey nectar
+Lipcolor so rich, so stunning… it’s sensational Incredible colour range, from pinks, plums, reds and bronze
+
+ ",4.2,lipstick,lipstick,[],2016-10-01T18:24:44.446Z,2017-12-23T20:50:57.314Z,http://makeup-api.herokuapp.com/api/v1/products/65.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/065/original/open-uri20171223-4-f2n6t8?1514062257,"[{'hex_value': '#E70C2F', 'colour_name': 'Are you Red-dy '}, {'hex_value': '#DF8A82', 'colour_name': 'Born With It '}, {'hex_value': '#F15B50', 'colour_name': 'Coral Crush '}, {'hex_value': '#8F332C', 'colour_name': 'Crazy for Coffee '}, {'hex_value': '#CA6E6B', 'colour_name': 'Warm Me Up '}]"
+64,nyx,NYX Soft Matte Lip Cream,8.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/1dd732e9af6067d5adb4b3b1ba4a4f8c_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/nyx-soft-matte-lip-cream_106555.html,https://well.ca,"Neither lipstick nor lip gloss this NYX Soft Matte Lip Cream is a new kind of lip color that goes on silky smooth and sets to a matte finish. Features:Soft Matte Lip Cream is durableUnlike some matte lipstick formulas this lip cream is moisturizing and does not dry outComes in a variety of shades for every occasionLong wearing, high pigmentation Ingredients: Pentaerythrityl Tetraisostearate, Dimethicone,Beeswax, Glyceryl Behenate / Eicosadioate, Phenoxyethanol, Dimethicone /Dimethicone Crosspolymer, Talc, Methyl Methacrylate Crosspolymer, Silica, Aluminium Starch Octenylsuccinate, Isohexadecane,Disteardimonium Hectorite, Propylene Carbonate, Parfum. MAY CONTAIN / PEUT CONTENIR (+/-):CI77019 (Mica) / CI77891 (Titanium Dioxide), CI15850 (D&C Red 6 Na.Salt), CI15850 (D&C Red 7 Ca Lake), CI15985:1 (FD&C Yellow 6 AlLake), CI19140:1 (FD&C Yellow 5 Al Lake), CI45410 (D&C Red 28 AlLake), CI77491 (Iron Oxide Red), CI77492 (Iron Oxide Yellow), CI77499(Iron Oxide Black), CI77742 (Manganese Violet), CI77891 (TitaniumDioxide).",4.5,lipstick,lipstick,[],2016-10-01T18:24:42.537Z,2017-12-23T20:51:17.656Z,http://makeup-api.herokuapp.com/api/v1/products/64.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/064/original/open-uri20171223-4-7jbteg?1514062277,"[{'hex_value': '#9D6D61', 'colour_name': 'Abu Dhabi '}, {'hex_value': '#E44B82', 'colour_name': 'Addis Ababa '}, {'hex_value': '#933A40', 'colour_name': 'Budapest '}, {'hex_value': '#F19988', 'colour_name': 'Buenos Aires '}, {'hex_value': '#DA956F', 'colour_name': 'Cairo '}, {'hex_value': '#924A41', 'colour_name': 'Cannes '}, {'hex_value': '#5F192B', 'colour_name': 'Copenhagen '}, {'hex_value': '#612E8D', 'colour_name': 'Havana '}, {'hex_value': '#C9404D', 'colour_name': 'Ibiza '}, {'hex_value': '#CD888C', 'colour_name': 'Instabul '}, {'hex_value': '#AE6F66', 'colour_name': 'London '}, {'hex_value': '#F32E17', 'colour_name': 'Morocco '}, {'hex_value': '#103167', 'colour_name': 'Moscow '}, {'hex_value': '#E62F67', 'colour_name': 'Paris '}, {'hex_value': '#9A2B46', 'colour_name': 'Prague '}, {'hex_value': '#FC5236', 'colour_name': 'San Juan '}, {'hex_value': '#9F3A76', 'colour_name': 'Seoul '}, {'hex_value': '#F6A9BE', 'colour_name': 'Sydney '}, {'hex_value': '#481E32', 'colour_name': 'Transylvania '}, {'hex_value': '#79283B', 'colour_name': 'Vancouver '}, {'hex_value': '#B75E4E', 'colour_name': 'Zurich '}]"
+62,burt's bees,Burt's Bees Lip Crayon,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ab45997fcda6fc649959ea74507c28e3_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/burts-bees-lip-crayon_101173.html,https://well.ca,"Try Burt's Bees Lip Crayons and enjoy the 100% natural creamy matte colour with moisture-rich wear. These lightweight jumbo lip pencils moisturize for a comfortable, everyday wear with a formula infused with Shea Butter, Kendi Oil, and Jojoba
+Oil. It's colour that truly cares for your lips!What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup found on our blog, The Well! Features:
+
+Creamy matte color and moisture-rich wear
+For everyday wear either alone or layered under a Lip Gloss or Lip Shine
+Precise application in a playful form without the hassle and mess of sharpening
+No added flavor or fragrance
+Hydrates and moisturizes lips, leaving them feeling soft and smoothShades: Ingredients: ricinus communis (castor) seed oil, caprylic/capric triglyceride, simmondsia chinensis (jojoba) seed oil, candelilla cera (euphorbia cerifera wax, cire de candelilla), cera alba (beeswax, cire d'abeille), cera carnauba (copernicia cerifera wax, cire de carnauba), butyrospermum parkii (shea) butter, hydrogenated vegetable oil, aleurites moluccana seed oil*, olea europaea (olive) fruit oil, helianthus annuus (sunflower) seed oil, rosmarinus officinalis (rosemary) leaf extract, tocopherol, lecithin, silica, glycine soja (soybean) oil. +/- (May contain / Peut contenir): CI 77891 (titanium dioxide), CI 77019 (mica), CI 75470 (carmine), CI 77491, CI 77492, CI 77499 (iron oxides) *kendi oil",4.5,lipstick,lipstick,['Natural'],2016-10-01T18:24:39.636Z,2017-12-23T20:50:59.543Z,http://makeup-api.herokuapp.com/api/v1/products/62.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/062/original/data?1514062259,"[{'hex_value': '#ff88b1', 'colour_name': 'Carolina Coast '}, {'hex_value': '#b7021e', 'colour_name': 'Napa Vineyard '}, {'hex_value': '#f9636d', 'colour_name': 'Niagara Overlook '}, {'hex_value': '#8c212b', 'colour_name': 'Redwood Forest '}]"
+61,e.l.f.,e.l.f. Studio Matte Lip Color,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5f81d4f36c4ba153bcc62e81bc93573f_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-matte-lip-color_93437.html,https://well.ca,"This convenient jumbo sized lip pencil creates exact color application
+with twist up ease so you never have to sharpen. The pigment rich color
+ glides on effortlessly and easily to provide long lasting matte color.
+ The enriched Vitamin A, C & E formula moisturizes and hydrates lips
+ for beautiful healthy looking lips.How To Use: Apply to lips and blend in color. Re-apply as often as desired. Use alone or layer with your favorite lip gloss shade for a glossy effect. Ingredients: Paraffinum Liquidum (Mineral Oil), Microcrystalline Wax (Cera
+Microcristallina), Synthetic Beeswax,Ethylhexyl Palmitate, Copernicia
+Cerifera (Carnauba) Wax, Ozokerite, Polyethylene, Ceresin, Silica
+Dimethyl Silylate, Polyisobutene, Aspartame, Retinol (VA), Magnesium
+Ascorbyl Phosphate (VC), Tocopheryl Acetate (VE), Phenoxyethanol,
+Ethylparaben,Propylparaben, Methylparaben. May Contain:Titanium Dioxide
+(CI 77891), Iron Oxides (CI 77491, CI 77492,CI 77499), Blue No.1 Lake (
+CI 42090), Red No.40 Lake (CI 16035), Red No.7 Lake (CI 15850), Red
+No.27 Lake (CI 45410)",4.3,lipstick,lipstick,['Vegan'],2016-10-01T18:24:38.689Z,2017-12-23T20:50:55.942Z,http://makeup-api.herokuapp.com/api/v1/products/61.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/061/original/data?1514062255,"[{'hex_value': '#AA2A63', 'colour_name': 'Berry Sorbet '}, {'hex_value': '#9B3F4A', 'colour_name': 'Cranberry '}, {'hex_value': '#D4233F', 'colour_name': 'Dash of Pink '}, {'hex_value': '#E6A2A3', 'colour_name': 'Natural '}, {'hex_value': '#C63232', 'colour_name': 'Rich Red '}, {'hex_value': '#D1949C', 'colour_name': 'Tea Rose '}, {'hex_value': '#923144', 'colour_name': 'Wine '}]"
+60,revlon,Revlon Super Lustrous Lipstick,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6618c0f47d043084550818a74e6250aa_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-super-lustrous-lipstick_3928.html,https://well.ca,"Revlon Super Lustrous Lipstick is as essential as the little black dress. With a tonne of fabulous, fashionable shades, Super Lustrous Lipstick offers the widest range of colors, so you are sure to find one that looks gorgeous on you! Packed with mega-moisturizers and vitamins C and E for soft, smooth, sexy lips. Your lips stay kissably conditioned for lasting smoothness while the color stays rich and true.",4.9,lipstick,lipstick,[],2016-10-01T18:24:37.092Z,2017-12-23T20:50:55.339Z,http://makeup-api.herokuapp.com/api/v1/products/60.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/060/original/data?1514062255,"[{'hex_value': '#DA3A44', 'colour_name': 'Cherry Blossom '}, {'hex_value': '#EF8579', 'colour_name': 'Demure '}, {'hex_value': '#FF5B24', 'colour_name': 'Siren '}, {'hex_value': '#4f2114', 'colour_name': 'Black Cherry '}, {'hex_value': '#946893', 'colour_name': 'Berry Haute '}, {'hex_value': '#B14862', 'colour_name': 'Mauvy Night '}, {'hex_value': '#B3202F', 'colour_name': 'Wine With Everything Cream '}, {'hex_value': '#B62252', 'colour_name': 'Fuchsia Fusion '}, {'hex_value': '#BE4D2A', 'colour_name': 'Sandalwood Beige '}, {'hex_value': '#C4615E', 'colour_name': 'Rose Velvet '}, {'hex_value': '#C50032', 'colour_name': 'Certainly Red '}, {'hex_value': '#CA4B63', 'colour_name': 'Plumalicious '}, {'hex_value': '#CD808F', 'colour_name': 'Porcelain Pink '}, {'hex_value': '#DA89A0', 'colour_name': 'Primrose '}, {'hex_value': '#EB8B86', 'colour_name': 'Pink In The Afternoon '}, {'hex_value': '#ED062F', 'colour_name': 'Love That Red '}, {'hex_value': '#EE001C', 'colour_name': 'Fire & Ice '}, {'hex_value': '#F26D6D', 'colour_name': 'Coralberry '}, {'hex_value': '#F3A98C', 'colour_name': 'Champagne on Ice '}, {'hex_value': '#FF4E3A', 'colour_name': 'Kiss Me Coral '}, {'hex_value': '#a96354', 'colour_name': 'Smoky Rose '}, {'hex_value': '#e2321e', 'colour_name': 'Abstract Orange '}, {'hex_value': '#f7b8b8', 'colour_name': 'Luminous Pink '}]"
+59,milani,Milani Color Statement Moisture Matte Lipstick,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a782e8566462ce85fbf46a791f0004e5_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-color-statement-moisture_103488.html,https://well.ca,"Inspired by the Milan Runway, eight new matte shades and two luscious crème shades.Features:One stroke, full coverage applicationLightweight & creamy formulaInfused with Vitamins A & C to hydrate lipsLong-wearing formula Colour-true finishApplication: Begin applying from the center of your upper lips and work your way to the outer edges. Same application is used for your bottom lips. Tip: Lipliner helps extend the wear & keeps your lipstick from feathering. When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades. Create a custom lipcolor by using a contrasting lipliner and lipstick shade.Ingredients: Ricinus Communis (Castor) Seed Oil, Tridecyl Trimellitate, Euphorbia Cerifera (Candelilla) Wax / Euphorbia Cerifera Cera, Ethylhexyl Palmitate, Microcristallina Cera (Microcrystalline Wax), Cera Alba (Beeswax), Ozokerite, Copernicia Cerifera (Carnauba) Wax/Cera Carnauba, Benzyl Benzoate, Fragrance (Parfum), Vanillin, Ascorbyl Palmitate, Tocopherol, Glycine Soja (Soybean) Oil, Retinyl Palmitate, Hydroxycitronellal. +/- May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 22 (CI 45380), Red 27 (CI 45410), Red 28 (CI 45410), Yellow 5 (CI 19140), Yellow 6 (CI 15985), Blue 1 (CI 42090), Carmine (CI 75470).",4.7,lipstick,lipstick,[],2016-10-01T18:24:35.640Z,2017-12-23T20:50:55.753Z,http://makeup-api.herokuapp.com/api/v1/products/59.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/059/original/open-uri20171223-4-71qtyw?1514062255,"[{'hex_value': '#824A4D', 'colour_name': 'Matte Beauty '}, {'hex_value': '#d590a8', 'colour_name': 'Matte Blissful '}, {'hex_value': '#a42036', 'colour_name': 'Matte Confident '}, {'hex_value': '#A14D57', 'colour_name': 'Matte Darling '}, {'hex_value': '#e172ac', 'colour_name': 'Matte Diva '}, {'hex_value': '#301623', 'colour_name': 'Matte Fearless '}, {'hex_value': '#501E31', 'colour_name': 'Matte Flirty '}, {'hex_value': '#7C4182', 'colour_name': 'Matte Glam '}, {'hex_value': '#870D0D', 'colour_name': 'Matte Iconic '}, {'hex_value': '#e1b5a4', 'colour_name': 'Matte Innocence '}, {'hex_value': '#981E26', 'colour_name': 'Matte Kiss '}, {'hex_value': '#421E26', 'colour_name': 'Matte Love '}, {'hex_value': '#DF4921', 'colour_name': 'Matte Lux '}, {'hex_value': '#ae5e57', 'colour_name': 'Matte Naked '}]"
+58,milani,Milani Color Statement Lipstick,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5adaa808a071d0f63933cb75fa9a1dfc_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/milani-color-statement-lipstick_89090.html,https://well.ca,"Inspired by the Milan Runway, eight new matte shades and two luscious crème shades.Features:One stroke, full coverage applicationLightweight & creamy formulaInfused with Vitamins A & C to hydrate lipsLong-wearing formula Colour-true finishApplication: Begin applying from the center of your upper lips and work your way to the outer edges. Same application is used for your bottom lips. Tip: Lipliner helps extend the wear & keeps your lipstick from feathering. When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades. Create a custom lipcolor by using a contrasting lipliner and lipstick shadeIngredients: Ricinus Communis (Castor) Seed Oil, Tridecyl Trimellitate, Euphorbia Cerifera (Candelilla) Wax / Euphorbia Cerifera Cera, Ethylhexyl Palmitate, Microcristallina Cera (Microcrystalline Wax), Cera Alba (Beeswax), Ozokerite, Copernicia Cerifera (Carnauba) Wax/Cera Carnauba, Benzyl Benzoate, Fragrance (Parfum), Vanillin, Ascorbyl Palmitate, Tocopherol, Glycine Soja (Soybean) Oil, Retinyl Palmitate, Hydroxycitronellal. +/- May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 22 (CI 45380), Red 27 (CI 45410), Red 28 (CI 45410), Yellow 5 (CI 19140), Yellow 6 (CI 15985), Blue 1 (CI 42090), Carmine (CI 75470). ",4.4,lipstick,lipstick,[],2016-10-01T18:24:32.550Z,2017-12-23T20:50:56.218Z,http://makeup-api.herokuapp.com/api/v1/products/58.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/058/original/open-uri20171223-4-bwpqlj?1514062256,"[{'hex_value': '#9A3306', 'colour_name': 'Bronze Beauty (Shimmer) '}, {'hex_value': '#5E172D', 'colour_name': 'Cabaret Blend '}, {'hex_value': '#F296CF', 'colour_name': 'Catwalk Pink '}, {'hex_value': '#F3574B', 'colour_name': 'Coral Addict '}, {'hex_value': '#A87363', 'colour_name': 'Bahama Beige '}, {'hex_value': '#B6091D', 'colour_name': 'Best Red (Matte) '}, {'hex_value': '#6E4148', 'colour_name': 'Black Cherry (Cream) '}, {'hex_value': '#9E283E', 'colour_name': 'Blushing Beauty '}, {'hex_value': '#301623', 'colour_name': 'Brandy Berry '}, {'hex_value': '#5C3D31', 'colour_name': 'Double Espresso '}, {'hex_value': '#AC5446', 'colour_name': 'Dulce Caramelo (Pearl) '}, {'hex_value': '#C92F0B', 'colour_name': 'Empress '}, {'hex_value': '#D96081', 'colour_name': 'Fruit Punch (Cream) '}, {'hex_value': '#DA7A6C', 'colour_name': 'Naturally Chic (Cream) '}, {'hex_value': '#B6605F', 'colour_name': 'Nude Creme (Cream) '}, {'hex_value': '#D55B3C', 'colour_name': 'Orange-Gina (Pearl) '}, {'hex_value': '#EB9DAD', 'colour_name': 'Pink Frost (Metallic) '}, {'hex_value': '#963546', 'colour_name': 'Plumrose (Cream) '}, {'hex_value': '#E01783', 'colour_name': 'Power Pink '}, {'hex_value': '#D78396', 'colour_name': 'Pretty Natural '}, {'hex_value': '#A71800', 'colour_name': 'Rebel Rouge '}, {'hex_value': '#AB0B11', 'colour_name': 'Red Label (Cream) '}, {'hex_value': '#9D6670', 'colour_name': 'Rose Femme '}, {'hex_value': '#FE3D93', 'colour_name': 'Rose Hip (Cream) '}, {'hex_value': '#A5051D', 'colour_name': 'Ruby Valentine (Vinyl) '}, {'hex_value': '#8B2058', 'colour_name': 'Sangria (Matte) '}, {'hex_value': '#F77234', 'colour_name': 'Sweet Nectar (Cream) '}, {'hex_value': '#B26457', 'colour_name': 'Teddy Bare (Cream) '}, {'hex_value': '#56181B', 'colour_name': 'Tuscan Toast '}, {'hex_value': '#A2356C', 'colour_name': 'Uptown Mauve (Cream) '}, {'hex_value': '#5A0011', 'colour_name': 'Velvet Merlot '}, {'hex_value': '#7C109A', 'colour_name': 'Violet Volt '}]"
+57,revlon,Revlon ColorBurst Matte Balm ,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/76076d06ebd517f1ae7e359d96d50b32_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/revlon-colorburst-matte-balm_84513.html,https://well.ca,"Revlon ColorBurst Matte Balm offers velvety color with balm-like moisture!Packaged in an adorable chubby crayon, this Matte balm is infused with a Triple Butter Complex of Shea, Mango and
+Coconut Butter.",4.3,lipstick,lipstick,[],2016-10-01T18:24:30.933Z,2017-12-23T20:50:54.836Z,http://makeup-api.herokuapp.com/api/v1/products/57.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/057/original/data?1514062254,"[{'hex_value': '#E66675', 'colour_name': 'Elusive '}, {'hex_value': '#F2579B', 'colour_name': 'Shewy '}, {'hex_value': '#99302A', 'colour_name': 'Standout '}, {'hex_value': '#E53134', 'colour_name': 'Striking '}, {'hex_value': '#A93041', 'colour_name': 'Sultry '}, {'hex_value': '#FF4E62', 'colour_name': 'Unapologet '}]"
+56,e.l.f.,e.l.f. Studio Moisturizing Lipstick,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/9e370b087244262131cab9db8b6725c7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-moisturizing-lipstick_93441.html,https://well.ca,"The velvety, satin texture of e.l.f. Studio Moisturizing Lipstick glides on lips with vibrant color and
+luminous shine. Enriched with Shea and Vitamins A, C, & E to nourish
+ and hydrate the lips. The rich, creamy formula seals in moisture for
+long-lasting wear and comfort.Ingredients: Paraffinum Liquidum (Mineral Oil), Petrolatum, Ceresin, Ethylhexyl Palmitate, Hydrogenated Polydecene, Microcrystalline Wax (Cera Microcristallina), Polybutene, Paraffin, Synthetic Beeswax, Polyethylene, Copernicia Cerifera (Carnauba) Wax, Silica Dimethyl Silylate, Fragrance (Parfum), Butyrospermum Parkii (Shea) Butter, Retinyl Palmitate (Va), Tocopheryl Acetate (Ve), Ascorbyl Palmitate (Vc), Neotame, Propylparaben May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 40 Lake (CI 16035), Red 7 Lake (CI 15850), Red 27 Lake (CI 45410), Red 6 Lake (CI 15850), Yellow 5 Lake (CI 19140), Blue 1 Lake (CI 42090) ",4.1,lipstick,lipstick,['Vegan'],2016-10-01T18:24:29.248Z,2017-12-23T20:50:54.727Z,http://makeup-api.herokuapp.com/api/v1/products/56.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/056/original/data?1514062254,"[{'hex_value': '#FCAE98', 'colour_name': 'Party in the Buff '}, {'hex_value': '#7D2D3A', 'colour_name': 'Wine Tour '}, {'hex_value': '#D40D14', 'colour_name': 'Red Carpet '}, {'hex_value': '#C55456', 'colour_name': 'Ravishing Rose '}, {'hex_value': '#F57574', 'colour_name': 'Pink Minx '}, {'hex_value': '#C26659', 'colour_name': 'Cheeky '}]"
+55,pure anada,Pure Anada Petal Perfect Lipstick,14.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b66c56aeb8d078123cca4c9c64d17cb9_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pure-anada-petal-perfect-lipstick_83247.html,https://well.ca,"Pure Anada Petal Perfect Lipstick is a moisture intensive natural lipstick. Made with rich butters, plant oils, and waxes provide a smooth, creamy consistency. For a boost of shine, apply the coordinating Pure Anada Lip Gloss on top of your lipstick.Pure Anada Petal Perfect Lipstick is made with certified organic Rosehip Seed Oil which is known to repair dry, damaged skin and promote cell regeneration. A perfect treatment to hydrate and smooth your lips!A berry-toned lip is a must have for the cool fall season and carries on great through the winter! Find more green fall beauty essentials on our blog, The Well.Shades: Ingredients: Ricinus Communis (Organic Castor Seed Oil), Rosa Canina (Organic Rosehip Seed Oil), Simmondsia Chinensis (Organic, cold pressed Jojoba Seed Oil), Butyrospermum Parkii Fruit (Unrefined, Organic, Shea Butter), Limnanthes Alba (Organic Meadowfoam Seed Oil), Euphorbia Cerifera(Candelilla Wax), Copernicia Cerifera(Carnauba) Wax, Mica, Iron Oxides, Tocopherol (Vitamin E), Citrus Tangerina (Organic Tangerine Essential Oil)Vegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",4.3,lipstick,lipstick,"['Natural', 'Gluten Free', 'Non-GMO', 'Peanut Free Product', 'Canadian']",2016-10-01T18:24:26.466Z,2017-12-23T20:50:55.081Z,http://makeup-api.herokuapp.com/api/v1/products/55.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/055/original/data?1514062255,"[{'hex_value': '#A16157', 'colour_name': 'Autumn '}, {'hex_value': '#6D333A', 'colour_name': 'Bordeaux Cherry '}, {'hex_value': '#B47965', 'colour_name': 'Caramel '}, {'hex_value': '#df6163', 'colour_name': 'Carnation (Rose) '}, {'hex_value': '#663125', 'colour_name': 'Chocolate Kiss '}, {'hex_value': '#d09172', 'colour_name': 'Grapefruit (Nude) '}, {'hex_value': '#9F455A', 'colour_name': 'Hibiscus '}, {'hex_value': '#94514C', 'colour_name': ""Morden's Blush ""}, {'hex_value': '#B14F5B', 'colour_name': 'Petunia '}, {'hex_value': '#a02d4b', 'colour_name': 'Razzberry (Plum) '}, {'hex_value': '#971D28', 'colour_name': 'Ruby '}, {'hex_value': '#c63e26', 'colour_name': 'Sienna (Burnt Bronze Red) '}, {'hex_value': '#D94072', 'colour_name': 'Strawberry Cream '}, {'hex_value': '#de4b41', 'colour_name': 'Tiger Lily (Bright Coral) '}]"
+54,mineral fusion,Mineral Fusion Lengthening Mascara,19.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b8c71c36c73225905314a6ba0d5b5f6b_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/mineral-fusion-lengthening-mascara_91732.html,https://well.ca,"Natural minerals darken, define and condition lashes in Mineral Fusion Lengthening Mascara formulation. This hypoallergenic mascara applies smoothly, and naturally nourishes and protects to promote maximum lash length, health and fullness. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypoallergenic.Shade Range: Ingredients: Water, Beeswax, Stearic Acid, Copernicia Cerifera (Carnauba) Wax, Synthetic Wax, Butylene Glycol, C18-36 Acid Triglyceride, Hydroxyethylcellulose, Sodium Hydroxide, Lecithin, Polysorbate 20, Sorbitan Laurate, Propylene Glycol Stearate, Propylene Glycol Laurate/Stearate, Phenoxyethanol, Ethylhexylglycerin, Iron Oxides (CI 77499). ",3.4,,mascara,"['Gluten Free', 'Natural']",2016-10-01T18:11:49.193Z,2017-12-23T20:31:53.342Z,http://makeup-api.herokuapp.com/api/v1/products/54.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/054/original/data?1514061113,"[{'hex_value': '#000000', 'colour_name': 'Graphite (Black) '}, {'hex_value': '#452319', 'colour_name': 'Rock (Brown) '}]"
+53,covergirl,CoverGirl Professional Mascara Curved Brush Very Black,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c28f5756cc3f81f36baebfd753207c58_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-professional-mascara_97246.html,https://well.ca,"Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes. The curved brush finds lashes you didn't know you had, for a volumized, long, defined lash look without the clumps or blobs.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersLash volume without clumpsApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",,,mascara,[],2016-10-01T18:11:48.408Z,2017-12-23T20:31:53.214Z,http://makeup-api.herokuapp.com/api/v1/products/53.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/053/original/data?1514061113,[]
+52,covergirl,CoverGirl Professional Mascara Curved Brush Black Brown,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c7fe159f81fff4e0b8269782b20048ac_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-professional-mascara_97245.html,https://well.ca,"Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes. The curved brush finds lashes you didn't know you had, for a volumized, long, defined lash look without the clumps or blobs.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersLash volume without clumpsApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",,,mascara,[],2016-10-01T18:11:46.356Z,2017-12-23T20:31:52.960Z,http://makeup-api.herokuapp.com/api/v1/products/52.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/052/original/data?1514061112,[]
+51,l'oreal,L'Oreal Paris Voluminous Butterfly Midnight Black Mascara,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cd24f2eacba5d03d916a924afaadbee5_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-voluminous-butterfly_96670.html,https://well.ca,"Stretch and extend your lashes like wings! Introducing Voluminous
+Butterfly Mascara, one of L'Oreal's most-exciting mascara innovations, yet.
+Its revolutionary Butterfly Brush™ with asymmetrical lash
+line shape extends and lifts outer corner lashes to give you a
+winged-out effect, instantly volumizing lashes at the roots and
+stretching lashes outward. The unique Cocoon Fibers™ instantly wrap lashes in a soft, delicate veil to create silky, spectacular lashes that flutter.",4.7,,mascara,[],2016-10-01T18:11:45.325Z,2017-12-23T20:50:54.633Z,http://makeup-api.herokuapp.com/api/v1/products/51.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/051/original/data?1514062254,[]
+50,zorah,Zorah Mascara Lengthing,27.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/dba2438dde72fe06c8f7a672b9618b0a_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/zorah-mascara-lengthing_99331.html,https://well.ca,"This lengthening mascara is made with a unique combination of intense black pure mineral pigments and organic Argan oil to perfectly coat and shape lashes. The twin helix brush and its 3D spheres perfectly sculpt each lash with a full 360° coverage.Opthalmologically tested. Suitable for use with contact lenses. Fast drying.Organic cosmetic certified by Ecocert Greenlife:97% of the total ingredients are from natural origin18% of total ingredients are from organic farmingDirections: For a lengthening and curvaceous effect, apply the Lengthening Treatment Mascara at the lash base zigzagging upwards. Repeat with a second layer for intensity.Ingredients: Aqua, Alcohol Denat.**, Cetearyl olivate, Sorbitan olivate, Cetyl Palmitate, Sorbitan Palmitate, Copernicia Cerifera (Carnauba) Wax*, Cera Alba*, Glycerin, Magnesium Silicate, Argania Spinosa Kernel Oil*, Cucurbita Pepo (Pumpkin) Seed Oil*, Aroma, Sodium Phytate, Sodium Citrate, Benzyl Alcohol, Salicylic Acid, Sorbic Acid, Dehydroacetic Acid, Sodium Hydroxide, Xanthan Gum. [+/-(peut contenir/may contain) Iron Oxides](peut contenir/may contain) Iron Oxides]",4.8,,mascara,"['Natural', 'Organic', 'Gluten Free', 'Canadian']",2016-10-01T18:11:43.566Z,2017-12-23T20:50:54.486Z,http://makeup-api.herokuapp.com/api/v1/products/50.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/050/original/data?1514062254,[]
+49,covergirl,CoverGirl LashBlast Fusion Water Resistant Mascara ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/e4bd2eaff5e2b0c9c8c29ecd86d0c7e6_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-lashblast-fusion-water_74846.html,https://well.ca,"CoverGirl LashBlast Fusion Water Resistant Mascara has a fiberstrech lengthening formula and super-volumizing brush that thickens and extends each individual lash for high volume, length and perfect
+ separation rain or shine.Features:Super volumizing and buildable fiber-strength lengtheningThickens and extends the look of your bare lashesWater resistant",4.8,,mascara,[],2016-10-01T18:11:42.574Z,2017-12-23T20:50:54.311Z,http://makeup-api.herokuapp.com/api/v1/products/49.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/049/original/data?1514062254,[]
+48,physicians formula,Physicians Formula Eye Booster Instant Lash Extension Kit in Ultra Black,19.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/16ace93b48cdc67bb76c81eaec10ff45_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/physicians-formula-eye-booster_102681.html,https://well.ca,"Get instant brush on lash extensions with this Physicians Formula Eye Booster Instant Lash Extension Kit. It's a total lash transformation!Features: HypoallergenicParaben & Gluten freeDermatologist approvedOphthalmologist testedDirections: Sweep Lash Boosting Mascara to prep for fibers. Brush on extensions to upper lashes while mascara is still wet to instantly build lashes. Reapply Lash Boosting Mascara to seal and set extensions.Ingredients: Mascara: Water, Beeswax, Iron Oxides, Copernicia Cerifera (Carnauba) Wax, PVP, Cyclopentasiloxane, Glyceryl Stearate, Propylene Glycol Stearate SE, Cyclohexasiloxane, Stearic Acid, Triethanolamine, Oleic Acid, Polybutene, Phenoxyethanol, Myristoyl Pentapeptide-17, Glycerin, Panthenol, Magnesium Aluminum Silicate, Cellulose Gum, Tocopheryl Acetate, Simethicone, Tetrasodium EDTA. Extensions: Cellulose, Panthenol, Cynara Scolymus (Artichoke) Leaf Extract, Ocimum Basilicum (Basil) Leaf Extract, Tocopherol.Experience a total lash transformationExperience a total lash transformati",4.6,,mascara,['Gluten Free'],2016-10-01T18:11:41.267Z,2017-12-23T20:50:54.214Z,http://makeup-api.herokuapp.com/api/v1/products/48.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/048/original/data?1514062254,[]
+47,l'oreal,L'Oreal Paris Voluminous Million Lashes Excess Mascara ,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/47b1c14f64fe1e4b6ad46fcd67a34012_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-voluminous-million_86096.html,https://well.ca,"L’Oréal Paris introduces
+Voluminous Million Lashes Excess, which combines bold volume with clean
+definition for an excessively dramatic lash look.The legendary
+Millionizer brush is bigger than ever to separate and build each lash
+evenly from root to tip. The mascara features a built-in, anti-clump
+wiper that removes surplus mascara for a clean and impactful effect. Plus, the ultra black formula amplifies each individual lash for a dramatic lash effect.",4.5,,mascara,[],2016-10-01T18:11:39.675Z,2017-12-23T20:50:54.108Z,http://makeup-api.herokuapp.com/api/v1/products/47.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/047/original/data?1514062254,[]
+46,covergirl,CoverGirl LastBlast Clump Crusher Water Resistant Mascara ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b02f002545c5dc18be53297faaf04b7a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-lastblast-clump-crusher_74595.html,https://well.ca,"A breakthrough in no-clump mascara! Get 200% more volume and zero
+clumps. Features an innovative double-sided brush with lash-loading and
+clump-combing zones to crush clumps.Features: 200% more volume, zero clumpsInnovative curved brushSuper-volumized, beautifully separated lashesWater resistant",5.0,,mascara,[],2016-10-01T18:11:38.634Z,2017-12-23T20:50:54.935Z,http://makeup-api.herokuapp.com/api/v1/products/46.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/046/original/data?1514062254,[]
+45,almay,Almay Intense i-Color Volumizing Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/65c2bc9cc03b915be08e68b8e4acb919_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-intense-i-color-volumizing_84475.html,https://well.ca,"Take your unique eye color to new limits with double the volume*, double the
+impact. Expertly coordinated shades with eye-brightening crystals create
+ multi-dimensional amplification. The lash enhancing brush with
+volume-boosting grooves finds and flaunts every lash for big bold volume
+ that won’t smudge or flake. *Achieved in one coat using 25 strokes ",4.3,,mascara,[],2016-10-01T18:11:37.939Z,2017-12-23T20:50:53.880Z,http://makeup-api.herokuapp.com/api/v1/products/45.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/045/original/data?1514062253,"[{'hex_value': '#18191D', 'colour_name': 'Midnight for hazel eyes '}, {'hex_value': '#413736', 'colour_name': 'Mocha for green eyes '}, {'hex_value': '#3D303E', 'colour_name': 'Plum for brown eyes '}, {'hex_value': '#3B4356', 'colour_name': 'Sapphire for blue eyes '}]"
+44,covergirl,CoverGirl LashBlast Full Lash Bloom Mascara Very Black (800),9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/bd505b8626119f31924057a086e542bf_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-lashblast-full-lash-bloom_103273.html,https://well.ca,"With CoverGirl Full Lash Bloom Mascara, get exceptional lash fullness that's soft - even to the touch. With CoverGirl's petal-shaped brush and mousse formula with natural beeswax, lashes are never stiff or brittle. Perfect for everyday wear, Full Lash Bloom Mascara is also safe for contact lens wearers and is ophthalmologically tested. So bring out every last lash, and embrace you in full bloom!Features: Gives soft, full lashes that are never stiff or brittle.Petal shaped brush and soft, mousse formula, with natural beeswax, brings out every lashOphthalmologically tested and suitable for contact lens wearersIngredients: Water/Eau, Beeswax/Cire D'Abeille, Cetearyl Alcohol, Shellac, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, Ceteareth-20, Glycerin, Tapioca Starch, Lecithin, Ethylhexylglycerin, Alcohol Denat., Phenoxyethanol, Benzyl Alcohol, Xanthan Gum, Ammonium Hydroxide, Sodium Gluconate May Contain: Titanium Dioxide, Iron Oxides",4.0,,mascara,[],2016-10-01T18:11:36.863Z,2017-12-23T20:50:53.772Z,http://makeup-api.herokuapp.com/api/v1/products/44.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/044/original/data?1514062253,[]
+43,covergirl,CoverGirl Professional Super Thick Lash Mascara Very Black,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cb7bdcebdc593ba34c0f40b41a3ff44c_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-professional-super-thick_97251.html,https://well.ca,"Get beautiful, thick, high-impact lashes with COVERGIRL professional super thick lash mascara! The brush separates, defines, and reaches those little lashes so you get bold, defined lashes so easy, so beautiful!Features:Bold, defined volumeSeparates and defines lashesLasts all dayApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",5.0,,mascara,[],2016-10-01T18:11:36.172Z,2017-12-23T20:50:53.675Z,http://makeup-api.herokuapp.com/api/v1/products/43.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/043/original/data?1514062253,[]
+42,maybelline,Maybelline Volum'Express Falsies Big Eyes Mascara,12.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a28e1387642c86f2d2e0cf446b2137aa_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-volumexpress-falsies-big_78175.html,https://well.ca,"2 brushes. 2x more impact!Now get bigger eyes with 360 degrees of false
+lash glam volume! Upper lashes get over-the-top glam with the upper
+brush, while the lower brush grabs every tiny lower lash for a full
+circle effect.For best results: Apply the Upper Brush against the top lid lashes and sweep from
+ root to tip until a clean, voluminous look is achieved, followed by the
+ lower lash line using the lower Micro Brush. Do not let dry between
+coats. Removes easily with soap and water or with Maybelline® Clean
+Express!™ Classic Eye Makeup Remover.
+",4.5,,mascara,[],2016-10-01T18:11:34.910Z,2017-12-23T20:50:53.492Z,http://makeup-api.herokuapp.com/api/v1/products/42.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/042/original/open-uri20171223-4-b55ku9?1514062253,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}]"
+41,l'oreal,L'Oreal Paris Voluminous Butterfly Mascara ,13.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/3f10d95aaf893f1f0cfdd62b803f4212_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-voluminous-butterfly_86375.html,https://well.ca,"Stretch and extend your lashes like wings! Introducing Voluminous
+Butterfly Mascara, one of L'Oreal's most-exciting mascara innovations, yet.
+Its revolutionary Butterfly Brush™ with asymmetrical lash
+line shape extends and lifts outer corner lashes to give you a
+winged-out effect, instantly volumizing lashes at the roots and
+stretching lashes outward. The unique Cocoon Fibers™ instantly wrap lashes in a soft, delicate veil to create silky, spectacular lashes that flutter.",,,mascara,[],2016-10-01T18:11:33.681Z,2017-12-23T20:50:53.374Z,http://makeup-api.herokuapp.com/api/v1/products/41.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/041/original/data?1514062253,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#231F20', 'colour_name': 'Black '}, {'hex_value': '#4D2C00', 'colour_name': 'Black Brown '}]"
+40,covergirl,CoverGirl Professional Waterproof Mascara Very Black,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/d44d5338e9dfa2b5234a02d25af64a26_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-professional-waterproof_97253.html,https://well.ca,"Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersWaterproofApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",,,mascara,[],2016-10-01T18:11:32.686Z,2017-12-23T20:50:53.262Z,http://makeup-api.herokuapp.com/api/v1/products/40.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/040/original/data?1514062253,[]
+39,physicians formula,Physicians Formula Organic Wear CC Curl + Care Mascara ,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/91995140b7749badeb17c41a7e035354_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear-cc_90023.html,https://well.ca,The 1st ever 100% natural mascara with 70% organic ingredients combines the benefits of curl and care for eyelash curler results without the risk of lash loss. Innovative formula features Physicians Formula's proprietary 100% Natural Origin CurlBooster™ Technology for 2 levels of CC Performance: Curl & Volumize Lashes Condition & Nourish LashesHypoallergenic. Fragrance Free. Gluten Free. Opthalmologist Approved. 100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100% Free of Parabens. 100% Free of GMO's (Genetically Modified Organisms). 100% Free of Synthetic Colors. ,3.2,,mascara,"['Natural', 'Gluten Free']",2016-10-01T18:11:31.316Z,2017-12-23T20:50:53.163Z,http://makeup-api.herokuapp.com/api/v1/products/39.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/039/original/data?1514062253,"[{'hex_value': '#1B1B1B', 'colour_name': 'Black '}, {'hex_value': '#000000', 'colour_name': 'Ultra Black '}]"
+38,marcelle,Marcelle Ultimate Lash Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6f521dc72d362855a605105854a6a54f_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/marcelle-ultimate-lash-mascara_100275.html,https://well.ca,"Fabulously full lashes for star-like appeal.Marcelle Ultimate Lash Mascara is all about transformation, from thin to plump, thick
+and full lashes. Specially designed wand is easy to use and applies just
+ the right amount of mascara for maximum lash volume that is free of
+clumps and mess. Formulated with proteins and revitalizing ingredients
+to give lashes the royal treatment and last a long, long time without
+flaking. Strong, full lashes are guaranteed, plus it's hypoallergenic
+and perfume-free so it's perfect for everyone.",4.5,,mascara,"['Canadian', 'Gluten Free']",2016-10-01T18:11:30.120Z,2017-12-23T20:50:53.038Z,http://makeup-api.herokuapp.com/api/v1/products/38.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/038/original/data?1514062252,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#403426', 'colour_name': 'Dark Brown '}]"
+37,e.l.f.,e.l.f. Studio Lengthening & Volumizing Mascara,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8797938435b2e7f995aa632d5f2b2ba2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-lengthening_93445.html,https://well.ca,"Achieve thicker, fuller, and longer lashes that are beautiful and
+natural with e.l.f. Studio Lengthening & Volumizing Mascara. The enlarged brush coats your lashes evenly for an enhanced
+appeal. The unique formula is clump free and quick drying so you can
+have color that stays on all day with no smudging and no flaking.Ingredients: Aqua(Water), Caprylic/Caprictri Glycerides, Cera Carnauba (Carnauba)
+Wax, Synthetic Beeswax, Styrene/Acrylates/Ammonium Methacrylate
+Copolymer, Stearic Acid, Cetyl Alcohol, Glyceryl,Stearate SE, PVP,
+Triethanolamine, Triacontanyl PVP, Hydroxyethyl Cellulose, Benzyl
+Alcohol, Methylchloroisothiazolinone, Methylisothiazolinone
+
+May Contain: Iron Oxides(CI 77891, CI 77892, CI 77899)
+",4.0,,mascara,['Vegan'],2016-10-01T18:11:29.378Z,2017-12-23T20:50:52.867Z,http://makeup-api.herokuapp.com/api/v1/products/37.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/037/original/data?1514062252,[]
+36,wet n wild,Wet n Wild Mega Protein Mascara,3.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/8b5c28e396504d8fb54c91c791f36749_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/wet-n-wild-mega-protein-mascara_82250.html,https://well.ca,"Wet n Wild Mega Protein Mascara is a nourishing mascara conditions lashes with soy and wheat proteins and acai oil for healthier, fuller lashes.",5.0,,mascara,[],2016-10-01T18:11:28.742Z,2017-12-23T20:50:52.703Z,http://makeup-api.herokuapp.com/api/v1/products/36.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/036/original/data?1514062252,[]
+35,covergirl,CoverGirl Lashblast Volume Blasting Waterproof Mascara,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/527f52aaaba663227d70de7c0a34ff80_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-lashblast-volume-blasting_74927.html,https://well.ca,"Get a blast of lush, volumized lashes! LashBlast’s patented
+volume-boosting formula and patent-pending brush are designed to max-out
+ each and every lash, leaving you with the ultimate big lash look.Features: Instant volume and fullnessSmudge and smear-proofHypoallergenic and suitable for contact lens wearers",5.0,,mascara,[],2016-10-01T18:11:25.863Z,2017-12-23T20:31:52.669Z,http://makeup-api.herokuapp.com/api/v1/products/35.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/035/original/data?1514061112,[]
+34,covergirl,CoverGirl LashBlast Fusion Mascara ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fcd915ee80b8b9cfaa71225020b8df3b_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-lashblast-fusion-mascara_74817.html,https://well.ca,"Experience COVERGIRL's first ever volume + length mascara!The
+fiberstretch formula and oversized brush make every little lash bigger,
+fuller, longer -looking and more dramatic.*
+
+ *vs bare lashesFeatures: Super-Volumizing + Buildable fiber-strength lengtheningThickens and extends the look of your natural lashes",4.8,,mascara,[],2016-10-01T18:11:24.749Z,2017-12-23T20:31:52.532Z,http://makeup-api.herokuapp.com/api/v1/products/34.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/034/original/data?1514061112,[]
+33,covergirl,CoverGirl Professional Natural Lash Mascara Clear,6.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/fa655a2751adc3d38050d08325f2d97f_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-professional-natural-lash_97249.html,https://well.ca,"For natural beautiful looking lashes! The CoverGirl clear gel formula and curved brush separates lashes while conditioning. It helps tame unruly brows too!Features:Natural looking lashesBeautifully tamed browsLasts all dayApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",4.0,,mascara,[],2016-10-01T18:11:23.740Z,2017-12-23T20:31:52.411Z,http://makeup-api.herokuapp.com/api/v1/products/33.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/033/original/data?1514061112,[]
+32,maybelline,Maybelline Define-A-Lash Lengthening & Defining Mascara,10.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/cf9136ade1dd304b8cb81deb4b87e333_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-define-a-lash-lengthening_3744.html,https://well.ca,"Define-A-Lash Lengthening & Defining Mascara is a zero-clump mascara that creates stunning length and clean definition. The flexible brush is shaped to the lash to elongate and define lashes, one by one. The built-in wiper contours brush to remove excess formula, ensuring clean deposit on lashes. There is no smudging, smearing or flaking, and the smooth, lightweight formula feels comfortable on lashes.Allergy tested, ophthalmologist tested and contact lens safe.
+
+",4.4,,mascara,[],2016-10-01T18:11:22.926Z,2017-12-23T20:31:52.284Z,http://makeup-api.herokuapp.com/api/v1/products/32.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/032/original/data?1514061112,"[{'hex_value': '#000000', 'colour_name': 'Very Black '}]"
+31,covergirl,CoverGirl LastBlast Clump Crusher Mascara ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/df2f212e8449edcaff4876f592c4311e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/covergirl-lastblast-clump-crusher_74593.html,https://well.ca,"A breakthrough in no-clump mascara! Get 200% more volume and zero
+clumps. Features an innovative double-sided brush with lash-loading and
+clump-combing zones to crush clumps.Features: 200% more volume, zero clumpsInnovative curved brushSuper-volumized, beautifully separated lashes",4.5,,mascara,[],2016-10-01T18:11:21.909Z,2017-12-23T20:31:52.154Z,http://makeup-api.herokuapp.com/api/v1/products/31.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/031/original/data?1514061112,[]
+30,almay,Almay One Coat Get Up & Grow Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c4d0fba49172b419bc64cd92d31544c2_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-one-coat-get-up-grow-mascara_30881.html,https://well.ca,"Almay One Coat Get Up & Grow Mascara instantly lengthens and strengthens lashes every time you use it.Features:
+Anti-breakage pro-vitamin formula defends against damage so lashes continue to grow their longest
+Unique brush shape fits eye contours perfectly so that you reach every last lash in just one coat
+Clump free
+Extra gentle formula is safe even for sensitive eyes
+
+Hypoallergenic. Ophthalmologist Tested.",4.3,,mascara,[],2016-10-01T18:11:20.736Z,2017-12-23T20:31:51.944Z,http://makeup-api.herokuapp.com/api/v1/products/30.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/030/original/data?1514061111,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#262633', 'colour_name': 'Black '}, {'hex_value': '#413025', 'colour_name': 'Black Brown '}]"
+29,maybelline,Maybelline Great Lash - Clear,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6cce75ce02a6694e1c89f7d5a68c8174_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-great-lash-clear_3752.html,https://well.ca,"Great Lash Clear Washable Mascara is a crystal clear formula that gives a softer, fuller look.The gentle brush separates lashes into a perfect fan. It contains panthenol to condition lashes, glycerin for a soft feel. This is great for shaping and setting brows. Contact lens safe, opthalmologist tested.
+ ",3.8,,mascara,[],2016-10-01T18:11:20.042Z,2017-12-23T20:31:51.787Z,http://makeup-api.herokuapp.com/api/v1/products/29.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/029/original/open-uri20171223-4-14f14ix?1514061111,[]
+28,physicians formula,Physicians Formula Organic Wear Jumbo Lash Mascara,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/f0aa3e9c67743493c5caf4ecccccf57a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear_58516.html,https://well.ca,"Physicians Formula Organic Wear Jumbo Lash Mascara gives you 100% Dramatic Volume & Glamour. Additional Features: 100% of the Total Ingredients are from Natural Origin. 47% of the Total Ingredients are from Organic Farming. OrganiSoy Moisturizes and helps nourish lashes. Eco-Olive a natural antioxidant, shields lashes from harsh environmental aggressors. Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for
+added volume. Can easily be washed off with soap and water or removed
+with Physicians Formula Eye Makeup Remover Pads or Lotions.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water.* Glycerin. Iron Oxide.
+Microcrystalline Cellulose. Glyceryl Stearate. Water. Beeswax.* Jojoba
+Esters. Tapioca Starch.* Copernicia Cerifera (Carnauba) Wax.* Stearic
+Acid. Glyceryl Caprylate. Aloe Barbadensis Leaf Juice.* Cellulose Gum.
+Cucumis Sativus (Cucumber) Fruit Extract.* Glycine Soya (Soybean) Oil.*
+Hydrolyzed Oryza Sativa (Rice) Protein. Leuconostoc/Radish Root Ferment
+Filtrate. Magnesium Aluminum Silicate. Olea Europaea (Olive) Leaf
+Extract.* May Contain: Titanium Dioxide.Hypoallergenic. Fragrance free. Opthamologist approved.",3.1,,mascara,"['Natural', 'Gluten Free']",2016-10-01T18:11:18.662Z,2017-12-23T20:31:51.643Z,http://makeup-api.herokuapp.com/api/v1/products/28.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/028/original/open-uri20171223-4-11qf6jz?1514061111,"[{'hex_value': '#000000', 'colour_name': 'Ultra Black Organics '}, {'hex_value': '#282828', 'colour_name': 'Black Organics '}]"
+27,dr. hauschka,Dr. Hauschka Mascara,33.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/85c6b509ae9d55d4cf6ab9208ea98aee_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/dr-hauschka-mascara_34274.html,https://well.ca,"Mascara creates fuller lashes that accentuate your eyes. Medicinal extracts of eyebright, black tea and neem leaves have a soothing effect on the sensitive eye area while rose wax and jojoba oil protect and fortify each individual eyelash. Ophthalmologically and dermatologically tested.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients (Black, Blue):Ingredients Water (Aqua), Alcohol, Sorbitol, Ricinus Communis (Castor) Seed Oil, Cetearyl Alcohol, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hectorite, Hydrogenated Jojoba Oil, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Xanthan Gum, Lysolecithin, Silica, Iron Oxides (CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007). *component of natural essential oilsIngredients (Brown):Water (Aqua), Alcohol, Sorbitol, Ricinus Communis (Castor) Seed Oil, Cetearyl Alcohol, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hectorite, Hydrogenated Jojoba Oil, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Xanthan Gum, Lysolecithin, Maltodextrin, Silica, Carmine (CI 75470), Iron Oxides (CI 7749¹, CI 77492, CI 77499). *component of natural essential oils",4.3,,mascara,['Natural'],2016-10-01T18:11:17.326Z,2017-12-23T20:31:51.471Z,http://makeup-api.herokuapp.com/api/v1/products/27.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/027/original/data?1514061111,"[{'hex_value': '#1B2D2D', 'colour_name': 'Black '}, {'hex_value': '#26364C', 'colour_name': 'Blue '}, {'hex_value': '#202217', 'colour_name': 'Brown '}]"
+26,e.l.f.,e.l.f. Studio Waterproof Lengthening & Volumizing Mascara,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/90787a47b829c5d11e1e4f001e68d90d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-waterproof-lengthening_93449.html,https://well.ca,"Achieve thicker, fuller, and longer lashes that are beautiful and
+natural with e.l.f. Studio Waterproof Lengthening & Volumizing Mascara. The enlarged brush coats your lashes evenly for an enhanced
+appeal. The unique formula is clump free and quick drying so you can
+have color that stays on all day with no smudging and no flaking.
+Waterproof, tear-proof and sweat proof for a look that lasts against all
+ odds.Ingredients: Aqua (Water), Caprylic/Caprictri Glycerides, Cera Carnauba (Carnauba)
+Wax, Synthetic Beeswax
+Styrene/Acrylates/Ammonium Methacrylate Copolymer, Stearic Acid, Cetyl
+Alcohol, Glyceryl Stearate SE
+PVP, Triethanolamine, Triacontanyl PVP, Hydroxyethyl Cellulose, Benzyl
+Alcohol, Methylchloroisothiazolinone, Methylisothiazolinone. May Contain: Iron Oxides(CI 77491, CI 77492, CI 77499)
+",4.8,,mascara,['Vegan'],2016-10-01T18:11:16.641Z,2017-12-23T20:31:51.310Z,http://makeup-api.herokuapp.com/api/v1/products/26.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/026/original/data?1514061111,[]
+25,l'oreal,L'Oreal Paris Extra Volume Collagen Mascara,13.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7bcefaf1f12f609b2d3d1df2cfbcf6db_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-extra-volume-collagen_12581.html,https://well.ca,L'Oreal's biggest volume builder! Introducing the latest innovation in mascara technology--Extra Volume Collagen Mascara. It's made with hydra-collagen and enhances the thickness of your lashes for up to 12x more impact without any clumps. Our patented brush is 50% bigger so it builds that incredible volume fast. Your lashes will build extra body and extra impact in just one sweep.,4.8,,mascara,[],2016-10-01T18:11:15.531Z,2017-12-23T20:31:51.184Z,http://makeup-api.herokuapp.com/api/v1/products/25.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/025/original/data?1514061111,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}]"
+24,almay,Almay One Coat Thickening Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a49009aa8bdc3aab2b07a78fbfe0bcb8_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/almay-one-coat-thickening-mascara_17457.html,https://well.ca,"Almay One Coat Thickening Mascara gives you up to 100% thicker lashes in one smooth, even coat. This volumizing formula builds lashes double thick in one quick, clump-free application. Nourishing formula is infused with aloe and vitamin B5 to help keep lashes conditioned and silky. Extra gentle, non irritating formula.Hypoallergenic. Ophthalmologist tested.",4.1,,mascara,[],2016-10-01T18:11:14.234Z,2017-12-23T20:31:51.052Z,http://makeup-api.herokuapp.com/api/v1/products/24.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/024/original/data?1514061111,"[{'hex_value': '#262633', 'colour_name': 'Black '}, {'hex_value': '#413025', 'colour_name': 'Black Brown '}]"
+23,maybelline,Maybelline Great Lash Big Mascara,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0795abd7feaf855f88055e181652d65a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-great-lash-big-mascara_15818.html,https://well.ca,"Live Big! Great Lash Big has a Bigger Brush for Great Big Live-It-Up Lashes!
+
+The Great Big Brush provides a bigger, bolder lash effect
+Great buildable formula still conditions as it thickens with even greater intensity
+No clumps or globs
+",4.0,,mascara,[],2016-10-01T18:11:13.293Z,2017-12-23T20:31:49.724Z,http://makeup-api.herokuapp.com/api/v1/products/23.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/023/original/data?1514061109,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#120C0A', 'colour_name': 'Brownish Black '}, {'hex_value': '#0E0F11', 'colour_name': 'Very Black '}]"
+22,e.l.f.,e.l.f. Studio Mineral Infused Mascara,4.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/be704396ee7b24ec4783787df9be1eeb_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/elf-studio-mineral-infused_93447.html,https://well.ca,"e.l.f. Studio Mineral Infused Mascara creates fuller, healthier looking
+lashes. Enhance lashes for a naturally thicker and more volumized look.
+ The long-wear formula and unique silicone brush creates a clump free
+and defined application for gorgeous lashes all day.Ingredients: Aqua (Water), Caprylic/Capric Triglyceride, Cera Carnauba (Carnauba)
+Wax, Synthetic Beeswax, Styrene/Acrylates/Ammonium Methacrylate
+Copolymer, Stearic Acid, Cetyl Alcohol, Glyceryl Stearate SE, PVP,
+Triethanolamine , Triacontanyl PVP, Hydroxyethyl Cellulose, Caprylyl
+Glycol, Phenoxyethanol, Potassium Sorbate
+May Contain: Iron Oxides (CI 77491 , CI 77492 , CI 77499), Manganese
+Violet (CI 77742)
+
+",4.3,,mascara,['Vegan'],2016-10-01T18:11:11.865Z,2017-12-23T20:31:48.648Z,http://makeup-api.herokuapp.com/api/v1/products/22.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/022/original/data?1514061108,[]
+21,,Earth Lab Raw Mascara,24.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/823cecb5e0d139ff5a98c253aa68c876_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/earth-lab-raw-mascara_78795.html,https://well.ca,"This 100% natural, botanical based formula glides on effortlessly. You'll enjoy
+the silky smooth application which easily separates lashes and the best part - No Clumping, No Flaking, No Smudging, No Toxic Chemicals and No Parabens!Ingredients: Water/Aqua, Natural Beeswax, Copernicia Cerifera (Carnauba) Wax,
+Lecithin, Glyceryl Stearate, Glycerin, Xanthan Gum, Celluloses, Carthamus
+Tinctorius (Safflower) Seed Oil, Aloe Barbadensis Leaf Extract, Jojoba (Simmondsia
+Chinensis) Oil, Tocopherol, Chamomilla Recutita (Matricaria) Flower Extract,
+Rosmarinus Officinalis (Rosemary) Leaf Extract, Cucumis Sativus (Cucumber) Fruit
+Extract, Phenoxyethanol, Silica, Mica, Iron OxidesRaw Mascara guaranteed 12 months sealed and expires within 3 months of opening.For usage tips for Earth Lab Raw Mascara read our blog post. ",4.1,,mascara,"['Natural', 'Canadian']",2016-10-01T18:11:10.938Z,2017-12-23T20:31:49.596Z,http://makeup-api.herokuapp.com/api/v1/products/21.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/021/original/data?1514061109,[]
+20,maybelline,Maybelline Great Lash Mascara,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/6b4d354890177a73b4d6630d723c2f21_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-great-lash-mascara_3735.html,https://well.ca,"Great Lash Waterproof Mascara conditions as it thickens lashes. The lash-doubling formula glides on smoothly to build great-looking smudge-proof lashes. The lash-building brush makes it easy to get a full lash look without clumps. Hypoallergenic and contact lens safe.
+Allure 2008 Reader's Choice Award Winner for drugstore mascara.
+",4.2,,mascara,[],2016-10-01T18:11:09.921Z,2017-12-23T20:31:50.950Z,http://makeup-api.herokuapp.com/api/v1/products/20.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/020/original/data?1514061110,"[{'hex_value': '#120C0A', 'colour_name': 'Brownish Black '}, {'hex_value': '#0E0F11', 'colour_name': 'Very Black '}]"
+19,l'oreal,L'Oreal Paris Double Extend Beauty Tubes,14.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/45fea1eb913d55d6e1586ea66c1c82a0_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-double-extend-beauty_9193.html,https://well.ca,"Get the look of salon lash extensions with the new Double Extend Beauty Tubes Mascara! This new lash extension effect mascara visibly lengthens your lashes up to an astonishing 80%.Step 1: Ultra nourishing base coat infused with Ceramide R and D-Panthenol protects and strengthens lashes creating the perfect base for tube application.Step 2: Ultra-lengthening tube top coat sets to form lash-extending beauty tubes that visibly lengthen lashes to amazing new heights. Beauty tubes will not run, clump, flake or smudge and will stay on all-day.Step 3: Beauty tubes remove easily with just warm water – no makeup remover or rubbing required!
+
+Clump-free length.
+Smudge-proof.
+Flake-proof.
+Long wear hold.
+Ophthalmologist and allergy tested.
+Suitable for sensitive eyes and contact lens wearers.
+Removes easily with plenty of warm water.
+Fragrance-free.
+
+ ",4.6,,mascara,[],2016-10-01T18:11:08.654Z,2017-12-23T20:31:50.835Z,http://makeup-api.herokuapp.com/api/v1/products/19.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/019/original/data?1514061110,"[{'hex_value': '#231F20', 'colour_name': 'Blackest Black '}]"
+18,l'oreal,L'Oreal Paris Telescopic Mascara,13.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/a5add7c57e2a69456749c0e8263175f7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-telescopic-mascara_4410.html,https://well.ca,"Want longer, more defined lashes in a single sweep?L'Oreal Paris introduces amazing new technology that lengthens lashes to the extreme and intensifies them at their base. It will change the way women think about lengthening mascara.It's the 1st spectacular stretch-effect mascara from L'Oreal Paris.The High-Precision Flexible Brush stretches the formula towards infinity for up to 60% longer lashes.",4.7,,mascara,[],2016-10-01T18:11:07.999Z,2017-12-23T20:31:50.715Z,http://makeup-api.herokuapp.com/api/v1/products/18.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/018/original/data?1514061110,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}]"
+17,suncoat,Suncoat Sugar-Based Mascara,16.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/04362753156bc96b10e1a3f16d585ff0_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/suncoat-sugar-based-mascara_10692.html,https://well.ca,"This sugar-based natural mascara is another unique product from Suncoat. Made with natural sugar-based biopolymer, kaolin clay, earth pigments and enriched with Vitamin E, it naturally builds lash volume and length! It is a superior alternative for your sensitive eyes and for our environment!Features: Free of PVP (polyvinyl pyrrolidone polymer), acrylic copolymer, VA (vinyl acetate) polymerFree of fragrance, parabens, alcohol and glycolKind to sensitive eyesNaturally builds lash volume and lengthBiodegradable ingredientsVeganNot tested on animals Although NOT waterproof, this natural mascara has GREAT wear-ability. It resists smudging, but washes off easily with regular skin cleanser and water.Ingredients: Aqua (water), kaolin clay, vegetable glycerin, hydrolyzed Zee mays (corn) starch (natural sugar-based biopolymer), lecithin, Citrus grandis (grapefruit) seed extract, tocopherol (vitamin E), citric acid, pigments.",3.4,,mascara,"['Natural', 'Vegan', 'Canadian']",2016-10-01T18:11:07.137Z,2017-12-23T20:31:50.499Z,http://makeup-api.herokuapp.com/api/v1/products/17.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/017/original/data?1514061110,[]
+16,pacifica,Pacifica Aquarian Gaze Water-Resistant Mascara,21.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5e9ec049ea72f7ec853bcdb996201dd7_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-aquarian-gaze_93483.html,https://well.ca,"This Pacifica Aquarian Gaze Water-Resistant and long wearing is a deep blue super lush natural mineral mascara. Amazing lengthening brush (100%
+vegan) makes your lashes insanely long and gorgeous as it separates to
+build volume. It is nourishing formula is infused with coconut oil, kelp
+ extract and vitamin B to hydrate each lash as it lengthens and
+strengthens.Features:Coconut Oil- Studies have shown coconut oil to be an excellent hair strengthener and moisturizer that can reduce breakagePanthenol (Vitamin B)- Helps strengthen and nourish hairKelp Extract- Moisturize and condition lashesView IngredientsFormulated without:
+ Animal ingredients (including carmine, beeswax and lanolin), animal
+testing. FD&C colors, mineral oil, parabens, phthalates, petroleum,
+propylene glycol, SLS, gluten, peanut oil and other ingredients you
+don’t want on your skin.Ingredients: Water (Aqua),
+Copernicia cerifera (Carnauba) Wax (thickener), Euphorbia cerifera
+(Candelilla) Wax (thickener), Acrylates Crosspolymer, Butylene Glycol,
+Stearic Acid, Glyceryl Stearate, Polyisobutene, Phenoxyethanol,
+Hydroxyethylcellulose Sodium Hydroxide, Caprylyl Glycol,
+Ethylhexylglycerin, Steareth-21, Cocos Nucifera (coconut) Oil, Panthenol
+ (vitamin B), macrocystis pyrifera (kelp) extract, Sodium
+Dehydroacetate, Disodium EDTA, Hexylene Glycol, Iron Oxides CI 77491,
+77492, CI 77499. ",4.8,,mascara,"['Natural', 'Vegan']",2016-10-01T18:11:04.325Z,2017-12-23T21:08:53.407Z,http://makeup-api.herokuapp.com/api/v1/products/16.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/016/original/data?1514063333,[]
+15,physicians formula,Physicians Formula Organic Wear 100% Natural Origin Mascara,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/78e3d20b744ec40691dd7357c9db6dd3_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear-100_58518.html,https://well.ca,"Physicians Formula Organic Wear 100% Natural Origin Mascara's revolutionary 100% Natural Origin formula contains the purest
+ingredients and provides 5x Lash Boosting for lash length, volume &
+definition naturally. 100% Recyclable Eco-Brush defines each lash with ultra-soft plastic bristles. 100% Free of Harsh Chemicals, Synthetic Preservatives, Parabens, Clumping, Smudging, Flaking, Fibers & Dyes.Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for added volume.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water*, Glycerin,
+Iron Oxide, Microcrystalline Cellulose, Glyceryl Stearate, Water,
+Beeswax*, Jojoba Esters, Tapioca Starch*, Copernicia Cerifera
+(Carnauba) Wax*, Stearic Acid, Glyceryl Caprylate, Aloe Barbadensis Leaf
+ Juice*, Cellulose Gum, Cucumis Sativus (Cucumber) Fruit Extract*,
+Glycine Soya (Soybean) Oil*, Hydrolyzed Oryza Sativa (Rice) Protein,
+Leuconostoc/Radish Root Ferment Filtrate, Magnesium Aluminum Silicate,
+Olea Europaea (Olive) Leaf Extract*. May Contain: Titanium Dioxide
+*Produced from Organic Farming.Hypoallergenic. Safe for Sensitive Eyes and Contact Lens Wearers.",4.0,,mascara,"['Natural', 'Gluten Free']",2016-10-01T18:11:03.194Z,2017-12-23T20:31:49.843Z,http://makeup-api.herokuapp.com/api/v1/products/15.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/015/original/data?1514061109,"[{'hex_value': '#000000', 'colour_name': 'Ultra Black Organics (1062C) '}, {'hex_value': '#282828', 'colour_name': 'Black Organics (1063C) '}]"
+14,maybelline,Maybelline Volum' Express Colossal Mascara,9.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/5d6e0d96f6dedbc3aadd88d9403cb26e_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-volum-express-colossal_7663.html,https://well.ca,"Why You'll Love It
+
+Creates 9X the volume, instantly.
+Patented MegaBrush + Collagen Formula plump lashes one by one
+Dramatic Volume with no clumps
+Washable
+",4.5,,mascara,[],2016-10-01T18:11:01.516Z,2017-12-23T20:31:48.510Z,http://makeup-api.herokuapp.com/api/v1/products/14.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/014/original/data?1514061108,"[{'hex_value': '#0D090A', 'colour_name': 'Classic Black '}, {'hex_value': '#000000', 'colour_name': 'Glam Black '}]"
+13,l'oreal,L'Oreal Paris Voluminous Volume Building Mascara,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/c9288fc106afdf3f7039a5128e0f621d_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-voluminous-volume_4415.html,https://well.ca,"4X Fuller Lashes
+
+
+Dramatic Volume Effect
+
+
+Separates & Builds Every Lash
+
+
+Patented Volume Maximizing Brush
+L'Oreal presents Voluminous Volume Building Mascara. Uniquely formulated to resist clumping, soften lashes and build lashes to 4X their natural thickness.
+
+
+Unique maximizing formula quickly thickens and builds lashes in a single application for a full and dramatic lash look.
+
+
+Patented Volume Maximizing Brush thickens lashes evenly, smoothly leaving them soft with virtually no flakes, smudges or clumps.
+
+
+Voluminous with Panthenol and Ceramide-R protects and conditions lashes leaving them supple and soft to the touch, resisting clumping and flaking.
+
+
+Opththalmologist and allergy tested.
+
+
+Suitable for sensitive eyes and contact lens wearers.
+
+
+Clump-resistant.
+
+
+Fragrance-free.
+
+
+All day wear.
+
+",2.5,,mascara,[],2016-10-01T18:11:00.359Z,2017-12-23T20:31:48.395Z,http://makeup-api.herokuapp.com/api/v1/products/13.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/013/original/data?1514061108,"[{'hex_value': '#262626', 'colour_name': 'Black '}, {'hex_value': '#000000', 'colour_name': 'Carbon Black '}]"
+12,maybelline,Maybelline Illegal Length Fiber Extensions Mascara,11.49,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/086bd6bba51f630f60511cdc24c68096_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-illegal-length-fiber_84357.html,https://well.ca,"Build 4mm of measurable extensions! Features: Fiber-fix brush has 6 different contact points with each lash for optimal fiber placementBreakthrough formula contains fibers up to 4mm in lengthSealing formula stretches lashes and seals fibers to lashesWashable, also available in waterproof formula
+For Best Results: Extend lashes upward with Fiber-Fix brush, from root to tip.
+Only a few strokes necessary. For best results, do not let dry between
+coats. Removes easily with soap and water or Maybelline® Expert Eyes®
+100% Oil-Free Eye Makeup Remover.
+",4.0,,mascara,[],2016-10-01T18:10:59.587Z,2017-12-23T20:31:48.155Z,http://makeup-api.herokuapp.com/api/v1/products/12.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/012/original/data?1514061108,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}]"
+11,maybelline,Maybelline Volum' Express The Rocket Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/0b04408a84154f14800e4c9477f8a924_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-volum-express-the-rocket_84350.html,https://well.ca,"Explosive Volume in Rocket Time! 8X Bigger, Smoother.
+
+Now, the most explosive, beautiful lashes ever! Maybelline's patented supersonic
+brush with micro bristles loads on big, sleek volume instantly.
+
+The fast-glide formula keeps lashes smooth. Zero clumps!",,,mascara,[],2016-10-01T18:10:58.856Z,2017-12-23T20:31:47.966Z,http://makeup-api.herokuapp.com/api/v1/products/11.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/011/original/open-uri20171223-4-iiztlg?1514061107,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#202020', 'colour_name': 'Very Black '}]"
+10,l'oreal,L'Oreal Paris Voluminous Million Lashes Mascara,13.29,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/7a372820b4a151ec62a6ce4261948421_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/loreal-paris-voluminous-million_28968.html,https://well.ca,"For lashes that
+look a million times multiplied and perfectly defined, there's only one
+mascara - Voluminous® Million Lashes™. The built-in Clean Sweep
+Wiping System wipes the brush free of clumps leaving the perfect amount
+of mascara for an ultra-volumized clean lash look. The Millionizing
+Brush evenly thickens lashes from root to tip. The result? Lashes look
+so multiplied, so clean, it's like seeing millions. Features:
+Ophthalmologist-tested and allergy-testedSuitable for sensitive eyes an contact len wearersClump-free.Fragrance-free
+ ",4.6,,mascara,[],2016-10-01T18:10:57.744Z,2017-12-23T20:31:49.446Z,http://makeup-api.herokuapp.com/api/v1/products/10.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/010/original/data?1514061109,"[{'hex_value': '#030001', 'colour_name': 'Blackest Black '}, {'hex_value': '#231F20', 'colour_name': 'Black '}, {'hex_value': '#4D2C00', 'colour_name': 'Black Brown '}, {'hex_value': '#000000', 'colour_name': 'Blackest Black '}]"
+9,maybelline,Maybelline Great Lash Lots of Lashes Mascara,7.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/dfaf77464a8cb52a1a8f2a15e8abf920_ra,w158,h184_pa,w158,h184.png",https://well.ca/products/maybelline-great-lash-lots-of-lashes_50739.html,https://well.ca,"Introducing a Great Lash innovation - Great Lash Lots of Lashes!The favourite Maybelline mascara now gives the look of more lashes than ever, thanks to the exclusive Great Little Grabber Brush. In just one swipe, the Grabber Brush easily reaches all lashes - even
+in the corners - for a multiplied lash look without the clumps. The result? Great lashes with lots of impact and not a lot of work.For best results: sweep brush from root to
+tip of lashes. Continue building volume until the desired lash look is
+achieved. Do not let dry between coats. Removes easily with soap and
+water or eye makeup remover.
+ ",4.2,,mascara,[],2016-10-01T18:10:56.475Z,2017-12-23T20:31:47.757Z,http://makeup-api.herokuapp.com/api/v1/products/9.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/009/original/open-uri20171223-4-axycg0?1514061107,"[{'hex_value': '#000000', 'colour_name': 'Blackest Black '}, {'hex_value': '#2d1e17', 'colour_name': 'Brownish Black '}]"
+8,maybelline,Maybelline Lash Stiletto Ultimate Length Mascara,10.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/812b5ae27df9be983052063d52d7ab7a_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-lash-stiletto-ultimate_17287.html,https://well.ca,"The only mascara that does for lashes what stilettos do for legs.
+
+ The Grip & Extend brush grasps each lash and coats from every angle
+ Elastic formula stretches lashes for provocative length
+ Pro-Vitamin B-5 formula conditions and smoothes for black-patent shine
+ Contact lens safe and Ophthalmologist tested
+ Waterproof
+
+ ",4.0,,mascara,[],2016-10-01T18:10:55.406Z,2017-12-23T20:31:47.606Z,http://makeup-api.herokuapp.com/api/v1/products/8.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/008/original/data?1514061107,"[{'hex_value': '#0E0F11', 'colour_name': 'Very Black '}]"
+7,maybelline,Maybelline Volum'Express the Falsies Mascara,9.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/af1f35f15ee64cc1003f1ccfc6451d71_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/maybelline-volumexpress-the-falsies_26311.html,https://well.ca,"False lash glam in a tube, instantly!The Falsies Mascara delivers a false lash look, giving you a full set of voluminous, bold, fanned-out lashes and the appearance of no gaps from any angle.The Pro-Keratin Fiber enriched formula is designed to deliver immediate results, distributing volume and visible intensity to your lashes. The spoon-shaped brush helps fan lashes out.The Falsies Mascara is designed to give the appearance of no gaps and spaces. In a wink, lashes you didn’t even know you had look visibly thickened!",4.0,,mascara,[],2016-10-01T18:10:54.660Z,2017-12-23T20:31:47.473Z,http://makeup-api.herokuapp.com/api/v1/products/7.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/007/original/data?1514061107,"[{'hex_value': '#0E0F11', 'colour_name': 'Very Black '}]"
+6,covergirl,CoverGirl Lashblast Volume Blasting Mascara ,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/18790b1fce6ddd2c7c20e73ce964eadd_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/covergirl-lashblast-volume-blasting_74922.html,https://well.ca,"Get a blast of lush, volumized lashes! LashBlast’s patented
+volume-boosting formula and patent-pending brush are designed to max-out
+ each and every lash, leaving you with the ultimate big lash look.Features: Instant volume and fullnessSmudge and smear-proofHypoallergenic and suitable for contact lens wearers",4.8,,mascara,[],2016-10-01T18:10:53.573Z,2017-12-23T20:31:47.348Z,http://makeup-api.herokuapp.com/api/v1/products/6.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/006/original/data?1514061107,[]
+5,pacifica,Pacifica Stellar Gaze Length & Strength Mineral Mascara,28.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/b4a5f31a499b42938980fb369d0213ab_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/pacifica-stellar-gaze-length_90822.html,https://well.ca,"You will fall in love with Pacifica's long lasting, nourishing, natural mineral
+ mascara. This amazing formula is infused with coconut oil and vitamin B
+ to hydrate each lash as it lengthens, strengthens and adds volume.
+Apply for a natural look by day, or layer for more volume with the super
+ plush 100% vegan brush that provides effortless coverage.100% vegan. Cruelty-free. Formulated without FD & C color, parabens, talc and mineral oil.
+Read our blog post for tips on how to Green & Clean your makeup bag. Ingredients: Aqua, glycerin (vegetable), glyceryl stearate se, jojoba
+esters, tapioca starch, stearic acid ( vegetable), copernicia cerfera
+(carnauba) wax, euphorbia cerifera (candelilla) wax, arabic/acacia gum,
+acrylates, crosspolymer, potassium cetyl phosphate, microcrystalline
+cellulse (plant), cocos nucifera (coconut) oil, panthenol (vitamin b),
+cellulose gum, gluconolactone, macrocystis pyifera (brown kelp) extract,
+ hydrolyzed oryza sativa (rice) protein, sodium benzoate, iron oxides c1
+ 77499.",4.2,,mascara,"['Natural', 'Vegan']",2016-10-01T18:10:52.756Z,2017-12-23T20:31:47.230Z,http://makeup-api.herokuapp.com/api/v1/products/5.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/005/original/data?1514061107,[]
+4,physicians formula,Physicians Formula Organic Wear FakeOut Mascara,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/2b3d5588b073bfae89c6308dcfe96436_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear_70944.html,https://well.ca,"Physicians Formula Organic Wear FakeOut Mascara is the 1st EVER mascara with 100% natural origin lash extension fibers for the full-on fringe of false lashes without irritation.The innovative formula amplifies lash volume, length & curl. Plus the oversized brush creates a fabulously false lash effect instantly!Features: 100% of the Total Ingredients are from Natural Origin 70% of the Total Ingredients are from Organic FarmingDirections: Sweep mascara brush from lash base to tips. Apply multiple coats for added volume.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water*, Glycerin*, Glyceryl
+Stearate SE, Beeswax*, Microcrystalline Cellulose, Copernicia Cerifera
+(Carnauba) Wax*, Tapioca Starch*, Hydrolyzed Corn Starch, Stearic Acid,
+Jojoba Esters, Oryza Sativa (Rice) Powder*, Oryza Sativa (Rice)
+Extract*, Ceiba Pentandra Fiber Powder, Cellulose, Nylon-10/10, Aloe
+Barbadensis Leaf Extract*, Cucumis Sativus (Cucumber) Fruit Extract*,
+Glycine Soja (Soybean) Oil*, Olea Europaea (Olive) Leaf Extract*,
+Glycerin, Magnesium Aluminum Silicate, Water, Glyceryl Caprylate,
+Leuconostoc / Radish Root Ferment Filtrate May Contain: Iron Oxides,
+Titanium Dioxide* Ingredients from Organic FarmingHypoallergenic. Fragrance Free. Safe for Sensitive Eyes and Contact Lens Wearers. Ophthalmologist Approved.",3.9,,mascara,"['Natural', 'Gluten Free']",2016-10-01T18:10:51.387Z,2017-12-23T20:31:47.075Z,http://makeup-api.herokuapp.com/api/v1/products/4.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/004/original/open-uri20171223-4-a405lz?1514061107,"[{'hex_value': '#000000', 'colour_name': 'Ultra Black (7883C) '}, {'hex_value': '#2d2d2d', 'colour_name': 'Black (7884C) '}]"
+3,physicians formula,Physicians Formula Organic Wear Lash Boosting Mascara,15.79,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/ca3136ce9bff5df45b34b25b3bbf99aa_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/physicians-formula-organic-wear-lash_58514.html,https://well.ca,"Physicians Formula Organic Wear Lash Boosting Mascara is the 1st Ever 100% Natural Lash Boosting formula enhances the appearance of
+lash length, thickness and volume for dramatic lashes instantly and
+long-term.Additional Features:100% of the Total Ingredients are from Natural Origin. 44% of the Total Ingredients are from Organic Farming. 100% saw enhanced lashes INSTANLY!Delivers ingredients to the base of lashes for best results!93% saw thicker & longer looking lashes instantly! 92% saw
+extended & fuller looking lashes after 4 weeks! *Based on
+individual perception of results of a panel of women wearing Organic
+Wear Lash Boosting Mascara.Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for
+added volume. Can easily be washed off with soap and water or removed
+with Physicians Formula Eye Makeup Remover Pads or Lotions.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water *, Glycerin, Iron Oxides,
+Microcrystalline Cellulose, Glyceryl Stearate SE, Water, Lactobacillus
+Bulgaricus Ferment Filtrate, Beeswax *, Jojoba Esters, Copernicia
+Cerifera (Carnauba) Wax *, Tapioca Starch *, Stearic Acid, Glyceryl
+Caprylate, Aloe Barbadensis Leaf Juice *, Cellulose Gum, Cucumis Sativus
+ (Cucumber) Fruit Extract *, Glycine Soja (Soybean) Oil *, Hydrolyzed
+Oryza Sativa (Rice) Protein, Magnesium Aluminum Silicate, Olea Europaea
+(Olive) Leaf Extract *, Saccharomyces/Copper Ferment, Saccharomyces/Iron
+ Ferment, Saccharomyces/Magnesium Ferment, Saccharomyces/Silicon
+Ferment, Saccharomyces/Zinc Ferment, Leuconostoc/Aloe Barbadensis
+Leaf/Sorbus Aucuparia Fruit Ferment Filtrate, Leuconostoc/Radish Root
+Ferment Filtrate, Populus Tremuloides Bark Extract, Citric Acid May
+Contain: Titanium DioxideHypoallergenic. Fragrance free. Ophthalmologist approved. Gluten Free.",3.7,,mascara,"['Natural', 'Gluten Free']",2016-10-01T18:10:50.417Z,2017-12-23T20:31:46.951Z,http://makeup-api.herokuapp.com/api/v1/products/3.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/003/original/open-uri20171223-4-1naf0qv?1514061106,"[{'hex_value': '#000000', 'colour_name': 'Ultra Black Organics (7561C) '}, {'hex_value': '#282828', 'colour_name': 'Black Organics (7562C) '}]"
+2,,L' Oreal Paris Voluminous Mascara,9.99,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/4d671a9af4d2ce8d310ae263569018fb_ra,w158,h184_pa,w158,h184.jpeg",https://well.ca/products/l-oreal-paris-voluminous-mascara_25094.html,https://well.ca,"Voluminous - Volume Building Waterproof Mascara’s unique waterproof formula builds lashes to four times their natural thickness. Patented Volume-Maximizing Brush™ thickens lashes evenly and smoothly, leaving them soft with virtually no flakes, smudges, or clumps.Uniquely formulated to resist clumping, soften lashes, and build lashes to four times their natural thickness, with waterproof wear. Patented Volume Maximizing Brush™ thickens lashes evenly and smoothly, leaving them soft with virtually no flakes, smudges, or clumps.Ophthalmologist-tested and allergy-tested.Suitable for sensitive eyes and contact lens wearers.Clump-resistant.Fragrance-free.All-day wear.Ingredients:ISODODECANE • AQUA / WATER / EAU • CERA ALBA / BEESWAX / CIRE D'ABEILLE • DISTEARDIMONIUM HECTORITE • CARNAUBA / CARNAUBA WAX / CIRE DE CARNAUBA • PARAFFIN • ALCOHOL DENAT • ALLYL STEARATE/VA COPOLYMER • VA/VINYL BUTYL BENZOATE/CROTONATES COPOLYMER • PROP",4.5,,mascara,[],2016-10-01T18:10:49.185Z,2017-12-23T20:31:46.436Z,http://makeup-api.herokuapp.com/api/v1/products/2.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/002/original/data?1514061106,"[{'hex_value': '#231F20', 'colour_name': 'Black '}, {'hex_value': '#4D2C00', 'colour_name': 'Black Brown '}, {'hex_value': '#030000', 'colour_name': 'Carbon Black '}]"
+1,pure anada,Pure Anada Natural Mascara,14.0,,,"https://d3t32hsnjxo7q6.cloudfront.net/i/afefede002b8d94f6e53ea07dd4070f9_ra,w158,h184_pa,w158,h184.jpg",https://well.ca/products/pure-anada-natural-mascara_83255.html,https://well.ca,"Finally, a natural mascara you can feel good about putting on your lashes!
+It is naturally paraben-free, gluten-free, and mercury-free.
+You will be amazed at how well this mascara builds volume and length to your lashes.
+This is the natural mascara you’ve been waiting for!Ingredients: Aqua (Water), Oryza Sativa Wax (Rice Bran Wax), Olea Europea fruit oil
+(Olive Oil), Vegetable Source Cetyl Alcohol (Coconut), Coernica Cerifera
+ (Carnauba Wax), Euphorbia Cerifera (Candelilla Wax), Vegetable
+Glycerin, Stearic Acid, Acacia Gum, Black Iron oxide (CI 77499),
+Aminomethyl Popandiol (Ph Adjuster), Phenoxyethanol (Preservative).",4.6,,mascara,"['Natural', 'Gluten Free', 'Canadian']",2016-10-01T18:10:46.893Z,2017-12-23T20:31:46.013Z,http://makeup-api.herokuapp.com/api/v1/products/1.json,//s3.amazonaws.com/donovanbailey/products/api_featured_images/000/000/001/original/data?1514061104,"[{'hex_value': '#000000', 'colour_name': 'Black '}, {'hex_value': '#3E2829', 'colour_name': 'Brown '}]"
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/generate_data.py b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/generate_data.py
new file mode 100644
index 00000000..2cca232e
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/generate_data.py
@@ -0,0 +1,44 @@
+import csv
+import json
+
+desired_fields = ["id", "brand", "name", "price", "price_sign", "currency",
+ "image_link", "description", "rating", "category",
+ "product_type", "tag_list"]
+
+input_file = "dataset_products.csv" # Replace with your actual filename
+output_file = "products.json"
+
+# Open CSV file
+with open(input_file, 'r') as csvfile:
+ # Read CSV data using DictReader
+ csv_reader = csv.DictReader(csvfile)
+
+ # Create empty list to store JSON data
+ json_data = []
+
+ # Loop through each row in CSV
+ for row in csv_reader:
+ # Create a new dictionary with desired fields only
+ product_data = {field: row[field] for field in desired_fields}
+
+ # Try converting price to float (optional)
+ try:
+ product_data["price"] = float(product_data["price"])
+ except ValueError:
+ pass # Ignore conversion error
+
+ # Convert tag_list string to list (optional)
+ try:
+ product_data["tag_list"] = eval(product_data["tag_list"])
+ except SyntaxError:
+ pass # Ignore conversion error for invalid JSON strings
+
+ # Append product data to JSON list
+ json_data.append(product_data)
+
+# Open JSON file for writing
+with open(output_file, 'w') as jsonfile:
+ # Write JSON data to file with indentation
+ json.dump(json_data, jsonfile, indent=4)
+
+print(f"Converted CSV data to JSON and saved to {output_file}")
\ No newline at end of file
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/products.json b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/products.json
new file mode 100644
index 00000000..e6128cfa
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/files/dataset/products.json
@@ -0,0 +1,13654 @@
+[
+ {
+ "id": "1048",
+ "brand": "colourpop",
+ "name": "Lippie Pencil",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://cdn.shopify.com/s/files/1/1338/0845/collections/lippie-pencil_grande.jpg?v=1512588769",
+ "description": "Lippie Pencil A long-wearing and high-intensity lip pencil that glides on easily and prevents feathering. Many of our Lippie Stix have a coordinating Lippie Pencil designed to compliment it perfectly, but feel free to mix and match!",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "cruelty free",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "1047",
+ "brand": "colourpop",
+ "name": "Blotted Lip",
+ "price": 5.5,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://cdn.shopify.com/s/files/1/1338/0845/products/brain-freeze_a_800x1200.jpg?v=1502255076",
+ "description": "Blotted Lip Sheer matte lipstick that creates the perfect popsicle pout! Formula is lightweight, matte and buildable for light to medium coverage.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "cruelty free",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "1046",
+ "brand": "colourpop",
+ "name": "Lippie Stix",
+ "price": 5.5,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://cdn.shopify.com/s/files/1/1338/0845/collections/blottedlip-lippie-stix_grande.jpg?v=1512588803",
+ "description": "Lippie Stix Formula contains Vitamin E, Mango, Avocado, and Shea butter for added comfort and moisture. None of our Lippie formulas contain any nasty ingredients like Parabens or Sulfates.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "cruelty free",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "1045",
+ "brand": "colourpop",
+ "name": "No Filter Foundation",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://cdn.shopify.com/s/files/1/1338/0845/products/foundations-lineup_800x1200.jpg?v=1528927785",
+ "description": "Developed for the Selfie Age, our buildable full coverage, natural matte foundation delivers flawless looking skin from day-to-night. The oil-free, lightweight formula blends smoothly and is easily customizable to create the coverage you want. Build it up or sheer it out, it was developed with innovative soft-blurring pigments to deliver true color while looking and feeling natural. The lockable pump is easy to use and keeps your routine mess-free! As always, 100% cruelty-free and vegan.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "cruelty free",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "1044",
+ "brand": "boosh",
+ "name": "Lipstick",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://cdn.shopify.com/s/files/1/1016/3243/products/LIPBALM_LID_grande.jpg?v=1496848378",
+ "description": "All of our products are free from lead and heavy metals, parabens, phthalates, artificial colourants, and synthetic fragrances. Boosh lipstick glides on smoothly for clean & protective SPF coverage. They are filled with hydrating oils and butters to preserve and enhance your lips natural surface. Organic sweet orange oil gives a light and cheerful scent.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Chemical Free",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1043",
+ "brand": "deciem",
+ "name": "Serum Foundation",
+ "price": 6.7,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://3bc01d2807fb1bc0d25c-a86d2521f1af8989841b9619f5314be5.ssl.cf1.rackcdn.com/products/market-img/rdn-serum-foundation-30-r-30ml.png?v=6ab9fcb8ca2abb9828afcf9dcdad9f94",
+ "description": "Serum Foundations are lightweight medium-coverage formulations available in a comprehensive shade range across 21 shades. These foundations offer moderate coverage that looks natural with a very lightweight serum feel. They are very low in viscosity and are dispensed with the supplied pump or with the optional glass dropper available for purchase separately if preferred. ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "water free",
+ "cruelty free",
+ "alcohol free",
+ "oil free",
+ "silicone free",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1042",
+ "brand": "deciem",
+ "name": "Coverage Foundation",
+ "price": 6.9,
+ "price_sign": "$",
+ "currency": "CAD",
+ "image_link": "https://3bc01d2807fb1bc0d25c-a86d2521f1af8989841b9619f5314be5.ssl.cf1.rackcdn.com/products/market-img/rdn-coverage-foundation-33-n-30ml.png?v=daa322f179d80e450613c75826602292",
+ "description": "Coverage Foundations are full-coverage formulations available in a comprehensive shade range across 21 shades. These foundations contain higher pigment levels than our Serum Foundations but still offer a smooth finish that avoids the heavy makeup look that can make skin appear more aged. The texture is that of a lightweight, non-oily cream.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "water free",
+ "cruelty free",
+ "alcohol free",
+ "oil free",
+ "silicone free",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1041",
+ "brand": "zorah biocosmetiques",
+ "name": "Liquid Liner",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Zorah-Biocosmetiques-Liquid-Liner.png",
+ "description": "12 hours of long-lasting intense color, transfer-free (leaves no trace on crease above the eyelid) Pure Light Capture\u00aeminerals deliver color and radiance. Silky lines and refreshingly light, Pure Argan eyeliner leaves a weightless feel on the eyelids.
Natural cosmetic certified by Ecocert Greenlife according to Ecocert Standard available at: http://cosmetiques.ecocert.com
98% of the total ingredients are from natural origin 5% of total ingredients are from organic farming",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "purpicks",
+ "EcoCert"
+ ]
+ },
+ {
+ "id": "1040",
+ "brand": "zorah biocosmetiques",
+ "name": "Eyeshadow",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/02/Ombre-Amazonie-CC.png",
+ "description": "Product DescriptionAnti-aging formula made with organic Pure Argan oil and Pure Light Capture\u00ae pigments. 24 Hour crease-free intensity (no build-up increase of eyelid), no running. Pure Light Capture\u00ae pigments deliver color and luminosity. Silky and refreshingly light feel, Pure Argan eyeshadow is weightless on the eyelids. Pure Argan eyeshadow soothes, hides redness and slows the appearance of the signs of aging on the skin.
Natural cosmetic certified by Ecocert Greenlife according to Ecocert Standard available at: http://cosmetiques.ecocert.com
100% of the total ingredients are from natural origin5% of total ingredients are from organic farming",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "EcoCert"
+ ]
+ },
+ {
+ "id": "1039",
+ "brand": "w3llpeople",
+ "name": " Realist Invisible Setting Powder",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/w3llpeople-Realist-Invisible-Setting-Powder.jpg",
+ "description": "Keep it real with a polished, soft-focus look using this superfine, loose mineral powder. The healing properties of organic aloe help soothe and calm stressed out skin. Instantly minimize pores, soften imperfections, and creates a matte finish with superfine powder. Use by itself for an air-brushed look, or to set foundation for ultra-long wear.* Set makeup or by itself for matte air-brushed effect* Absorbs excess oil while softening fine lines* Organic aloe creates radiant, rejuvenated skin* Hypoallergenic, Chemical Free, Cruelty Free & Noncomedogenic * EWG Verified for non-toxic health and safety* Free From: Parabens, Gluten, GMO, Phthalates, Sulfates, Fragrance, Pheonoxyethanol, Dimethicone, PEG, Propylene Glycol, Butylene Glycol, Lead, Mineral Oil, Talc",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1038",
+ "brand": "sally b's skin yummies",
+ "name": "B Smudged",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Sally-B_s-Skin-Yummies-B-Smudged-1.jpg",
+ "description": "Let your eyes naturally pop with our B Smudged, a subtle eye color that adds a tint of color to the base of your lashes. An organic, cream eye color, B Smudged eliminates the inevitable uneven line from traditional eyeliners, and does not require expert blending techniques of messy, powder-based shadows. Simply 'smudge' along lash line for color that stays in place for a long lasting look.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "EWG Verified",
+ "purpicks"
+ ]
+ },
+ {
+ "id": "1037",
+ "brand": "sally b's skin yummies",
+ "name": "B Glossy Lip Gloss",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Sally-B_s-Skin-Yummies-B-Glossy-Lip-Gloss.jpg",
+ "description": "Intensify your natural lip color with Sally B's B Glossy Lip Gloss, an organic lip gloss that adds a silky smooth hint of color and shimmer to lips. Formulated with 98% certified organic, moisture-rich ingredients our B Glossy Lip Gloss works to enrich lip health for lips that feel good and look even better.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": [
+ "EWG Verified",
+ "purpicks"
+ ]
+ },
+ {
+ "id": "1036",
+ "brand": "rejuva minerals",
+ "name": "Multi Purpose Powder - Blush & Eye",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Blush-_-Eye-1.jpg",
+ "description": "Our Multi Purpose Pressed Powders may be used for blush or eye shadow. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. Made without any gluten containing ingredients. Mica free Pink Parfait and Papaya will offer a natural, ultra sheer semi-matte finish. The petals from beautiful crushed red roses that are found in Pink Parfait, are valued for their natural color and delightful aroma that they provide! Acai Berry will offer a natural, ultra sheer satin finish (mica added). VEGAN. Image one is Pink Parfait. Image two is Papaya, and image three is Acai Berry. Model in image four is wearing Papaya. Model in image five is wearing Acai Berry. To see a demonstration of Papaya, click on the video and fast forward to 3:44. Enjoy! This product is EWG VERIFIED™ and rated 'CLEAN'in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable. *Tiny flecks of fruit and botanical particles may be visible in powder. Pink Parfait and Papaya are Titanium Dioxide and Mica free. Net Weight: 2.8 gm.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1035",
+ "brand": "rejuva minerals",
+ "name": "Multi Purpose Powder - Blush & Eye",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Blush-_-Eye-1.jpg",
+ "description": "Our Multi Purpose Pressed Powders may be used for blush or eye shadow. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. Made without any gluten containing ingredients. Mica free Pink Parfait and Papaya will offer a natural, ultra sheer semi-matte finish. The petals from beautiful crushed red roses that are found in Pink Parfait, are valued for their natural color and delightful aroma that they provide! Acai Berry will offer a natural, ultra sheer satin finish (mica added). VEGAN. Image one is Pink Parfait. Image two is Papaya, and image three is Acai Berry. Model in image four is wearing Papaya. Model in image five is wearing Acai Berry. To see a demonstration of Papaya, click on the video and fast forward to 3:44. Enjoy! This product is EWG VERIFIED™ and rated 'CLEAN'in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable. *Tiny flecks of fruit and botanical particles may be visible in powder. Pink Parfait and Papaya are Titanium Dioxide and Mica free. Net Weight: 2.8 gm.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1034",
+ "brand": "rejuva minerals",
+ "name": "Multi Purpose Powder - Eye Shadow & Face",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Eye-Shadow-Face-1.jpg",
+ "description": "Our Multi Purpose Pressed Powders may be used as eye shadow, brow powder, eye liner, or for highlighting. Blended with antioxidants from Certified Organic Fruits, Berries & Botanicals*. No gluten derived ingredients. VEGAN. All shades will offer a semi-matte finish, with the exception of White Diamond. White Diamond will offer a shimmery finish. Image one shows shade in Iris. This product is EWG VERIFIED™ and rated 'CLEAN' in the Think Dirty app! BPA and Phthalate free packaging. Plastic parts of compacts are recyclable.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Vegan",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1033",
+ "brand": "rejuva minerals",
+ "name": "Pressed Powder Foundation",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Rejuva-Minerals-Multi-Purpose-Powder-Eye-Shadow-Face-1.jpg",
+ "description": "Coconut Cream - Warm Undertones (yellow) Light Shade. May also be used as a highlighting shade! About our pressed foundations:
Provides a silky smooth, natural 'semi-matte' finish
All skin types
Will not dry out skin (apply light moisturizer underneath for best results)
Resists caking and settling in lines and pores
Layers to provide a light-medium (buildable) coverage
Eco-friendly, biodegradable compact
Colored with minerals and enhanced with organic fruits and botanicals
Infused with conditioning organic jojoba oil
Formulated without common skin irritants.
",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1032",
+ "brand": "rejuva minerals",
+ "name": "Bronzer - loose",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/03/rejuva-minerals-bronzer.jpg",
+ "description": "Caribbean is a multi-purpose shade that is suitable for medium-tan skin tones. This shade may be used as a bronzer, or as a contour shade.
Our bronzer has been enhanced with Fruits, Botanicals and Clays for their natural color, fragrance and antioxidant benefits!
Blended with Certified Organics Fruits and Botanicals
Formulated with common skin irritants.
Our bronzer will offer a natural \u201cultra sheer\u201d semi-matte finish.
Made without any gluten containing ingredients
VEGAN!
Eco Friendly jars!
",
+ "rating": "",
+ "category": "powder",
+ "product_type": "bronzer",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1031",
+ "brand": "rejuva minerals",
+ "name": "Bronzer - pressed",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/03/rejuva-minerals-bronzer.jpg",
+ "description": "Our bronzer has been enhanced with Fruits, Botanicals and Clays for their natural color, fragrance and antioxidant benefits! Blended with Certified Organics Fruits and Botanicals Formulated with common skin irritants. Our bronzer will offer a natural 'ultra sheer' semi-matte finish. Made without any gluten containing ingredients VEGAN! Eco Friendly jars!",
+ "rating": "",
+ "category": "powder",
+ "product_type": "bronzer",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1030",
+ "brand": "penny lane organics",
+ "name": "Lip Gloss",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/sunset-bronze-pennylaneorganics1.jpg",
+ "description": "For fuller healthier lips! Long lasting colour! This colour is a good choice for any skin tone. It can be made lighter by wiping some off after application.Please note that our Vitamin E is extracted from non-GMO soy bean oil and therefore is gluten-free.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks",
+ "CertClean",
+ "Vegan",
+ "Chemical Free",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1029",
+ "brand": "nudus",
+ "name": "Amalia",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Nudus-Amalia.jpg",
+ "description": "named after my beautiful mum, delicately pink that displays sophistication. a perfect sheer wash of gorgeous colour that brings a new texture to the lip euphoria range. lipstick benefits a unique handcrafted lipstick blended with certified organic ingredients. beautifully pigmented with ancient ayurvedic bioactive colour extracts, leaving your lips soft and deliciously hydrated.key benefits
vitamins, A, B, C, D, E and K
antioxidants, including pomegranate, raspberry and kiwi cold pressed oils
27 active natural ingredients, helping against environmental stress
colours made from flowers, fruits, herbs and minerals
free from parabens, petro-chemicals, lanolin, hydrogenated oils,fd&c and lake dyes, nano-particles, gmo, pesticides and fungicides
not tested on animals
gluten free
",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks"
+ ]
+ },
+ {
+ "id": "1028",
+ "brand": "marienatie",
+ "name": "Pressed Foundation",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/caramel_1024x1024_e5fbf151-0cfd-42c9-a5ec-f49d6104bcbc1.jpg",
+ "description": "A pressed foundation by MarieNatie providing a silky and flawless finish \u2013 it provides great coverage and protects skin with SPF 10. Titanium dioxide acts as an absorbent of oil and jojoba oil helps to cleanse and moisturize the skin.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1027",
+ "brand": "marienatie",
+ "name": "Pressed Eye Shadow",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/pressed_eyeshadow_LORES_1024x1024_55deb6c3-b7cd-4cb5-9ede-f2931c07312a1.jpg",
+ "description": "Hypoallergenic shadows that are rich in colour with a lightweight texture. These MarieNatie shadows are fragrance-free and will stay on all day. Compact comes with a mini brush that can be stored away. Titanium dioxide acts as an absorbent of oil and jojoba cleanses and moisturizes the skin.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1026",
+ "brand": "marienatie",
+ "name": "Mineral Blush",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Blush_copy_1024x1024_edd99d6d-301e-4ba1-aa74-a33d21147b7c1.jpg",
+ "description": "Formulated to reduce the appearance of pores while creating a long-lasting natural finish. This MarieNatie brush protects skin with SPF15. Sericite mica is great for absorbing oil and won\u2019t clog up pores. Mica is a natural mineral that helps to enhance the skin tone.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1025",
+ "brand": "marienatie",
+ "name": "Perfect Lash Mascara",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2017/06/marie-natie-perfect-lash-mascara.png",
+ "description": "Marie Natie Perfect Lash Mascara is made with all natural ingredients that will not only condition your lashes but lengthen and thicken your every lash with every stroke. Oregano, rosemary and thyme extract are great antioxidants and helps to maintain skin health. Cinnamon bark extracts helps to fight infection. Lemon peel extract contains natural healing and soothing properties.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1024",
+ "brand": "marienatie",
+ "name": "Loose Mineral Eyeshadow",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Loose_MineralEyeshadow_1024x1024_a958d62b-c518-4548-a2cd-9c8981f5edee1.jpg",
+ "description": "Long-lasting eye colours delivering an instant glam and shimmer. Silky and soft texture of MarieNatie glides on easily when applied wet or dry. Magnesium stearate repels water and will help keep your eye shadow on all day and absorb any extra oil. Kaolin clay will help to purify, soothe different skin types.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1023",
+ "brand": "marienatie",
+ "name": "Lipstick",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Evelyn_Pic1.jpg",
+ "description": "A pure and creamy lipstick by MarieNatie formulated with organic jojoba, avocado, and coconut oil which are rich in anti-oxidants and have moisturizing benefits. Enriched with naturally derived organic mango and cocoa butters that will soothe, hydrate and regenerate dry lips.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks",
+ "CertClean",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1022",
+ "brand": "marienatie",
+ "name": "Lip Gloss",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Envy1.jpg",
+ "description": "MarieNatie offers a gluten free and vegan lip gloss providing rich colours and shine without the stickiness. The natural oils will offer moisturizing properties and lasting hydration for your lips. Contains grape seed oil to reduce aging and wrinkles and sunflower oil has the ability to heal skin. Vitamin E is a great antioxidant that will protect and repair skin.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1021",
+ "brand": "marienatie",
+ "name": "Gel Liner",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Photo10_12001.jpg",
+ "description": "This smooth and creamy formula from MarieNatie will provide a silky soft and non-oily finish. It glides on evenly to deliver immediate results.",
+ "rating": "",
+ "category": "gel",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "purpicks",
+ "CertClean",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "1020",
+ "brand": "marienatie",
+ "name": "Eyeliner",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/csm/Eyeliner-Group_300dpi_1024x1024_a2ac069c-f517-46bf-a215-8d31f5e948c91.jpg",
+ "description": "An eyeliner that offers long lasting colour and a natural smooth finish. Both jojoba oil and meadowfoam oil have amazing moisturizing properties to help repair skin. Beeswax is known for its healing properties and will help to improve skin conditions.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "purpicks",
+ "CertClean"
+ ]
+ },
+ {
+ "id": "1019",
+ "brand": "maia's mineral galaxy",
+ "name": "Mineral Eye Brow Liner Charcoal Brown",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Maia%E2%80%99s-Mineral-Galaxy-Mineral-Eye-Brow-Liner-Charcoal-Brown.jpg",
+ "description": "",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyebrow",
+ "tag_list": [
+ "EWG Verified",
+ "purpicks"
+ ]
+ },
+ {
+ "id": "1018",
+ "brand": "lotus cosmetics usa",
+ "name": "Mascara",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-mascara-black.png",
+ "description": "All natural mascara lengthens, thickens, and defines lashes. Created with coffee extract, rice proteins and sunflower oil to condition lashes. Smudge proof and water resistant for lashes that will all day. Made with natural and organic ingredients. In Black, and Brown.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1017",
+ "brand": "lotus cosmetics usa",
+ "name": "Creme to Powder Blush",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-creme-to-powder-blush.png",
+ "description": "A cream to powder blush made with all natural ingredients that applies like a soft cream but finishes like a silky powder. Antioxidant-rich botanicals help moisturize the skin, while natural pigments provide long-lasting buildable color for a healthy, radiant glow. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1016",
+ "brand": "lotus cosmetics usa",
+ "name": "Eye Shadow Palette Mesmerize",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-mesmerize.png",
+ "description": "A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1015",
+ "brand": "lotus cosmetics usa",
+ "name": "Eye Shadow Palette Deluxe",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-deluxe.png",
+ "description": "A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1014",
+ "brand": "lotus cosmetics usa",
+ "name": "Eye Shadow Palette Smokey",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-smokey.png",
+ "description": "A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1013",
+ "brand": "lotus cosmetics usa",
+ "name": "Eye Shadow Palette Seduction",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "http://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-seduction.png",
+ "description": "A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1012",
+ "brand": "lotus cosmetics usa",
+ "name": "Eye Shadow Palette Cocoa",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/03/lotus-cosmetics-usa-eye-shadow-palette-cocoa.png",
+ "description": "A four-color eyeshadow palette infused with natural minerals and antioxidant rich extracts to help prevent fine lines and wrinkles. Easily blendable shades give you the ability to create effortlessly natural or dramatic looks. Made with natural and organic ingredients.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "USDA Organic",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1011",
+ "brand": "green people",
+ "name": "Volumising Mascara",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/Green-People-Volumising-Mascara-Black.jpg",
+ "description": "Natural mineral pigments for intense natural black colour. Nourish roots and condition lashes with 98percent natural ingredients. Unique precision brush offers excellent lash definition Natural cellulose micro spheres give outstanding volume Vitamin E, Sunflower oil & Organic Beeswax",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "purpicks",
+ "EcoCert"
+ ]
+ },
+ {
+ "id": "1010",
+ "brand": "coastal classic creation",
+ "name": "Conch Lipstick",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/06/coastal-classic-creations-conch-lipstick.png",
+ "description": "Coastal Classic Creations Conch Lipstick is a flattering, stylish, rich winterberry color. This lipstick is paraben-free and vegan and contains sunflower oil which is rich in Vitamin E and which may protect against damage from the sun. To boost the product's effectiveness, we add sesame seed oil which contains Vitamins E, D, and B complex to provide moisture and neutralize free radicals. Companions well with Boysenberry Lip Crayon.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1009",
+ "brand": "c'est moi",
+ "name": "Reflect Lip Gloss",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-reflect-lip-gloss-1.png",
+ "description": "These essential lip gloss shades are enriched with a blend of natural and organic oils to deliver the perfect amount of sheer color and shine to lips. Enriched with a blend of natural and organic oils, this essential gloss delivers a wash of sheer color and promises shine\u2014not stickiness. Made for Young Delicate Skin Types NO \u2013 Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested on Sensitive Skin, Hypoallergenic, Made with Natural & Organic Ingredients",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1008",
+ "brand": "c'est moi",
+ "name": "Muse Mascara",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-muse-mascara.png",
+ "description": "Define, lengthen and nourish lashes with organic shea butter, grapeseed and jojoba oils. Lashes are coated gently and evenly without clumping, transferring or flaking. Long, lush lashes begin with this luxe mascara that is formulated with organic shea butter and oils of grape and jojoba seed to help nourish and condition as it lengthens and defines. Velvety and smooth, it coats lashes gently and evenly without clumping, transferring, or flaking. Made for Young Delicate Skin Types. NO \u2013 Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1007",
+ "brand": "c'est moi",
+ "name": "Luminary Lip Crayon",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-luminary-lip-crayon.png",
+ "description": "These nourishing and creamy lip crayons come in 6 perfectly pigmented shades that go from subtle to statement. This easy-to-use lip crayon delivers velvety application and perfectly pigmented color, plus a nourishing formula with a creamy, consistent texture designed to make your lips appear soft and smooth. Apply sparingly for a subtle look, or generously to make a statement\u2014either way, your lips will feel as beautiful as they look! Made for Young Delicate Skin Types NO \u2013 Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested On Sensitive Skin Hypoallergenic",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1006",
+ "brand": "c'est moi",
+ "name": "Fearless Eyeliner",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.purpicks.com/wp-content/uploads/2018/04/cest-moi-fearless-eyeliner-pencil.png",
+ "description": "Make eyes pop with this velvety smooth eyeliner that glides on effortlessly and precisely. Make your eyes pop with this sleek, easy-to-use eyeliner. Formulated with both jojoba seed oil and shea butter, its velvety smooth formula glides on effortlessly and precisely. To sharpen, place inside sharpener and turn the pencil gently to create a working tip. Made for Young Delicate Skin Types NO \u2013 Talc, Fragrance, Parabens, Phthalates, Sulfates, Mineral oil or Propylene Glycol Dermatologist Tested Clinically Tested on Sensitive Skin Hypoallergenic Made with Natural Ingredients",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "purpicks",
+ "EWG Verified",
+ "Hypoallergenic",
+ "No Talc"
+ ]
+ },
+ {
+ "id": "1005",
+ "brand": "alva",
+ "name": "Liquid Eye Shadow",
+ "price": 9.95,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "http://www.purpicks.com/wp-content/uploads/2018/06/Alva-Liquid-Eye-Shadow-1-Pale-Almond.png",
+ "description": "Our Liquid Edition Eye Shadows have been a real winner since their launch and are a real first of their kind in natural and organic make-up. Whether you're looking for a striking or glamorous look for night time, or something more subtle and natural for wearing during the day, there is a shade for everyone. They dry quickly, and depending on the depth of colour desired, can be blended in on application or left to dry before blending for a more vivid look. Layering is also possible, but however you choose to use these liquid eye shadows they won't gather in crow's feet or fine lines around the eyes. The inclusion of patented beta glucan also means they're perfect for sensitive eyes. Pale Almond is subtle, natural, and perfect for daytime wear, and compliments our Bronzed Hazel liquid eye shadow if a duo tone is desired.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "purpicks",
+ "Vegan",
+ "Organic"
+ ]
+ },
+ {
+ "id": "1004",
+ "brand": "glossier",
+ "name": "Stretch Concealer",
+ "price": 22.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/001/631/portrait_normal/SC_Carousel_1_copy_2.jpg?1506948615",
+ "description": "A traditional concealer sets to a stiff, flat, dry finish\u2014a dead giveaway that you\u2019re wearing it. Ours is a new type of concealer with elastic micro waxes that move with your face instead of caking on top of it, and nourishing oils that give a dewy, glowing finish. The buildable formula covers everything from dark circles to redness and blemishes. In five shades painstakingly developed to enhance, brighten, and\u2014most importantly\u2014completely disappear into the widest range of skin tones.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "1003",
+ "brand": "glossier",
+ "name": "Cloud Paint",
+ "price": 22.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/001/241/portrait_normal/CP_PDP_02.jpg?1488382023",
+ "description": "With Cloud Paint, we set out to make blush the high point of your routine. The pillowy, gel-cream formula is designed to be the most user-friendly cheek color in existence. If you can finger paint, you can Cloud Paint\u2014simply dab it onto cheeks wherever you please. It\u2019s seamless, sheer, and buildable (i.e. it\u2019s hard to accidentally apply too much). Inspired by gradient pink NYC sunsets, the shades are optimized to work across a wide range of skin tones for a healthy, flushed-from-within glow.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "1002",
+ "brand": "glossier",
+ "name": "Wowder",
+ "price": 27.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/001/476/portrait_normal/carousel-1.jpg?1501534121",
+ "description": "It\u2019s not powder, it\u2019s Wowder\u2014for non-dewy days. Wowder will: cut shine, blur the appearance of pores, set makeup, look like skin. Wowder won\u2019t: leave a chalky film, cake into fine lines, flatten skin\u2019s texture, or announce its presence in photographs (no camera flashback). In three sheer, glowy, adaptable shades...because no skin tone is HD-white. Pair with the angelically soft Wowder Brush for all-over and targeted application\u2014perfect size, perfect shape, perfect density for the optimal matte-not-flat finish.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "1001",
+ "brand": "glossier",
+ "name": "Haloscope",
+ "price": 27.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/001/109/portrait_normal/Haloscope_01-compressor.jpg?1498613775",
+ "description": "Skincare + makeup = Haloscope, the galaxy\u2019s first dew effect highlighter. It\u2019s a dual-delivery formula: the outer halo is infused with genuine crystal extracts for all-day enlightenment, with a solid oil core of vitamin-rich moisturizers for a hydrated, dewy finish. Expect an otherworldly sheen that\u2019s never dry, never glittery. Comes in\u2026",
+ "rating": "",
+ "category": "highlighter",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "1000",
+ "brand": "glossier",
+ "name": "Perfecting Skin Tint",
+ "price": 32.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/000/726/portrait_normal/PST_Carousel_02-compressor.jpg?1470088244",
+ "description": "In the land between bare skin and makeup makeup exists the imperceptible wash of color that is our Perfecting Skin Tint. What does it do? Evens out discoloration and leaves your face looking toned, smooth, and dewy. The breathable, ultra thin formula auto-fits to skin, making application as simple as throwing on moisturizer. What won\u2019t it do? Hide your freckles, spackle your pores, or erase any other evidence that you are, in fact, a real human being.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "999",
+ "brand": "glossier",
+ "name": "Generation G",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://static-assets.glossier.com/production/spree/images/attachments/000/001/239/portrait_normal/GenG2.jpg?1487709747",
+ "description": "Generation G is a new kind of lip color that gives the look and finish of just-blotted lipstick, without the blot. We\u2019ve created a short list of the six most important shades, with dialed-down pigment loads for a casual look: Zip, Leo, Crush, and Jam, along with the super subtle Cake and Like, which give some oomph to lighter lip tones. They\u2019re lipsticks that adapt to you, not the other way around, so they'll appear a bit different on everyone as your natural lip color shows through. The effect? Diffused, matte goodness\u2014just swipe it on.",
+ "rating": "",
+ "category": "",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "998",
+ "brand": "nyx",
+ "name": "Fly With Me Mascara",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd5e25f68/ProductImages/Eyes/Fly_With_Me_Mascara/800897141431_flywithmemascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Your lashes will reach new heights with our Fly With Me Mascara. Lashes appear more dramatic making average lashes look super-long and ultra dark. Pros adore the intense yet lightweight coverage and how the unique volumizing wand boosts even the wimpiest of the eyelashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "997",
+ "brand": "nyx",
+ "name": "Propel My Eyes Mascara",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8068dbc4/ProductImages/Eyes/Propel_My_Eyes_Mascara/propelmyeyesmascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Get ready for aerodynamic lashes! The brush boasts a four-way pinwheel design that lifts lashes up and coats them in a conditioning formula enriched with Pro Vitamin B5 D-Panthenol and Green Tea Extract. Take it for a spin and enjoy!",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "996",
+ "brand": "nyx",
+ "name": "Proof It! Waterproof Mascara Top Coat",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw31cb2063/ProductImages/Eyes/Proof_It_Waterproof_Mascara_Top_Coat/proofitwaterproofmascaratopcoat_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "With just two swipes our lash top coat transforms your favorite mascara from being conventional to waterproof! Our formula helps prevent clumping and leaves lashes looking gorgeous.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "995",
+ "brand": "nyx",
+ "name": "Big & Loud Lash Primer",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa4949d3a/ProductImages/Eyes/Big_And_Loud_Lash_Primer/bigandloudlashprimer_alt1.jpg?sw=390&sh=390&sm=fit",
+ "description": "Give your lashes a boost with our Big & Loud Lash Primer. It works hand in hand with your favorite NYX Professional Makeup mascara to enhance the length and volume of lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "994",
+ "brand": "nyx",
+ "name": "Double Stacked Mascara",
+ "price": 15.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw255fbdae/ProductImages/2016/Eyes/Double_Stacked_Mascara/doublestackedmascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "993",
+ "brand": "nyx",
+ "name": "Doll Eye Mascara",
+ "price": 9.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2e036256/ProductImages/Eyes/Doll_Eye_Mascara/800897123543_dolleyemascara_longlash_black_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Hello, dollface! For irresistibly fluttery eyelashes, try this mascara on for size. Doll Eye Mascara uses a unique blend of natural oil and nylon fibers to extend lashes to almost faux proportions. Choose from our Doll Eye Mascara in Long Lash, Volume or Waterproof.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "992",
+ "brand": "nyx",
+ "name": "The Skinny Mascara",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcb91e11f/ProductImages/Eyes/The_Skinny_Mascara/theskinnymascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our ultra-skinny mascara brush is perfect for coating hard to reach lashes from root to tip\u00e2\u20ac\u201deven along the bottom lash line! Finally the smallest, thinnest lashes can get extra special attention too. The water resistant formula and micro brush work together to create the appearance of long beautifully defined lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "991",
+ "brand": "nyx",
+ "name": "Worth the Hype Volumizing & Lengthening Mascara",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb654afff/ProductImages/2018/Eyes/Worth_The_Hype_Volumizing_Mascara/800897140250_worththehypevolumizingmascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Take our word for it: if you want your lashes to look darker, fuller and lethally gorgeous all day long, then our new Worth the Hype Volumizing & Lengthening Mascara is your jam. A breeze to apply and comfortable to wear, this buildable formula actually does what it promises, making it \u201cworth the hype\u201d in every which way. It also features a brush that tapers at the tip, so you can brush, build, and lengthen even the littlest baby lashes at the inner corners of your eyes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "990",
+ "brand": "nyx",
+ "name": "Boudoir Mascara Collection",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda9f6cec/ProductImages/Eyes/Boudoir_Mascara_Collection/boudoirmascaracollection_main.jpg.jpg?sw=390&sh=390&sm=fit",
+ "description": "Every powder room should have our luxurious Boudoir Mascara Collection available in 7 elite formulas. Whether you want to darken, amp up the volume, or lengthen your lashes - we have a mascara that meets all your needs.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "989",
+ "brand": "nyx",
+ "name": "Color Mascara",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8044f7e7/ProductImages/Eyes/Color_Mascara/colormascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Think beyond the ordinary with these fun and vibrant new mascara options from NYX Professional Makeup. Packed full of pigments and delivering on the promise of intense color payoff, everyone will notice your fabulous eye lash color. Go for it - we dare you to try all eight shades!",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "988",
+ "brand": "nyx",
+ "name": "Super Luscious Mascara",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw97d7c9f2/ProductImages/Eyes/Super_Luscious_Mascara/superlusciousmascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Everyone will notice your gorgeous lashes with our Super Luscious Mascara Collection. Featuring seven different brushes, each fragrance-free mascara has something unique to offer. (Plus, they\u2019re formulated with keratins, vitamins and naturally-derived waxes to nourish lashes!) There\u2019s a Super Luscious Mascara for your essential lash looks.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "987",
+ "brand": "nyx",
+ "name": "Eyebrow Marker",
+ "price": 9.75,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwe10bfffa/ProductImages/Eyes/Eyebrow_Marker/eyebrowmarker_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Sculpt fill in and enhance your natural eyebrows with our felt-tip Eyebrow Marker. The color resists smearing and smudging and wears all day long.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "986",
+ "brand": "nyx",
+ "name": "Eyebrow Kit With Stencil",
+ "price": 15.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2636bb00/ProductImages/Eyes/Eyebrow_Kit_with_Stencils/800897142957_eyebrowkitstencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our all-in-one eyebrow kit has everything you need to keep your brows looking on point. The kit includes 4 universally flattering shades for all brow tones a slanted eyebrow brush an eyebrow comb and 3 different stencils to help you get the perfect shape for your face. Now you can fill define and shape your brows like never before!",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "985",
+ "brand": "nyx",
+ "name": "Eyebrow Push-Up Bra",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwadba3ae6/ProductImages/Eyes/Eyebrow_Push_Up_Bra/eyebrowpushupbra_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Play up your natural assets with this dual-sided pencil that delivers sensual eyebrows in just a few minutes. Use the universally flattering brow pencil to draw and fill in your arches and the highlighting end to lift and brighten. Like the LBD of pencils the effect is captivating and undeniably sexy.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "984",
+ "brand": "nyx",
+ "name": "3-Dimensional Brow Marker",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1e63b16f/ProductImages/2017/Eyes/3Dimensional_Brow_Marker/3dimensionalbrowmarker_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "983",
+ "brand": "nyx",
+ "name": "Eyebrow Shaper",
+ "price": 8.75,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7bb4049d/ProductImages/Eyes/Eyebrow_Shaper/eyebrowshaper_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Tame unruly eyebrows with this ingenious wax pencil. The blend of waxes is enriched with Vitamin E and leaves arches in tip-top condition and impeccable shape with just a few strokes.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "982",
+ "brand": "nyx",
+ "name": "Build 'Em Up Brow Powder",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw837424ec/ProductImages/2017/Eyes/Build_Em_Up_Brow_Powder/buildemupbrowpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "981",
+ "brand": "nyx",
+ "name": "3-in-1 Brow Pencil",
+ "price": 13.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw840d556c/ProductImages/2017/Eyes/3_in_1_Brow_Pencil/3in1browpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "One unbeatable brow beautifier, three go-to goodies. Our versatile 3-in-1 Brow includes everything you need to build exquisite arches. A retractable pencil, Powder, and brow mascara, available in 10 pigmented shades. Achieve eyebrows that are as natural-looking or bold as you desire by applying these essentials alone or together. To combine \u2019em all, simply outline with the pencil and fill in with the Powder. Complete the look by setting your brows with a swipe of mascara.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "980",
+ "brand": "nyx",
+ "name": "Proof It! Waterproof Eyebrow Primer",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa61027e6/ProductImages/Eyes/Proof_It_Waterproof_Eyebrow_Primer/proofitwaterproofeyebrowprimer_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Smooth and conditioning our clear eyebrow gel sets your brows in place all day, rain or shine. Apply over brows before shaping with powder to keep them in control. Our formulation was made specially formulated for thin sparse brows.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "979",
+ "brand": "nyx",
+ "name": "Eyebrow Powder Pencil",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw85601149/ProductImages/2017/Eyes/Eyebrow_Powder_Pencil/eyebrowpowderpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Close your eyes and picture the perfect brows. Are they defined, yet delicate? Create the brows of this daydream with the brand new Eyebrow Powder Pencil. Our unique pencil\u2019s superfine texture provides a powdery-soft, matte finish. Put the finishing touches on your arches by using the included spoolie brush to smooth out the rich color.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "978",
+ "brand": "nyx",
+ "name": "Precision Brow Pencil",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9929b8e6/ProductImages/2017/Eyes/Precision_Brow_Pencil/precisionbrowpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "977",
+ "brand": "nyx",
+ "name": "Sculpt & Highlight Brow Contour",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2d356326/ProductImages/2016/Eyes/Sculpt_And_Highlight_Brow_Contour/sculptandhighlightbrowcontour_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Nothing pulls together a look quite like beautifully defined brows. Enter the sleek new Sculpt & Highlight Brow Contour, our 2-in-1 pencil that defines, fills and uses shadow and light to lift the brows to eyebrow perfection.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "976",
+ "brand": "nyx",
+ "name": "Control Freak Eyebrow Gel",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwdf8d06a2/ProductImages/Eyes/Control_Freak_Eyebrow_Gel/controlfreakeyebrowgel_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Out of control brows have you flustered? NYX Professional Makeup's Control Freak Brow Gel offers a new way to tame them fast. The clear formula works well over powder or pencil to seal the deal and make a statement with your brows that you will be proud of. The unique non-sticky formula is comfortable to wear all day and can also be used as a clear mascara that defines, separates and enhances the natural curl of lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "975",
+ "brand": "nyx",
+ "name": "Eyebrow Cake Powder",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0e17c958/ProductImages/Eyes/Eyebrow_Cake_Powder/800897123864_eyebrowcakepowder_blackgrey_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our recipe for cooking up exquisite eyebrows includes wax tools and a pair of complementary powders which can be customized to create the ideal shade. Each Eyebrow Cake Powder kit includes a slanted brush and a spoolie to shape style and tame eyebrows.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "974",
+ "brand": "nyx",
+ "name": "Tinted Brow Mascara",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw4093ace1/ProductImages/Eyes/Tinted_Brow_Mascara/tintedbrowmascara_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "No shame in wishing for a strong beautiful brow! Our foolproof tinted brow mascara helps your dream come true. It sets, tames and tints brows for natural-looking wear. Our dependable formula leaves brows feeling soft while maintaining complete control.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "973",
+ "brand": "nyx",
+ "name": "Auto Eyebrow Pencil",
+ "price": 4.75,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2a31f0af/ProductImages/Eyes/Auto_Eyebrow_Pencil/autoeyebrowpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Create flawless arches with this eyebrow pencil, a blend of vegetable coconut and soy bean oil that guarantees a fluid application and sensational color. Use the built-in brush to blend color and style your eyebrows to perfection.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "972",
+ "brand": "nyx",
+ "name": "Eyebrow Gel",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9ad6ed1a/ProductImages/Eyes/Eyebrow_Gel/800897831585_eyebrowgel_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Keep your misbehaving brows in place with our discreet and easy-to-use brow gel! The lightweight waterproof formula creates thicker, fuller, natural-looking brows and comes in five versatile shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "971",
+ "brand": "nyx",
+ "name": "Tame & Frame Brow Pomade",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw3f349e2f/ProductImages/Eyes/Tame_And_Frame_Brow_Pomade/tameandframebrowpomade_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Give extra life to your brows with our easy-to-use brow pomade that glides onto skin and hair. Our smudge-proof, waterproof formula comes in five shades to coax brows into prime shape. Stand up to humidity in style!",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "970",
+ "brand": "nyx",
+ "name": "Micro Brow Pencil",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw14cbffac/ProductImages/Eyes/Micro_Brow_Pencil/microbrowpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Build full beautiful brows with our ultra-thin Micro Brow Pencil. So precise it coats even the finest hairs with color for a natural-looking finish.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "969",
+ "brand": "nyx",
+ "name": "Holographic Halo Cream Eyeliner",
+ "price": 11.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwc135311a/ProductImages/2018/Eyes/Holographic_Halo_Cream_Liner/holographichalocreamliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Line your lids in holographic color with our Holographic Halo Cream Eyeliners! Inspired by all-things-unicorn, this unique formula uses ultra-fine, pigmented pearls to create a sleek, shimmering line, or it can be blended out to an intense, holographic eyeshadow. Available in five of the prettiest pastels you\u2019ve ever seen.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "968",
+ "brand": "nyx",
+ "name": "Cake That! Powder Eyeliner",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb7f857fa/ProductImages/2017/Eyes/Cake_That_Powder_Eyeliner/cakethatpowdereyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "cream",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "967",
+ "brand": "nyx",
+ "name": "Epic Black Mousse Liner",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1f473566/ProductImages/Eyes/Epic_Black_Mousse_Liner/800897832162_epicblackmousseliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Amazingly fluffy and lightweight, our innovative Epic Black Mousse Liner glides on oh-so-soft and smooth! This waterproof eyeliner dries to a pigmented matte finish that looks totally EPIC.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "966",
+ "brand": "nyx",
+ "name": "Cosmic Gel Liner",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw62a7d3b0/ProductImages/2016/Eyes/Cosmic_Gel_Liner/800897016364_cosmicgelliner_interstellar_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Swap your standard wing for eyes that twinkle like stars! A beam of Cosmic Gel Eye Liner makes an out of this world statement through an intense burst of sparkle and bold color. Available in three shades packed with interstellar shimmer, this formula glides on silky-smooth and is super easy to blend. Like our fan fave Gel Liner and Smudger, these rich colors stay put for strong galactic glam.",
+ "rating": "",
+ "category": "gel",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "965",
+ "brand": "nyx",
+ "name": "Gel Liner And Smudger",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7fa3d736/ProductImages/Eyes/Gel_Liner_And_Smudger/gellinerandsmudger_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our Gel Liner & Smudger delivers bold color that won\u2019t quit. Whether you\u2019re after a perfectly defined line or a smokey eye, these silky shades blend easily and don\u2019t crease or fade. This pigmented formula is now available in two brand new shades.",
+ "rating": "",
+ "category": "gel",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "964",
+ "brand": "nyx",
+ "name": "Metallic Eyeliner",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1a50507a/ProductImages/2018/Eyes/Metallic_Eyeliner/metalliceyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Spend some quality glam time with our Metallic Eyeliners. From copper to rose gold and silver, this creamy-soft pencil is available in six dazzling shades. Each pigment rich eyeliner slides on effortlessly and loads your lids with a metallic-matte finish. Down to the last swipe? Sharpen your go-to hue to uncover more intense color.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "963",
+ "brand": "nyx",
+ "name": "Tres Jolie Gel Pencil Liner",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw85212794/ProductImages/Eyes/Tres_Jolie_Gel_Pencil_Liner/tresjoliegelpencilliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our high-powered twist-up gel liner has the same payoff and precision as a pot without having to use a brush. It comes with a sharpener to ensure precise application every time.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "962",
+ "brand": "nyx",
+ "name": "Faux Whites Eye Brightener",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd6f5e770/ProductImages/2017/Eyes/Faux_Whites_Eye_Brightener/fauxwhiteseyebrightener_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Brighten up those beautiful eyes! Our all-new collection of Faux Whites features a variety of white liners with an exquisite hint of color\u2014from blush, to lavender, and mint. This bouquet of tones may be delicate, yet each one is anything but subtle. Every color glides on velvety-soft and provides a striking matte finish. Pencil the corners of the eyes using these vibrant brighteners for a fresh highlight.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "961",
+ "brand": "nyx",
+ "name": "Faux Blacks Eyeliner",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw52b6a577/ProductImages/2017/Eyes/Faux_Blacks_Eyeliner/fauxblackseyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "The go-to goodie in every beauty\u2019s makeup bag? A little black liner, of course! Inspired by this enduring essential, the new Faux Blacks collection puts a bold twist on a classic that will forever be a chic choice. Available in eight deep matte shades with a hint of rich color\u2014from midnight blue to dark olive\u2014these striking eyeliners are creamy and go on smooth, which makes drawing a precise line or smudging it out totally simple.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "960",
+ "brand": "nyx",
+ "name": "Collection Noir",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5a58329e/ProductImages/Eyes/Collection_Noir/collectionnoir_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Finally a collection of 8 Noir liners to create any dramatic look. This assortment of liners includes 7 of the blackest black liner formulations ranging from matte to glossy. There is even a powder soft brown for more subtle looks. Create dramatic sultry looks, precise cat-eyes, and subtle yet smokey eyes. This sexy dark collection has a liner for everyone\u2019s needs.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "959",
+ "brand": "nyx",
+ "name": "Slim Eye Pencil",
+ "price": 4.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd6b2499f/ProductImages/Eyes/Slim_Eye_Pencil/slimeyepencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Slim, trim, but never prim. Our Slim Eye Pencils come in a variety of entrancing shades\u2014from seafoam green to black shimmer. The creamy long-wearing eye liner formula goes on easily and resists bleeding. Available in 31 stunning shades!",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "958",
+ "brand": "nyx",
+ "name": "Retractable Eye Liner",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw83169760/ProductImages/Eyes/Retractable_Eye_Liner/retractableeyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Twist and shout! Renowned for its extreme lasting power this creamy liner delivers intense pigmentation and precise application in an easy twist-up tube that never needs sharpening.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "957",
+ "brand": "nyx",
+ "name": "Slide On Pencil",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbdf94a20/ProductImages/Eyes/Slide_On_Pencil/slideonpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Don\u2019t let the softness of this pencil fool you. This formula doesn't smear or smudge and delivers powerful robust colors. It\u2019s like a liquid eye liner without the mess. Available in 18 sleek shades. Our Slide on Pencils can be sharpened with a sharpener that has an opening for a small pencil. Get your NYX Professional Makeup Sharpener",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "956",
+ "brand": "nyx",
+ "name": "Jumbo Eye Pencil",
+ "price": 4.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda543a41/ProductImages/Eyes/Jumbo_Eye_Pencil/jumboeyepencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "955",
+ "brand": "nyx",
+ "name": "Two Timer Dual Ended Eyeliner",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcd8987df/ProductImages/Eyes/Two_Timer_Dual_Ended_Eyeliner/twotimerdualendedeyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Having it all is possible with this incredibly edgy new makeup weapon. The combination of the precision of liquid liner with the ease of application of a kohl pencil is the perfect match to create a variety of dramatic looks. When the cat eye meets the smoldering intensity of a smoky eye look - who knows where the night will take you?",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "954",
+ "brand": "nyx",
+ "name": "Strictly Vinyl Eyeliner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1498d09f/ProductImages/2018/Eyes/Strictly_Vinyl_Eyeliner/strictlyvinyleyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Ready to give Strictly Vinyl Eyeliner a spin? Take your pick from the eight epic colors included in our vibrant catalog. Featuring a flexible and slim brush, this high-shine liquid eyeliner glides on effortlessly and delivers an intensely lacquered look you\u2019ll want to rock again\u2026and again!",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "953",
+ "brand": "nyx",
+ "name": "Collection Chocolate",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbccef58f/ProductImages/Eyes/Collection_Chocolate/collectionchocolate_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "What\u2019s better than a guilt-free treat! Feast your eyes on our Collection Chocolate in 6 of our most delectable liners. The mouthwatering formula is smudge proof and comes in satin matte glossy or liquid.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "952",
+ "brand": "nyx",
+ "name": "Super Fat Eye Marker",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8c640821/ProductImages/Eyes/Super_Fat_Eye_Marker/superfateyemarker_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Here\u2019s a real magic marker: The extra wide felt tip eye liner is perfect for creating a dramatic cat-eye look. The eye marker application is smooth and the striking results are long-lasting.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "951",
+ "brand": "nyx",
+ "name": "Super Skinny Eye Marker",
+ "price": 9.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwea7c51df/ProductImages/Eyes/Super_Skinny_Eye_Marker/superskinnyeyemarker_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "The micro-fine felt tip on this eyeliner means you can use it for everything from filling in your eyelash line to a subtle cat-eye look.The eye marker application is flawless and the results are fabulous.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "950",
+ "brand": "nyx",
+ "name": "Felt Tip Liner",
+ "price": 9.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw16b77618/ProductImages/Eyes/Felt_Tip_Liner/feltipliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our Felt Tip Eyeliner gives you the ultimate control in creating bold and precise lines in 3 opulent shades\u2014extreme black dark brown and jet black. The eyeliner marker releases the ideal amount of ink for decidedly dramatic eyes.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "949",
+ "brand": "nyx",
+ "name": "The Curve",
+ "price": 15.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6a4af1d6/ProductImages/Eyes/The_Curve/thecurve_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "The original \u2013 The Curve! An innovative ergonomic shape that makes applying liquid liner mistake-proof. The grip zone provides just the right hold to make application precise secure and best of all...beautifully effortless results.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "948",
+ "brand": "nyx",
+ "name": "Colored Felt Tip Liner",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa801b855/ProductImages/2016/Eyes/Colored_Felt_Tip_Liner/coloredfelttipliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Line your lids with style and rock a range of captivating looks with our new Colored Felt Tip Liners. Available in six brilliant shades, each liquid liner features a precision felt-tip brush and an easy-to-use \u201cgrip zone\u201d for precise, clean, pro-level application every time.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "947",
+ "brand": "nyx",
+ "name": "Vinyl Liquid Liner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9723d9ae/ProductImages/Eyes/Vinyl_Liquid_Liner/vinylliquidliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Rock and roll with our pure shine liquid liner! The extra fine flexible brush helps ensure a flawless even line with a high gloss finish.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "946",
+ "brand": "nyx",
+ "name": "That's The Point Eyeliner",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwed5f712e/ProductImages/2017/Eyes/Thats_The_Point_Eyeliner/thatsthepointeyeliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "945",
+ "brand": "nyx",
+ "name": "White Liquid Liner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0fd19ef1/ProductImages/Eyes/White_Liquid_Liner/whiteliquidliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Get bright-eyed in a blink with our opaque water resistant liquid white liner. Perfect for the lash or waterline the precision brush helps create a defined white line leaving you with standout eyes and a lasting matte finish.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "944",
+ "brand": "nyx",
+ "name": "Studio Liquid Liner",
+ "price": 4.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1a631541/ProductImages/Eyes/Studio_Liquid_Liner/studioliquidliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Transform your look in seconds with this super-pigmented eyeliner that highlights eyes with an electrifying stroke of color. The fine brush tip allows for precision application and can be used to create lines of varying thickness. Go subtle or go glam.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "943",
+ "brand": "nyx",
+ "name": "Epic Ink Liner",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1c0eb02f/ProductImages/2017/Eyes/Epic_Ink_Liner/800897085605_epicinkliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Live for super-sharp wing inspo? Don\u2019t just \u201clike\u201d all your faves, draw \u2019em yourself using Epic Ink Liner. Featuring a slender and supple brush tip, this intensely pigmented, waterproof pen lets you achieve black liquid lines effortlessly. Every stroke is unbelievably fluid for a defined finish. Control the thickness of your lines by pressing down just a touch. Fine and natural, broad and bold\u2014the look is always up to you!",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "942",
+ "brand": "nyx",
+ "name": "Glam Liner Aqua Luxe Collection",
+ "price": 5.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw37148f7b/ProductImages/Eyes/Glam_Liner_Aqua_Luxe_Collection/glamlineraqualuxecollection_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Stand out from the crowd with these new eye-catching liquid liners. Available in 9 vivacious shades these shimmering long-wearing liners have a flexible brush tip for perfectly precise surprisingly smooth application.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "941",
+ "brand": "nyx",
+ "name": "Matte Liquid Liner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwac1a91b0/ProductImages/Eyes/Matte_Liquid_Liner/800897836573_matteliquidliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Line and define with expert precision using our Matte Liquid Liner. A makeup artist must-have for bold and classic looks the precision brush tip allows you to effortlessly achieve an ultra-fine and exquisite matte finish.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "940",
+ "brand": "nyx",
+ "name": "Vivid Brights Liner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5b4da1c3/ProductImages/2016/Eyes/Vivid_Brights_Liner/vividbrightsliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Line your lids with vibrant color with our new Vivid Brights Liners. Available in nine incredible shades, these pro-level liners deliver instant and intense color payoff.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "939",
+ "brand": "nyx",
+ "name": "SFX Setting Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd3ce6c29/ProductImages/2016/More/SFX_Setting_Powder/sfxsettingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "938",
+ "brand": "nyx",
+ "name": "Holographic Halo Finishing Powder",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2945b62d/ProductImages/2018/Face/Holographic_Halo_Finishing_Powder/holographichalofinishingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Glow your own way using Holographic Halo Finishing Powder! This ultra-fine loose powder comes in two pearly shades and delivers an ethereal look that\u2019s crazy gorgeous. Lightly dust it all over your complexion to set and softly illuminate, or along the highest points of the face\u2014like the bridge of the nose, cheekbones or Cupid\u2019s bow\u2014to add a touch of radiance here and there.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "937",
+ "brand": "nyx",
+ "name": "Blotting Powder",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1f4a57e0/ProductImages/Face/Blotting_Powder/800897822620_blottingpowder_light_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Kissed with the barest hint of pigment Blotting Powder takes down the shine without settling into fine lines polishing skin to satin matte perfection.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "936",
+ "brand": "nyx",
+ "name": "#NOFILTER Finishing Powder",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd7e25eb8/ProductImages/2016/Face/No_Filter_Finishing_Powder/nofilterfinishingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Introduce us to someone who doesn\u2019t love a good photo filter, and we\u2019ll introduce you to our secret herd of pet unicorns. Our point? When it comes to getting our picture taken, we all love a good filter. That\u2019s why we created #NoFilter Finishing Powder--our amazing new product that delivers a finish as flawless and soft as the most flattering filters on Instagram and beyond.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "935",
+ "brand": "nyx",
+ "name": "Color Correcting Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw78639528/ProductImages/Face/Color_Correcting_Powder/colorcorrectingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Even out your complexion using our ultra-fine translucent loose Color Correcting Powder. This lightweight easy to use powder can be applied before or after your foundation. The paraben and talc-free formula helps you achieve a natural matte finish.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "934",
+ "brand": "nyx",
+ "name": "High Definition Finishing Powder Mini",
+ "price": 3.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw63a5fdce/ProductImages/2017/Face/High_Definition_Finishing_Powder_Mini/800897846015_highdefinitionfinishingpowdermini_translucent_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Your favorite beauty essential is now available in a convenient travel sized mini. A lightweight, translucent finishing powder that helps soften the appearance of fine lines and pores. This silky pressed powder has a fresh matte finish.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "933",
+ "brand": "nyx",
+ "name": "Primal Colors",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2872d6ca/ProductImages/Eyes/Primal_Colors/primalcolors_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Unleash your inner theatrical makeup artist with these incredible pressed pigments. Creates a variety of special effects with the ultimate staying power.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "932",
+ "brand": "nyx",
+ "name": "Radiant Finishing Powder",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf8ec0855/ProductImages/Face/Radiant_Finishing_Powder/radiantfinishingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Two ways to get your glow on. A luminous multicolored finishing powder to brighten and perfect and a warm shimmering shade for sunkissed radiance.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "931",
+ "brand": "nyx",
+ "name": "Mineral Finishing Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw66d2b512/ProductImages/Face/Mineral_Finishing_Powder/800897815455_mineralfinishingpowder_lightmedium_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A mineral finishing powder that sets your favorite look with a flawless finish; skin appears fresh and radiant throughout the day. Just a hint of color provides enough coverage to be worn over makeup or on bare moisturized skin.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "930",
+ "brand": "nyx",
+ "name": "High Definition Finishing Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw090ffa50/ProductImages/Face/High_Definition_Finishing_Power/800897834661_highdefinitionfinishingpowder_translucent_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A lightweight, translucent finishing powder that helps soften the appearance of fine lines and pores. This silky pressed powder has a fresh matte finish.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "929",
+ "brand": "nyx",
+ "name": "Studio Finishing Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw3aaafbb3/ProductImages/Face/Studio_Finishing_Powder/studiofinishingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A miracle in a jar! This 100% pure mineral silica finishing powder is perfect for setting your foundation or wearing alone. The luminous white powder goes on neutral and works on all skin tones. It leaves your skin looking radiant and luminous. Use lightly...a little goes a long way.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "928",
+ "brand": "nyx",
+ "name": "Tango With Bronzing Powder",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw99f3e999/ProductImages/Face/Tango_With_Bronzing_Powder/tangowithbronzingpowder_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "It takes two to tango with our brilliant bronzing powder to kickstart your look. Our mosaic bronzer shades create a golden glow on the face and body\u2014like you\u2019ve just returned from a Caribbean getaway. Sun-kissed never looked this beautiful.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "927",
+ "brand": "nyx",
+ "name": "Illuminator",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5248da3f/ProductImages/Face/Illuminator/800897809003_illuminator_narcissistic_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Brighten up your complexion! The radiant shimmer of this illuminator diffuses light so your skin looks vibrant and refreshed while adding a subtle glow. Available in 5 radiant colors.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "926",
+ "brand": "nyx",
+ "name": "Matte Bronzer",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwed153ea9/ProductImages/Face/Matte_Bronzer/800897809058_mattebronzer_light_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Perfect for Spring Summer and beyond \u2013 the Matte Bronzers have arrived! Achieve a natural and healthy looking complexion using any of the powder bronzers available in five russet shades. Perfect for that desired honey glow all year long!",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "924",
+ "brand": "nyx",
+ "name": "Sweet Cheeks Blush Palette",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa0a9cf48/ProductImages/2016/Face/Sweet_Cheeks_Blush_Palette/sweetcheeksblushpalette_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Get swept away by our drop-dead gorgeous Sweet Cheeks Blush Palette. This collection features eight highly pigmented and buttery-smooth colors that flawlessly suit any skin tone. Perfect for everyone from the pro on the go to the budding beauty guru, our irreplaceable set brings together a variety of exclusive shades in both matte and shimmery finishes. It\u2019s true--we\u2019ve got a serious blush crush!",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "923",
+ "brand": "nyx",
+ "name": "Cheek Contour Duo Palette",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb9e0511a/ProductImages/2016/Face/Cheek_Contour_Duo_Palette/800897012007_cheekcontourduopalette_doubledate_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Create natural-looking contours, sun-kissed cheeks and a gorgeous, lit-from-within glow with our new Cheek Contour Duos. Available in six silky shade combinations, each luxurious compact makes it easy to perfect your complexion on the go.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "922",
+ "brand": "nyx",
+ "name": "High Definition Blush Pro Refills",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw587b93a7/ProductImages/Face/High_Definition_Pro_Blush_Refills/highdefinitionproblushrefills_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "921",
+ "brand": "nyx",
+ "name": "Bright Idea Illuminating Stick",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwc8112b7d/ProductImages/2016/Face/Bright_Idea_Illuminating_Stick/brightideailluminatingstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Brighten things up with one of our new Bright Idea Illuminating Sticks! Available in a range of radiating hues--including four highlighters, four blushes and four bronzers--each creamy-soft shade goes on smoothly and sets right away for an instant, lit-from-within glow. Petite, portable and perfect for strobing, it\u2019s the makeup must-have of the season.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "920",
+ "brand": "nyx",
+ "name": "Rouge Cream Blush",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw91979480/ProductImages/Face/Rouge_Cream_Blush/rougecreamblush_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "More delicious than peaches and cream? We like to think so. Our velvety smooth mineral Rouge Cream Blush offers a sheer wash of radiant color. The glorious payoff is dewy sultry and long-lasting.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "919",
+ "brand": "nyx",
+ "name": "Mosaic Powder Blush",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5b50439f/ProductImages/Face/Mosaic_Powder_Blush/800897124533_mosaicpowderblush_highlighter_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "This medley of 9 matte and shimmery colors creates a flush of color and dazzling glow for every skin tone. Use to highlight enhance brighten and bronze. Each mosaic of color blends beautifully with magical results.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "918",
+ "brand": "nyx",
+ "name": "Baked Blush",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwfdfb0cd6/ProductImages/Face/Baked_Blush/800897824181_bakedblush_fullonfemme_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Baked to sheer perfection this luxurious formula is packed full of pigments to provide a natural glow and highlight to the face. Uniquely designed to be used wet or dry depending upon the makeup statement you want to make. When used dry with a brush the look is light and fresh. Want more color? No Problem! Apply wet with a makeup sponge for more intensity.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "917",
+ "brand": "nyx",
+ "name": "Bronzer & Blusher Combo",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa51d41b7/ProductImages/Face/Bronzer_And_Blusher_Combo/bronzerandblushercombo_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Get the perfect sun-kissed glow with complementing color combinations from our Bronzer/Blusher Combo. Each blush and bronzer pairing features flattering and natural-looking hues. With 5 shades to choose from it is easier than ever to achieve an impeccable Springtime and Summertime glow.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "916",
+ "brand": "nyx",
+ "name": "High Definition Blush",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw565af449/ProductImages/Face/High_Definition_Blush/highdefinitionblush_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A high definition lightweight blush that blends evenly. This vibrant and silky blush delivers a beautiful flush of color and is paraben free.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "915",
+ "brand": "nyx",
+ "name": "Ombre Blush",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw87fb4a6b/ProductImages/2016/Face/Ombre_Blush/ombreblush_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Treat your cheeks to a radiant flush of color with our Ombr\u00e9 Blush, a new gradient blush inspired by the ombr\u00e9 trend. This must-have formula features two silky colors blended into one perfectly coordinated shade combo. (It\u2019s like they were meant for each other.)",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "914",
+ "brand": "nyx",
+ "name": "Stick Blush",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb08ab0fe/ProductImages/Face/Stick_Blush/stickblush_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Add a touch of color with our creamy and extremely pigmented Stick Blush! Available in eight rich shades! Apply and receive the perfect glow every day!",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "913",
+ "brand": "nyx",
+ "name": "Powder Blush",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw12ca4942/ProductImages/Face/Powder_Blush/powderblush_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Our pressed powder blush delivers sheer silky color that glides on easily blends beautifully and creates a natural glow. The formula is richly-pigmented and lasts for hours.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "912",
+ "brand": "nyx",
+ "name": "Gotcha Covered Concealer Pencil",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8ad0514f/ProductImages/2016/Face/Gotcha_Covered_Concealer_Pencil/gotchacoveredconcealerpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Skin imperfections, beware! When it comes to covering up discoloration, our new Gotcha Covered Concealer Pencil does NOT mess around. Available in 20 blendable shades, this luxurious concealer is a master at spot concealing.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "911",
+ "brand": "nyx",
+ "name": "Conceal, Correct, Contour Palette",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbef45c94/ProductImages/Face/Conceal_Correct_Contour_Palette/800897831479_concealcorrectcontourpalette_light_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Color-match your skin using our perfecting and correcting palettes to conceal, correct, or contour. With six shades to choose from in each set you can cover up problem spots even out imperfections and accentuate your best features in a flash. Use these buildable colors on their own or combine them to create the ideal tone.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "910",
+ "brand": "nyx",
+ "name": "Wonder Pencil",
+ "price": 4.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5e345fad/ProductImages/Face/Wonder_Pencil/wonderpencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Wonder Pencil\u2026the essential pencil that fulfills all of your beauty desires. Conquer 3 critical make-up tasks with one product: CONCEAL flaws and blemishes with creamy precision; LINE your lips against lipstick bleeding and fading; and BRIGHTEN your eyes along the water line. Will wonders never cease? Not with the Wonder Pencil in your bag!",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "909",
+ "brand": "nyx",
+ "name": "Dark Circle Concealer",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw477d3d9a/ProductImages/Face/Dark_Circle_Concealer/800897822958_darkcircleconcealer_light_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A serious solution for one of beauty\u2019s most challenging problems! No fancy names just a product that can be counted on to do the job. The product glides on without looking thick or obvious. The subtle hint of orange counteracts the appearance of dark circles while natural skin-toned pigments work in unison to provide the ultimate coverage.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "908",
+ "brand": "nyx",
+ "name": "Gotcha Covered Concealer",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw947da0d5/ProductImages/Face/Gotcha_Covered_Concealer/gotchacoveredconcealer_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Gotcha Covered Concealer always has your back! Now available in 10 more gorgeous shades, our waterproof, full coverage concealer effectively covers up discolorations and imperfections without creasing or caking. Infused with coconut oil, this highly blendable concealer also leaves your face with a healthy-looking glow.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "907",
+ "brand": "nyx",
+ "name": "Color Correcting Palette",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb6d96368/ProductImages/Face/Color_Correcting_Palette/800897834722_colorcorrectingpalette_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Treat your face to the ultimate concealer palette in six color correcting shades. Customizable to create your ideal shade to cover imperfections the lightweight formula glides on for an ultra-smooth finish and leaves skin feeling soft and supple.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "906",
+ "brand": "nyx",
+ "name": "Concealer Jar",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw04c31800/ProductImages/Face/Concealer_Jar/concealerjar_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Obscure imperfections and blur away problem areas with one of our Concealer Jars. Now available in 10 more shades to accommodate an even wider range of skin tones, this creamy formula stands up to the villains of unwelcome imperfections with a vengeance.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "905",
+ "brand": "nyx",
+ "name": "HD Photogenic Concealer Wand",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw10ab1d12/ProductImages/2016/Face/HD_Photogenic_Concealer_Wand/concealerwand_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Now available in 12 more shades to accommodate an even wider range of skin tones, our best-selling HD Studio Photogenic Concealer effectively covers imperfections, discoloration and under-eye circles without ever looking cakey or obvious. The result is beautiful, natural-looking coverage you can count on.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "904",
+ "brand": "nyx",
+ "name": "Tinted Moisturizer",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw8cbca26c/ProductImages/Face/Tinted_Moisturizer/tintedmoisturizer_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Lightweight with just a hint of sheer color this hydrating formula makes skin feel softer and smoother. The dewy natural glow provides a \u201cno-makeup\u201d look and feel yet covers imperfections with a natural hydrating touch.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "903",
+ "brand": "nyx",
+ "name": "Define & Refine Powder Foundation",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwe1ce6d79/ProductImages/Face/Define_And_Refine_Powder_Foundation/defineandrefinepowderfoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "This essential medium to full coverage compact features a deeper crescent of color with a hint of pearl. Blend them together to customize your look for perfection year-round.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "902",
+ "brand": "nyx",
+ "name": "BB Cream",
+ "price": 13.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa8106b14/ProductImages/Face/BB_Cream/800897822927_bbcream_natural_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Perfect the \u201cno makeup\u201d look with our BB Cream. Specially formulated without oil, this mineral-infused formula hydrates the skin and helps the complexion appear smoother. Wear it as a primer under your foundation, or alone for a touch of lightweight color.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "901",
+ "brand": "nyx",
+ "name": "Invincible Fullest Coverage Foundation",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw84635185/ProductImages/2016/Face/Invincible_Foundation/invinciblefoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Have something to hide? We\u2019ve got just the thing for you. Now available in five more shades to accommodate a wider range of skin tones, NYX Professional Makeup Invincible Fullest Coverage Foundation offers exceptional coverage with natural-looking finish. The incredibly high-pigment load has the super powers to hide even the most challenging cover-ups, including skin discolorations and more. The finished look is soft, matte, beautiful and flawless.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "900",
+ "brand": "nyx",
+ "name": "Mineral Stick Foundation",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw25bdfa2c/ProductImages/Face/Mineral_Stick_Foundation/mineralstickfoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Portable and buildable, our Mineral Stick Foundation is ideal when you\u2019re on the move. The luxurious formula is easy to apply and extremely blendable, which allows for flawless highlighting and contouring. You can also use this versatile foundation on the entire face or in isolated areas that need a little extra attention \u2013 it\u2019s all up to you! Our creamy foundation is now available in six new shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "899",
+ "brand": "nyx",
+ "name": "Stay Matte But Not Flat Liquid Foundation",
+ "price": 7.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw98d18f1b/ProductImages/Face/Stay_Matte_But_Not_Flat_Liquid_Foundation/staymattebutnotflatliquidfoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Now available in 10 more gorgeous shades, Stay Matte But Not Flat Liquid Foundation provides full coverage with a mineral enriched matte finish and accommodates more skin tones than ever before. The oil-free and water-based formula is perfect for both day and nighttime wear.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "898",
+ "brand": "nyx",
+ "name": "Stay Matte But Not Flat Powder Foundation",
+ "price": 9.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7771a0c9/ProductImages/Face/Stay_Matte_But_Not_Flat_Powder_Foundation/staymattebutnotflatpowderfoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Want a matte finish to help you achieve a flawless-looking complexion? Now available in 10 more gorgeous shades, our Stay Matte But Not Flat Powder Foundation provides the perfect finish to flatter more skin tones than ever before. You\u2019ll look naturally flawless with minimal effort!",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "897",
+ "brand": "nyx",
+ "name": "HD Studio Photogenic Foundation",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw37943ebb/ProductImages/2017/Face/High_Definition_Foundation/800897051822_highdefinitionfoundation_chestnut_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Flawless-looking skin is no longer just for celebrities and models! Now available in 20 blendable shades, our HD Studio Photogenic Foundation uses light-diffusing technology to enhance the appearance of silky-smooth skin. Achieve a picture-perfect look anytime you\u2019re in the spotlight.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "896",
+ "brand": "nyx",
+ "name": "Hydra Touch Powder Foundation",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0bf2e8ad/ProductImages/Face/Hydra_Touch_Powder_Foundation/hydratouchpowderfoundation_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A weightless pressed powder that offers buildable coverage with a matte finish. Now available in five more silky shades, Hydra Touch Powder Foundation can be applied dry or wet. Our innovative formula also contains moisturizing botanical extracts to leave skin looking soft and fresh.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "895",
+ "brand": "nyx",
+ "name": "Pro Foundation Mixer",
+ "price": 10.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9dcfebd8/ProductImages/2016/Face/Pro_Foundation_Mixer/profoundationmixer_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Your custom shade is just a Pro Foundation Mixer away! Our new shade mixers are designed to adjust the tone, shade and finish of any liquid foundation, resulting in a truly perfect match.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "894",
+ "brand": "nyx",
+ "name": "Total Control Drop Foundation",
+ "price": 14.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2afa7b45/ProductImages/2017/Face/Total_Control_Drop_Foundation/800897068837_totalcontroldropfoundation_buff_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "893",
+ "brand": "nyx",
+ "name": "#LOTD Lip Of The Day Liquid Lip Liner",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw226b9283/ProductImages/2016/Lips/Lip_Of_The_Day_Liquid_Lip_Liner/lipoftheday_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Bring the party to your pout with our new Lip of the Day Liquid Lip Liner! Available in ten gorgeously vivid shades, these versatile lip liners are absolute must-haves for anyone looking to take their lip artistry skills to the next level.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "892",
+ "brand": "nyx",
+ "name": "Slide On Lip Pencil",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2696bfe3/ProductImages/2017/Lips/Slide_On_Lip_Pencil_2017/slideonlippencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Draw out your pout with a stroke of rich color. Our Slide On Lip Pencil is now available in 14 all-new shades\u2014from bold blue-green to deep nude and pastel lilac. Like the much-loved eyeliner it\u2019s named after, this waterproof lip pencil glides on super-smooth and delivers a highly pigmented Matte finish. Line your lips or fill \u2019em in for defined and enriched lip color using any of these 28 incredible shades. Our Slide on Lip Pencils can be sharpened with a sharpener that has an opening for a small pencil. Get your NYX Professional Makeup Sharpener",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "891",
+ "brand": "nyx",
+ "name": "Retractable Lip Liner",
+ "price": 5.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw2524f26b/ProductImages/Lips/Retractable_Lip_Liner/retractablelipliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Love your lips! Create the perfect pout with our creamy, richly pigmented liner in an easy twist-up pencil. Renowned for its staying power! Available in 19 irresistible shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "890",
+ "brand": "nyx",
+ "name": "Suede Matte Lip Liner",
+ "price": 4.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7477bc7c/ProductImages/2016/Lips/Suede_Matte_Lip_Liner/suedemattelipliner_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Buh-bye creamy lip colors! See ya shimmery shades! A velvety, matte lip is an absolute must and we\u2019ve got just the goodie to help you get it done right: Suede Matte Lip Liner. Available in 36 richly pigmented hues, these pencils were created with colors from a few NYX Professional Makeup fan faves in mind--our Liquid Suede Cream Lipstick, Matte Lipstick and Soft Matte Lip Cream to be exact. Every shade goes on super smooth and provides the perfect base for our much-loved matte lippies.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "889",
+ "brand": "nyx",
+ "name": "Slim Lip Pencil",
+ "price": 4.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwbbca9dd2/ProductImages/Lips/Slim_Lip_Pencil/Slim_Lip_Pencil/slimlippencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Slim, trim, but never prim our lip pencils come in a variety of dashing shades - from auburn to orange and traffic-stopping red. The buttery long-wearing lip liner formula goes on easily and resists bleeding.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "888",
+ "brand": "nyx",
+ "name": "Luv Out Loud Liquid Lipstick",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw063995a2/ProductImages/2017/Lips/Luv_Out_Loud_Liquid_Lipstick/luvoutloudliquidlipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "What qualities make a person beautiful? Passion, confidence and fearlessness, to name a few. Available in six velvety-matte shades, our new Luv Out Loud Liquid Lipsticks capture the attributes we at NYX Professional Makeup find truly beautiful. Gift one, two-or all six lippies to a friend who rocks these amazing qualities and inspires you to live (and luv!) out loud.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "887",
+ "brand": "nyx",
+ "name": "V'Amped Up! Lip Top Coat",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw88030be7/ProductImages/Lips/Vamped_Up_Lip_Top_Coat/vampedupliptopcoat_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Cast a spell on your neutral lippies with a swipe of our wicked V'Amped Up! Lip Top Coat. Infused with shea butter and Vitamin E this glossy pencil moisturizes while transforming light lip colors to deep vampy shades.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "886",
+ "brand": "nyx",
+ "name": "Simply Pink Lip Cream",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw013dc65e/ProductImages/Lips/Simply_Pink_Lip_Cream/simplypinklipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Get ready to look seriously pretty in pink. From natural to extreme pick your favorite shade from our Simply Pink Lip Creams for a rosy and glossy finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "885",
+ "brand": "nyx",
+ "name": "Simply Red Lip Cream",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw4879365d/ProductImages/Lips/Simply_Red_Lip_Cream/simplyredlipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A classic red pout never goes out of style! Our Simply Red Lip Cream collection gives you loads of color options varying from deep bright or pure red that you can\u2019t go wrong with.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "884",
+ "brand": "nyx",
+ "name": "Simply Nude Lip Cream",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6790cad4/ProductImages/Lips/Simply_Nude_Lip_Cream/simplynudlipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Bare is beautiful with our Simply Nude Lip Creams available in six earthy shades. Swipe on this velvety and moisturizing cream to leave your lips with a subtle satin finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "883",
+ "brand": "nyx",
+ "name": "Macaron Lippies",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw09b47e3c/ProductImages/Lips/Macaron_Lippie/macaronlippies_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Fantasize in color with our neon and pastel lippies in 12 of the creamiest shades you\u2019ll ever use. Our cruelty-free formula is packed with pigment and has a satin matte finish for long-wearing resilience.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "882",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Metal",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwda28cbbe/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_metal/inyourelementlipstickmetal_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A match made in makeup heaven! Our new In Your Element Lipstick Metal collection pairs perfectly with our sparkle inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from metallic gold, to glossy deep-berry and metallic bronze. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "881",
+ "brand": "nyx",
+ "name": "Whipped Lip & Cheek Souffl\u00e9",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwcffa1f2c/ProductImages/Lips/Whipped_Lip_And_Cheek_Souffle/whippedlipandcheeksouffle_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Indulge your cravings with our Whipped Lip & Cheek Souffl\u00e9. Our two-in-one mousse can be used to precisely line lips and on the apples of your cheeks for a soft, natural flush. Achieve a delicious wash of color with a matte finish using this creamy and multipurpose formula.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "880",
+ "brand": "nyx",
+ "name": "Wicked Lippies",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5d579d16/ProductImages/Lips/Wicked_Lippies/wickedlippies_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Take a walk on the wicked side with our jewel-toned lippies available in 12 shimmering shades. Velvety smooth with a dazzling metallic finish - these richly pigmented lipsticks will leave your lips with the ultimate spellbinding look.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "879",
+ "brand": "nyx",
+ "name": "Simply Vamp Lip Cream",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw48514b30/ProductImages/Lips/Simply_Vamp_Lip_Cream/simplyvamplipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Vamp up your look instantly with our smooth and smoldering lip creams. Wear any of these six bewitching shades to brew up a little beauty magic.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "878",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Water",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw649c09f1/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_water/inyourelementlipstickwater_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A match made in makeup heaven! Our new In Your Element Lipstick Water collection pairs perfectly with our heat-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from metallic black-violet, to matte true nude and glossy plum. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "877",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Wind",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwb5cd298c/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_wind/inyourelementlipstickwind_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A match made in makeup heaven! Our new In Your Element Lipstick Wind collection pairs perfectly with our breeze-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from glossy nude, to matte navy blue and metallic brown with blue pearl. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "876",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Fire",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf9f0c84b/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_fire/inyourelementlipstickfire_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A match made in makeup heaven! Our new In Your Element Lipstick Fire collection pairs perfectly with our heat-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from matte red, to glossy black and matte, warm mauve. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "875",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Air",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7fdf92ae/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_air/inyourelementlipstickair_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "874",
+ "brand": "nyx",
+ "name": "Jumbo Lip Pencil",
+ "price": 4.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw20d954dc/ProductImages/Lips/Jumbo_Lip_Pencil/jumboeyepencil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "873",
+ "brand": "nyx",
+ "name": "In Your Element Lipstick - Earth",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw16c5dd05/ProductImages/2017/Holiday/in_your_element_lipsticks/in_your_element_lipstick_earth/inyourelementlipstickearth_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "A match made in makeup heaven! Our new In Your Element Lipstick Earth collection pairs perfectly with our nature-inspired eyeshadow palette. These three exclusive lip colors come in seriously rich shades and finishes-from deep metallic copper, to glossy, deep berry and matte brown. Encased in a sleek, black lacquered case, each lipstick's luxurious magnetic closure seals with a click.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "872",
+ "brand": "nyx",
+ "name": "Butter Lipstick",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf73b3195/ProductImages/2016/Lips/Butter_Lipstick_Extension/butterlipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Treat your lips to a kiss of smooth, creamy color with our irresistible Butter Lipsticks in 12 new luscious shades. The formula\u2019s delicate satin texture fused with highly saturated color delivers full-yet-lightweight coverage with a luxurious satin finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "871",
+ "brand": "nyx",
+ "name": "Extra Creamy Round Lipstick",
+ "price": 0.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw0048a5ab/ProductImages/Lips/Extra_Creamy_Round_Lipstick/extracreamyroundlipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Extra Creamy Round Lipstick is our classic lipstick for all occasions. The mineral-based emollient formula offers a beautiful velvet texture, saturated color and it resists wear and smudging. It\u2019s your go-to lipstick. From Pure Nude to Pink Lyric to Chic Red, Round Lipstick is available in a jaw-dropping variety of shades.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "870",
+ "brand": "nyx",
+ "name": "Matte Lipstick",
+ "price": 6.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw190a6040/ProductImages/2016/Lips/Matte_Lipstick_Extension/mattelipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Load your lips with plush, pigment-rich color choosing from 12 brand new shades of Matte Lipstick\u2014our shockingly smooth lip color that glides right on and stays in place with a silky matte finish that never feels dry. Now available in a range of fresh new hues, these playful pops of color are just what your spring wardrobe needs!",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "869",
+ "brand": "nyx",
+ "name": "Pro Lip Cream Palette",
+ "price": 12.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw46507c8a/ProductImages/2016/Lips/Pro_Lip_Cream_Palette/prolipcreampalette_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Pucker up\u2014your lips are in for a treat! Our new Pro Lip Cream Palettes feature six expertly coordinated color combinations of intensely pigmented lip creams. Wear each shade alone or blend \u2019em all together for a totally customized look!",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "868",
+ "brand": "nyx",
+ "name": "Full Throttle Lipstick",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw96029c57/ProductImages/2016/Lips/Full_Throttle_Lipstick/fullthrottlelipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "It\u2019s the color addict\u2019s ultimate fix and a makeup artist\u2019s dream: Our new waterproof Full Throttle Lipstick covers your lips with super-saturated matte color and features a unique bullet with a beveled edge for lining, filling and perfecting your pout to your heart\u2019s desire.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "867",
+ "brand": "nyx",
+ "name": "Plush Gel Lipstick",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9c3f0820/ProductImages/2016/Lips/Plush_Gel_Lipstick/plushgellipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Play up your pout with a silky stroke of Plush Gel Lipstick. Available in 12 totally vibrant shades, this lippie brings together an oh-so-soft feel and the high shine of a gloss. Drench lips in a wash of color for an instantly polished look anytime you crave a quick touch-up. Want a bolder finish? (Yes, please!) A second swipe is twice as nice.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "866",
+ "brand": "nyx",
+ "name": "Velvet Matte Lipstick",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw1e94f54f/ProductImages/2016/Lips/Velvet_Matte_Lipstick/velvetmattelipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Dress your lips in decadent color with our Velvet Matte Lipstick--a luxurious new lip color that glides right on and never feels dry. Housed in an elegant soft-touch case, each standout shade is a fashion statement in itself.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "865",
+ "brand": "nyx",
+ "name": "Turnt Up! Lipstick",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5c4a6ee3/ProductImages/2016/Lips/Turnt_Up_Lipstick/turntuplipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Speak volumes with a bold swipe of Turnt Up! Lipstick. Go as soft or get as loud as you like using our wide range of 22 statement-making shades. From chic nudes to deep vampy hues, these lightweight and creamy lippies glide on effortlessly. Leaving lips with a kiss of shine and high-impact color you can count on for an unforgettable look.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "864",
+ "brand": "nyx",
+ "name": "Pin-Up Pout Lipstick",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw5c89147f/ProductImages/2017/Lips/Pin_Up_Pout_Lipstick/pinuppoutlipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "From polka dots to pointy pumps, nothing compares to the classics. Our personal fave? Ever so creamy lip color, of course! Take yourself back to the signature lip that started it all with our Pin-Up Pout Lipstick. Inspired by the best of vintage beauty, this retro rouge covers lips in extra plush, richly pigmented and absolutely undeniable color. Our throwback lipstick also offers beautiful coverage in an array of 24 swoon-worthy shades.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "863",
+ "brand": "nyx",
+ "name": "Super Cliquey Matte Lipstick",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw6dcbd51c/ProductImages/2017/Lips/Super_Cliquey_Satin_Matte_Lipstick/supercliqueysatinmattelipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "862",
+ "brand": "nyx",
+ "name": "Powder Puff Lippie Powder Lip Cream",
+ "price": 8.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw481c25c3/ProductImages/2018/Lips/Powder_Puff_Lippie/powderpufflippie_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Pucker up and powder your pout! Featuring a pillowy cushion-applicator, our new Powder Puff Lippie Powder Lip Cream goes on mousse-y and sets to a powdery soft finish. Achieve a flush of color in eight vibrant shades\u2014from warm peach to true red, and hot pink to cool plum\u2014for an irresistible, just-kissed look.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "861",
+ "brand": "nyx",
+ "name": "Lip Lustre Glossy Lip Tint",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw42117915/ProductImages/2016/Lips/Lip_Lustre_Glossy_Lip_Tint/liplustreglossyliptint_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Lavish your pout with extraordinary shine and a hint of brilliant color with our new Lip Lustre Glossy Lip Tint! Silky smooth with a lightweight finish, this revolutionary formula glides on a gloss and adjusts to a gorgeous tint that lasts. (Yep, it\u2019s amazing.)",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "860",
+ "brand": "nyx",
+ "name": "Cosmic Metals Lip Cream",
+ "price": 7.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwffc4644e/ProductImages/2017/Lips/Cosmic_Metals_Lip_Cream/cosmicmetalslipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Intense, multidimensional color collides with the glistening effect of gloss for out-of-this world lips like you\u2019ve never seen before. Now available in six more nude-based shades\u2014from champagne gold and pink to a gorgeous deep brown laced with blue shimmer\u2014our creamy-smooth Cosmic Metals Lip Cream covers your lips in lustrous color and a dazzling metallic finish that feels and looks like a gloss.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "859",
+ "brand": "nyx",
+ "name": "Epic Ink Lip Dye",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw7d8fe312/ProductImages/2017/Lips/Epic_Ink_Lip_Dye/epicinklipdye_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Drench your kiss in knockout color! A stroke of Epic Ink Lip Dye coats lips with a downright dramatic stain. Super-saturated and lightweight, our formula dries to a Matte finish. This stunning lip dye is an absolute makeup bag must-have. Rock it alone for an effortlessly vibrant look. Or give your favorite lippies a boost by wearing it under a similar shade!",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "858",
+ "brand": "nyx",
+ "name": "Strictly Vinyl Lip Gloss",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd10df14c/ProductImages/2018/Lips/Strictly_Vinyl_Lip_Gloss/strictlyvinyllipgloss_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Strictly Vinyl Lip Gloss is music to our lips! Available in eight plush and pigment packed shades, this beyond glossy lippie is no one-hit wonder. Hardcore color and intense shine is always just a few swipes away.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "857",
+ "brand": "nyx",
+ "name": "Duo Chromatic Lip Gloss",
+ "price": 8.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwf51cf9e7/ProductImages/2018/Lips/Duo_Chromatic_Lip_Gloss/duochromaticlipgloss_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Want totally mesmerizing lips? Then chrome and get \u2019em with our brand-new Duo Chromatic Lip Gloss loaded with pearls. These lippies deliver awesome shine, a hint of color and an intense, 3-D finish. Each lightweight shade slips onto your lips smoothly without feeling sticky. Swipe them on alone or over any lipstick for an unforgettable effect.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "856",
+ "brand": "nyx",
+ "name": "Slip Tease Full Color Lip Oil",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwd377cdfa/ProductImages/2017/Lips/Slip_Tease_Full_Color_Lip_Oil/slipteasefullcolorlipoil_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "855",
+ "brand": "nyx",
+ "name": "Liquid Suede Metallic Matte",
+ "price": 7.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw9d2f72a4/ProductImages/2017/Lips/Liquid_Suede_Metallic_Matte/liquidsuedemetallicmatte_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Wrap your lips in high-impact metallic color with Liquid Suede Metallic Matte, a striking new lip inspired by our best-selling Liquid Suede Cream Lipstick. Available in 12 statement-making shades, these shockingly creamy lippies deliver instant dimension and incredible color payoff. In other words, get ready to slay.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "854",
+ "brand": "nyx",
+ "name": "Liquid Suede Cream Lipstick",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dwa19d7c26/ProductImages/Lips/Liquid_Suede_Cream_Lipstick/liquidsuedecreamlipstick_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Doll up your lips in plush and vibrant color! Our Liquid Suede Cream Lipstick glides on and sets into a striking matte finish. Now available in 12 more velvety-soft shades, this waterproof lippie creates a positively polished look with every swipe.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "853",
+ "brand": "nyx",
+ "name": "Lip Lingerie",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw00c7446b/ProductImages/2017/Lips/Lip_Lingerie_Extension/liplingerie_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Slip into something seductive with Lip Lingerie, our luxurious liquid lipstick with a plush, Matte finish. Available in the color-kissed hues you know and love\u2014from cinnamon pink and chocolate brown, to warm mahogany red and classic nude beige\u2014plus, 12 brand-new nudes! Each sultry shade will coat the curves of your lips with irresistibly creamy color.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "852",
+ "brand": "nyx",
+ "name": "Soft Matte Lip Cream",
+ "price": 6.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw663a4cdb/ProductImages/Lips/Soft_Matte_Lip_Cream/softmattelipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Now available in twelve more statement-making shades, our velvety smooth Soft Matte Lip Cream delivers a burst of creamy color and sets to a stunning matte finish. Surprisingly durable, lightweight and delightfully creamy, it\u2019s no wonder this sweetly scented formula is a fan favorite.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "851",
+ "brand": "nyx",
+ "name": "Soft Matte Metallic Lip Cream",
+ "price": 7.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-cpd-nyxusa-master-catalog/default/dw21376be0/ProductImages/2018/Lips/Soft_Matte_Metallic_Lip_Cream/softmattelipcream_main.jpg?sw=390&sh=390&sm=fit",
+ "description": "Now available in 12 statement-making metallics, our new Soft Matte Metallic Lip Cream shades deliver a burst of pearly color and set to a stunning matte finish. These little beauties are just as lightweight, delightfully creamy and sweetly scented as all the shades you know and love!",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "850",
+ "brand": "fenty",
+ "name": "MATTEMOISELLE - Plush Matte Lipstick",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dwc8c6d1b8/hi-res/FB40005_FB4014.jpg?sw=550 550w",
+ "description": "An ultra slim lipstick with a longwearing, petal-soft matte finish, created in a rainbow of 14 weightless, color-intense shades each designed to flatter all skin tones.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "849",
+ "brand": "fenty",
+ "name": "ECLIPSE - 2-in-1 Glitter Release Eyeliner",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw361a8ee8/hi-res/FB40002_FB4006.jpg?sw=550 550w",
+ "description": "A limited-edition liquid eyeliner with a transforming metallic-to-glitter formula that lets you choose your own finish.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "848",
+ "brand": "fenty",
+ "name": "COSMIC GLOSS - Lip Glitter",
+ "price": 19.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dwc6450206/hi-res/FB40001_FB4001.jpg?sw=550 550w",
+ "description": "A limited-edition glitter-packed lip gloss that delivers the ultimate triple-threat of creamy color, glitter, and shine.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "847",
+ "brand": "fenty",
+ "name": "MATCH STIX - Matte Skinstick",
+ "price": 25.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw50617083/hi-res/FB30003_FB3009.jpg?sw=550 550w",
+ "description": "A magnetized makeup stick in a longwear, light-as-air matte formula to conceal, correct, contour, and touch up in 20 shades.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "846",
+ "brand": "clinique",
+ "name": "Even Better™ Compact Makeup Broad Spectrum SPF 15",
+ "price": 32.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7M81_181x209.png",
+ "description": "A light cream with a powdery finish, our compact makeup creates more even-toned skin, instantly. Shades for Very Fair, Moderately Fair, Medium, Deep.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "845",
+ "brand": "clinique",
+ "name": "Redness Solutions Makeup Broad Spectrum SPF 15 With Probiotic Technology",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_70JW_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "844",
+ "brand": "clinique",
+ "name": "Stay-Matte Oil-Free Makeup",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7KXC_181x209.png",
+ "description": "Tested for streaking and fading at 88\u00b0F with a constant 80% humidity, all to prove Stay-Matte stays fresh. At the same time, this patent-pending formula absorbs shine, controls oil, resists sweat. And you stay matte all day.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "843",
+ "brand": "clinique",
+ "name": "Repairwear Laser Focus™ All-Smooth Makeup Broad Spectrum SPF 15",
+ "price": 36.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7C5H01_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "842",
+ "brand": "clinique",
+ "name": "Perfectly Real™ Compact Makeup",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6GTY_181x209.png",
+ "description": "Silky, oil-free formula looks like your skin\u2014only better. Optimizes skin's varying tones to create a more even appearance. Buildable coverage lasts for hours, yet feels like nothing at all. Controls shine. In a ready-to-go, ready-to-perfect compact. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "841",
+ "brand": "clinique",
+ "name": "Chubby in the Nude™ Foundation Stick",
+ "price": 25.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH001_181x209.png",
+ "description": "Portable perfection for full-face coverage, or bare-minimum touch-ups. Creamy, moisturizing foundation stick blends easily. Builds from sheer to moderate coverage with a natural finish. Long-wearing. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "840",
+ "brand": "clinique",
+ "name": "Super City Block\u2122 BB Cushion Compact Broad Spectrum SPF 50",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZJE002_181x209.png",
+ "description": "Everything skin needs to face city life\u2014flawlessly. Buildable, breathable fluid makeup feels cool and weightless on skin, yet delivers a lasting natural-matte finish. High-level SPF and antioxidants help protect against skin-damaging UV, impurities and environmental aggressors. All in a ready-to-go compact with puff applicator.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "839",
+ "brand": "clinique",
+ "name": "Superpowder Double Face Makeup",
+ "price": 24.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_647J_181x209.png",
+ "description": "Powder and foundation combined in one portable compact. Long-wearing, full-coverage powder works as an over-foundation finisher or as a powder foundation. Extra-cling formula for double coverage.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "838",
+ "brand": "clinique",
+ "name": "Perfectly Real™ Makeup",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6AL9_181x209.png",
+ "description": "Feels like nothing at all. Yet creates your skin's most perfected, natural look. Patent-pending* micro-mirrored technology optically resurfaces skin. Ultra-lightweight liquid formula is oil-free, non-acnegenic. *US and International Patents Pending",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "837",
+ "brand": "clinique",
+ "name": "Beyond Perfecting™ Powder Foundation + Concealer",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH6AA_181x209.png",
+ "description": "A powder foundation and concealer in one for a natural, beyond perfected look that lasts all day. Even through sweat and humidity. Weightless powder makeup covers thoroughly without clogging pores. Skin breathes comfortably, colour stays true. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "836",
+ "brand": "clinique",
+ "name": "Acne Solutions™ Liquid Makeup",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6WPR_181x209.png",
+ "description": "Feels so fresh, looks so natural. Non-irritating, oil-free makeup helps blend away blemishes, neutralize redness. Medicated ingredients help treat existing breakouts and keep them from coming back.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "835",
+ "brand": "clinique",
+ "name": "Superbalanced™ Makeup",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_60QH_181x209.png",
+ "description": "The smart makeup. Liquid foundation with adjustable, oil-free coverage provides moisture and absorbs oil when and where needed. Silky upon application.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "834",
+ "brand": "clinique",
+ "name": "Stay-Matte Sheer Pressed Powder",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_645J_181x209.png",
+ "description": "Shine-absorbing, oil-free formula. Ultra-sheer texture gives skin a perfected matte appearance. Great for oily skin and oily spots. Maintains a fresh look and feel, even after frequent touch-ups.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "833",
+ "brand": "clinique",
+ "name": "Superbalanced\u2122 Silk Makeup Broad Spectrum SPF 15",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH401_181x209.png",
+ "description": "Slip on a silk-enriched makeup. Feel naked, yet covered to perfection. Control oil, yet hydrate where needed. Protect with SPF. Oil-free. Sheer to moderate coverage. Natural-matte finish. Ideal for Dry Combination to Oily Skin Types.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "832",
+ "brand": "clinique",
+ "name": "Even Better™ Makeup Broad Spectrum SPF 15",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6MNY_181x209.png",
+ "description": "Wear oil-free, dermatologist-developed Even Better Makeup SPF 15 and something amazing happens: Without any makeup, see improved clarity, a more even skin tone, visibly diminished age spots. For all ethnicities. In just 4 to 6 weeks. Broad spectrum SPF helps protect against future darkening. For continued benefits\u2014even after you take it off\u2014partner with Even Better Clinical Dark Spot Corrector.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "831",
+ "brand": "clinique",
+ "name": "Beyond Perfecting™ Foundation + Concealer",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_Z9FF_181x209.png",
+ "description": "A foundation-and-concealer in one for a natural, beyond perfected look that lasts all day. Lightweight, moisturizing makeup covers thoroughly without clogging pores. Skin breathes comfortably, colour stays true, even through sweat and humidity.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "830",
+ "brand": "clinique",
+ "name": "CliniqueFIT\u2122 Workout Makeup Broad Spectrum SPF 40",
+ "price": 29.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K4NG01_181x209.png",
+ "description": "Lightweight, sweat- and humidity-proof foundation that keeps up with your highly active life. Medium coverage, natural-matte finish wears for 12 long-lasting hours. Protects with SPF 40. Won\u2019t clog pores or cause breakouts. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "829",
+ "brand": "clinique",
+ "name": "Almost Powder Makeup",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6MPY02_181x209.png",
+ "description": "More than minerals. Skin looks, acts happier. Long-wear formula helps keep pores out of trouble. Antioxidants protect skin. This natural, perfecting \"no-makeup\" makeup is so lightweight, you'll never even feel it. So foolproof, you can apply it with a sponge, a brush-and almost with your eyes closed.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "828",
+ "brand": "clinique",
+ "name": "Clinique BIY™ Blend It Yourself Pigment Drops",
+ "price": 33.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZWXK0A_181x209.png",
+ "description": "Transform your favorite moisturizer into a BB, CC or fuller-coverage foundation. One drop of Clinique BIY\u2122 Blend It Yourself Pigment Drops creates sheer cover. Two or three, a flawless finish. Since Clinique BIY takes on the finish of the moisturizer you blend it with, expect a more matte finish with a mattifying moisturizer. Or a more dewy, radiant finish when blended with a moisturizer that contains optics.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "827",
+ "brand": "clinique",
+ "name": "Even Better Glow™ Light Reflecting Makeup Broad Spectrum SPF 15",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZY5X_181x209.png",
+ "description": "Moisturizing foundation instantly creates a natural radiance with subtle luminizing pigments. Wear it every day and over time bare skin glows on its own, thanks to vitamin C. Broad spectrum SPF 15 helps prevent future dark spots. Long-wearing, oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "826",
+ "brand": "clinique",
+ "name": "Acne Solutions™ Clearing Concealer",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6N4T_181x209.png",
+ "description": "Medicated concealer helps clear and prevent blemishes. Gentle, soothing formula provides natural-looking coverage as blemishes heal. In three skin tone shades to wear alone, under makeup or for touch-ups. Plus, a green tint to visually correct redness. Oil free.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "825",
+ "brand": "clinique",
+ "name": "Line Smoothing Concealer",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_65EF_181x209.png",
+ "description": "Oil-free formula actually \"bridges\" fine lines and wrinkles, smoothing and minimizing them for an instantly firmer look. Skin-brightening ingredients help counteract shadows, reduce redness, give skin more even tone. Ophthalmologist tested. Long-lasting, buildable.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "824",
+ "brand": "clinique",
+ "name": "All About Eyes™ Concealer",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6FKW_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "823",
+ "brand": "clinique",
+ "name": "Advanced Concealer",
+ "price": 20.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6296_181x209.png",
+ "description": "Cream-to-powder concealer delivers long-lasting, intensive camouflage. With daily use, helps firm and smooth. Won't creep or fade. Ophthalmologist tested.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "822",
+ "brand": "clinique",
+ "name": "Airbrush Concealer™",
+ "price": 22.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6CM2_181x209.png",
+ "description": "Instantly helps soften the look of fine lines and wrinkles. Light-diffusing optics brighten shadows. Creamy, light formula flows through for smooth brush-on, precision application. Ophthalmologist tested.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "821",
+ "brand": "clinique",
+ "name": "Continuous Coverage Makeup Broad Spectrum SPF 15",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_647G_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "820",
+ "brand": "clinique",
+ "name": "Beyond Perfecting™ Super Concealer Camouflage + 24-Hour Wear",
+ "price": 19.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K2HW01_181x209.png",
+ "description": "Cover up without touching up for 24 life-proof hours. Instantly and easily blends into skin to flawlessly conceal imperfections. Transfer-resistant formula stays put\u2014even through sweat and humidity. Provides immediate hydration to keep eye-area skin feeling comfortable, looking fresh and natural. 18 shades in total\u2014including a must-have apricot-colored corrector shade to help tackle dark circles and discolorations.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "819",
+ "brand": "clinique",
+ "name": "Moisture Surge™ CC Cream Hydrating Colour Corrector Broad Spectrum SPF 30",
+ "price": 39.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7WCP_181x209.png",
+ "description": "One simple step for glowing skin. Lightweight formula instantly colour corrects a range of complexion concerns - redness, dullness, sallowness - so all you see is a healthy-looking glow. Oil-free hydration and sunscreen mean a more flawless look tomorrow, too.\u00a0 Each versatile shade is appropriate for a range of skin tones and undertones.",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "818",
+ "brand": "clinique",
+ "name": "Acne Solutions BB Cream Broad Spectrum SPF 40",
+ "price": 39.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_Z54E_181x209.png",
+ "description": "A mattifying BB Cream specifically developed for blemish-prone or oily skins. Combines oil control, buildable coverage and UVA/UVB protection for a protected, shine-free complexion.\u00a0Lightweight, shake-well formula delivers a freshly-mixed application every time. Wears beautifully for 12-hours. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "817",
+ "brand": "clinique",
+ "name": "Age Defense BB Cream Broad Spectrum SPF 30",
+ "price": 38.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7KYL01_181x209.png",
+ "description": "This instant morning routine gives skin just about everything it needs for a quick start.",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "816",
+ "brand": "clinique",
+ "name": "Super City Block\u2122 BB Cushion Compact Broad Spectrum SPF 50 Refill",
+ "price": 25.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZLE601_181x209.png",
+ "description": "Everything skin needs to face city life\u2014flawlessly. Buildable, breathable fluid makeup feels cool and weightless on skin, yet delivers a lasting natural-matte finish. High-level SPF and antioxidants help protect against skin-damaging UV, impurities and environmental aggressors. All in a ready-to-go compact with puff applicator.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "815",
+ "brand": "clinique",
+ "name": "Wear Everywhere Neutrals All About Shadow™ 8-Pan Palette",
+ "price": 37.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZCAE02_181x209.png",
+ "description": "Versatile eye shadow palettes are perfect for day\u2026 amped up for night when you layer multiple shades for extra depth and dimension. Long-wearing shades are crease- and fade-resistant. Ophthalmologist tested, too.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "814",
+ "brand": "clinique",
+ "name": "Pretty Easy\u2122 Eye Palette",
+ "price": 22.25,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZJPL01_181x209.png",
+ "description": "Clinique's Pretty Easy Eye Palette comes with eight shades of long-wearing All About Shadow in a variety of finishes. For instant lashline definition, there's Skinny Stick, our no-sharpener-required eye liner in two must-have shades. Create your own custom eye looks or follow the illustrated how-tos.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "813",
+ "brand": "clinique",
+ "name": "All About Shadow™ Primer for Eyes",
+ "price": 21.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7W5C_181x209.png",
+ "description": "Skin-toned colour primer preps lids for improved shadow application and wear. Creates a neutral base that holds All About Shadow eye colour in place for up to 12 hours. Can be worn alone for a natural yet perfected look. Appropriate for sensitive eyes and contact lens wearers. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "812",
+ "brand": "clinique",
+ "name": "Lid Smoothie™ Antioxidant 8-Hour Eye Colour",
+ "price": 21.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_791P01_181x209.png",
+ "description": "Creamy, crease-resistant eye colour wears for 8 hours. Instantly cools thanks to a unique applicator. Nourishing ingredients coax fine lid lines into a blanket of smoothness. Antioxidants help protect eye-area skin.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "811",
+ "brand": "clinique",
+ "name": "Touch Base For Eyes™",
+ "price": 17.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6339_181x209.png",
+ "description": "No smearing, no fading, no creasing. Stays on until washed off. Versatile, creamy formula can be worn alone or layered under other eye shadows to give them more staying power. Acts as a holding base for powder shadow, helps it last longer. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "810",
+ "brand": "clinique",
+ "name": "Lid Pop\u2122",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZKJT02_181x209.png",
+ "description": "Silky, long-wearing eye shadow delivers an instant pop of colour for a virtually powderless look. Builds and blends easily to a customizable level of intensity. Appropriate for contact lens wearers and sensitive eyes.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "809",
+ "brand": "clinique",
+ "name": "All About Shadow™ Single",
+ "price": 16.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7PWG_181x209.png",
+ "description": "Creamy colour glides on in one smooth stroke. Longwearing. Crease- and fade-resistant, too. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact comes with a sponge-tip applicator.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "808",
+ "brand": "clinique",
+ "name": "Chubby Stick™ Shadow Tint For Eyes",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7NYF01_181x209.png",
+ "description": "Sheer wash of lightweight, creamy colour slips on. Layerable and long-wearing. Versatile, too.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "807",
+ "brand": "clinique",
+ "name": "All About Shadow™ Quad",
+ "price": 28.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7PWL06_181x209.png",
+ "description": "Wear shades alone or layered together in different combinations. Crease- and fade-resistant. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact with illustrated how-tos plus two sponge-tip applicators.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "806",
+ "brand": "clinique",
+ "name": "All About Shadow™ Duo",
+ "price": 22.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7PWK_181x209.png",
+ "description": "Use one shade as a base colour, the other to contour. Crease- and fade-resistant. Ophthalmologist tested for even the most sensitive eyes and contact lens wearers. Mirrored compact with illustrated how-tos plus a brush/sponge-tip applicator.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "805",
+ "brand": "clinique",
+ "name": "Clinique + Jonathan Adler: Lid Pop",
+ "price": 14.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K2NX10_181x209.png",
+ "description": "Four shades of silky, long-wearing eye shadow with designer details: an exclusive Jonathan Adler geometric print hot-stamped on the lid and pressed into the powder.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "804",
+ "brand": "clinique",
+ "name": "Clinique + Jonathan Adler: Limited Edition Chic Colour Kit",
+ "price": 27.3,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K2NY01_181x209.png",
+ "description": "A refreshingly modern eye shadow clutch in one of designer Jonathan Adler\u2019s signature geometric prints. Includes 13 most-wanted All About Shadow\u2122 shades to inspire your creativity.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "803",
+ "brand": "clinique",
+ "name": "Cream Shaper™ For Eyes",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6FP2_181x209.png",
+ "description": "Creamy-smooth eyeliner pencil with a hint of shimmer. Shapes and defines with intense, stay-put colour. Non-smudging, water- and transfer-resistant. Easy to sharpen, too. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "802",
+ "brand": "clinique",
+ "name": "Quickliner™ For Eyes",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_62A405_181x209.png",
+ "description": "Automatic eyeliner pencil twists up. Glides on. Smudges to a smooth blur of colour with the convenient smudge tool on the opposite end. Needs no sharpening.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "801",
+ "brand": "clinique",
+ "name": "High Impact\u2122 Custom Black Kajal",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZP4R01_181x209.png",
+ "description": "For kicked-up eye drama, go bold and black. Pigment-packed kajal pencil delivers rich, dark colour with 12 hours of staying power. Skip-proof formula resists smudging, sweat and humidity\u2014even water. Ophthalmologist Tested. Appropriate for sensitive eyes and contact lens wearers, too.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "800",
+ "brand": "clinique",
+ "name": "Kohl Shaper For Eyes",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6GAP_181x209.png",
+ "description": "Rich, satiny eyeliner glides on smoky or defined, bold or superfine. Triangular, ergonomic design provides precision control. Sharpener's built into cap. Never be caught with a dull point again. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "799",
+ "brand": "clinique",
+ "name": "Quickliner™ For Eyes Intense",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_75X3_181x209.png",
+ "description": "No need to be subtle when it's now so easy to move into the deepest, most dramatic range. Find all the intensity of a liquid liner in one simple stroke. Silky formula glides on. Stays on all day. Never needs sharpening. \"Smoke\" with the smudge tip on the opposite end. Ophthalmologist Tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "798",
+ "brand": "clinique",
+ "name": "Brush-On Cream Liner",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6H3F_181x209.png",
+ "description": "Creamy eyeliner brushes on deep, smoky, eye-defining colour. Long-wearing, waterproof formula comes complete with a mini Eye Liner Brush. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "797",
+ "brand": "clinique",
+ "name": "Water-Resistant Eyeliner",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6337_181x209.png",
+ "description": "The cake eyeliner that stays, won't run away. Resists smudging, smearing. Depth of colour can be adjusted with water. Comes with precision brush. Ideal for sensitive eyes. Ophthalmologist tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "796",
+ "brand": "clinique",
+ "name": "Clinique Skinny Stick™",
+ "price": 17.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZHK411_181x209.png",
+ "description": "Ultra-fine yet rich colour glides on smoothly to create natural-looking definition as close to the lashline as possible. A precise tip every time\u2013no sharpening required. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "795",
+ "brand": "clinique",
+ "name": "Pretty Easy\u2122 Liquid Eyelining Pen",
+ "price": 21.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGC001_181x209.png",
+ "description": "Clinique's mistake-proof pen creates a clean line in one steady sweep. Tapered, precision brush paints on pure, deep colour from thin to thick. 24-hour smudge and budge-resistant wear. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "794",
+ "brand": "clinique",
+ "name": "Instant Lift For Brows",
+ "price": 9.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_71FJ02_181x209.png",
+ "description": "Two-in-one automatic brow pencil and pearlized highlighter duo creates a contrast and definition that give eyes a virtual lift. First, fill in and shape brows with long-wearing natural-looking pencil. Then optically 'boost' brow arches with universal highlighter shade just below brow hairs.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "793",
+ "brand": "clinique",
+ "name": "Superfine Liner For Brows",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_68A9_181x209.png",
+ "description": "Convenient pencil creates perfectly defined, natural-looking brows. Ultra-fine tip fills even the smallest gaps with precise, hair-like strokes. Automatically self-sharpens; glides on without skipping or tugging. Colour lasts all day.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "792",
+ "brand": "clinique",
+ "name": "Pretty Easy Brow Palette",
+ "price": 34.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZJPG01_181x209.png",
+ "description": "Deluxe brow kit features natural-looking brow powder, powder highlighter, tinted brow fixative plus 4 applicator tips for a precise touch. Includes easy-to-follow illustrated how-tos.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "791",
+ "brand": "clinique",
+ "name": "Brow Keeper",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGHJ01_181x209.png",
+ "description": "A two-in-one tool for perfectly arched brows. Pencil end shades and shapes with a creamy formula that goes on, holds on. At the other end, a fine-tuned brush keeps brows impeccably groomed. Apply lightly for a natural look. Go heavier for pure glam.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "790",
+ "brand": "clinique",
+ "name": "Just Browsing Brush-On Styling Mousse",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGH501_181x209.png",
+ "description": "24-hour long-wearing brow mousse tints, tames, fills-in even the sparsest brows. Mini applicator brushes on natural-looking colour that resists smudging, sweat and humidity. Water-resistant, too. Ophthalmologist Tested. Allergy Tested. 100% Fragrance Free.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "789",
+ "brand": "clinique",
+ "name": "Brow Shaper",
+ "price": 18.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6346_181x209.png",
+ "description": "Fine pressed powder, special brush. Soft, natural colours fill in and perfect brows with no harsh lines.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "788",
+ "brand": "clinique",
+ "name": "Chubby Stick™ Sculpting Highlight",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZA1N01_181x209.png",
+ "description": "Luminous cream highlighting stick with light-reflecting optics brings your best features forward. Long-wearing, oil-free.",
+ "rating": "",
+ "category": "contour",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "787",
+ "brand": "clinique",
+ "name": "Chubby Stick™ Sculpting Contour",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZCP701_181x209.png",
+ "description": "Creamy contouring stick creates the illusion of depth; makes areas appear to recede. Long-wearing, oil-free.",
+ "rating": "",
+ "category": "contour",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "786",
+ "brand": "clinique",
+ "name": "Limited Edition Highlighting Kit",
+ "price": 39.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K2MG80_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "contour",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "785",
+ "brand": "clinique",
+ "name": "Blended Face Powder and Brush",
+ "price": 26.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6362_181x209.png",
+ "description": "Clinique's signature blended powder. Loose, lightweight texture is right for every type of skin. Sets and perfects makeup, makes pores seem to disappear. Airy, skin-hugging formula delivers a reliably flawless finish.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "784",
+ "brand": "clinique",
+ "name": "Up-lighting™ Liquid Illuminator",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6L1X_181x209.png",
+ "description": "Sheer, lightweight liquid instantly illuminates skin. Highlights and contours cheeks, brow bones, or gives face an allover glow. Glides on to create a natural-looking luminosity. Perfect for all skin types and tones. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "783",
+ "brand": "clinique",
+ "name": "True Bronze™ Pressed Powder Bronzer",
+ "price": 27.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6FW2_181x209.png",
+ "description": "Lightweight powder bronzer creates a natural-looking, sun-kissed radiance. Blends, builds easily to your desired level of bronze. Perfect for on-the-go glow. Long-wearing. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "782",
+ "brand": "clinique",
+ "name": "Uplighting Illuminating Powder",
+ "price": 27.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZEFR01_181x209.png",
+ "description": "This sheer illuminating powder with soft-focus pigments flatters skin with a candle-lit glow of radiance. Wear it alone, as a finishing powder after foundation, or as a highlighter only where you want it. In 3 luminous shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "781",
+ "brand": "clinique",
+ "name": "Sun-Kissed Face Gelee Complexion Multitasker",
+ "price": 28.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZMAT01_181x209.png",
+ "description": "An instant pick-me-up for skin. Sheer, oil-free gel creates a warm, healthy glow. Appropriate for all skin types and tones. Ophthalmologist Tested.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "780",
+ "brand": "fenty",
+ "name": "PRO FILT'R - Soft Matte Longwear Foundation",
+ "price": 34.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.fentybeauty.com/dw/image/v2/AAXW_PRD/on/demandware.static/-/Sites-itemmaster_FENTY/default/dw6a5f14c4/hi-res/FB30006_FB0320.jpg?sw=550 550w",
+ "description": "A soft matte, longwear foundation with buildable, medium to full coverage, in a boundary-breaking range of 40 shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "778",
+ "brand": "clinique",
+ "name": "Sculptionary™ Cheek Contouring Palette",
+ "price": 34.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZAMN_181x209.png",
+ "description": "Versatile cheek sculpting compact with natural-looking shades that blend and build beautifully. Use each separately to colour, contour, highlight. Or swirl them together for a quick easy glow. Use mid-toned shade as a blush, deep-toned shade to contour, lightest shade to highlight. For a quick, easy glow swirl brush over entire palette and dust over apples of cheeks. Long-wearing, oil-free.\u00a0",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "777",
+ "brand": "clinique",
+ "name": "Blushing Blush™ Powder Blush",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6FLK_181x209.png",
+ "description": "Silky formula sweeps effortlessly over cheekbones to create a natural look. Fresh, jet-milled colour builds and blends beautifully to desired intensity with custom sculpting brush. Long-wearing, colour-true. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "776",
+ "brand": "clinique",
+ "name": "Cheek Pop™",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7THL_181x209.png",
+ "description": "Vibrant yet natural-looking cheek colour that looks virtually powderless. In a silky smooth, stay-true formula with shades for every skin tone. That just-pinched look, simply effortless.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "775",
+ "brand": "clinique",
+ "name": "Clinique + Jonathan Adler: Cheek Pop",
+ "price": 18.9,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K22102_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "774",
+ "brand": "clinique",
+ "name": "Soft-Pressed Powder Blusher",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_618J_181x209.png",
+ "description": "Warm, natural-looking powder blush for all skins. Sheer, buildable colour gives cheeks a radiant glow. Silky, fresh finish, too. Wide range of shades, from subtle to vibrant. Comes with brush applicator.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "773",
+ "brand": "clinique",
+ "name": "Chubby Stick™ Cheek Colour Balm",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_Z47M_181x209.png",
+ "description": "Creamy, mistake-proof cheek colour creates a healthy-looking glow in an instant. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "772",
+ "brand": "clinique",
+ "name": "Clinique Pop™ Oil Lip & Cheek Glow",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZKJM01_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "771",
+ "brand": "clinique",
+ "name": "CliniqueFIT\u2122 Lip + Cheek Flush",
+ "price": 23.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K5GX01_181x209.png",
+ "description": "It\u2019s like a post-workout glow without the workout. Sheer gel adds a healthy-looking touch of colour to lips and cheeks. Fade resistant. Oil-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "770",
+ "brand": "clinique",
+ "name": "Chubby™ Plump & Shine Liquid Lip Plumping Gloss",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZWP101_181x209.png",
+ "description": "This light-reflecting, high-shine gloss enhances the appearance of lips, making them appear plump and smooth. Moisturizes, wears for hours. Feels refreshing and cool upon application. Dermatologist Tested. Allergy Tested. 100% Fragrance Free.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "769",
+ "brand": "clinique",
+ "name": "Quickliner™ For Lips",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_61EM_181x209.png",
+ "description": "All-day lip liner. Use to line and define lips or smooth all over lips before lipstick application for extended wear. Non-drying formula helps keep lipstick in place. Prevents lipstick from feathering and bleeding. No sharpening required.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "768",
+ "brand": "clinique",
+ "name": " Quickliner™ For Lips Intense",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZGGY01_181x209.png",
+ "description": "Silky formula glides on and wears all day. Use it to define the lip line or fill in lips pre-lipstick application. Non-drying formula prevents lipstick from feathering and bleeding. No sharpening required.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "767",
+ "brand": "clinique",
+ "name": "Almost Lipstick",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6359_181x209.png",
+ "description": "Transparent pigment merges with the unique, natural tone of your lips to create something wonderful and yours alone. Sheer, glossy. Emollient-rich and very lightweight.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "766",
+ "brand": "clinique",
+ "name": "Butter Shine™ Lipstick",
+ "price": 8.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6F8X_181x209.png",
+ "description": "The creamiest, richest, smoothest lip colour you can imagine. Our revolutionary gel formula delivers the shine of a gloss, the comfort of a lipstick. Drenches lips in moist, lush colour that glides on buttery-soft, feels luxuriously smooth.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "765",
+ "brand": "clinique",
+ "name": "High Impact™ Lip Colour",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6LX5_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "764",
+ "brand": "clinique",
+ "name": "Chubby Stick Intense™ Moisturizing Lip Colour Balm",
+ "price": 17.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_7THM03_181x209.png",
+ "description": "Tempt lips with a soft cushion of colour that's not quite sheer, not quite opaque-just the perfect happy medium. Loaded with mango and shea butters so lips feel comfortably soft and smooth. Ten vibrant shades in all.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "763",
+ "brand": "clinique",
+ "name": "Long Last Soft Matte Lipstick",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_6280_181x209.png",
+ "description": "Long-wearing formula keeps its just-applied look for hours. Non-drying, non-feathering. Full coverage, velvety, soft matte finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "762",
+ "brand": "clinique",
+ "name": "Long Last Lipstick",
+ "price": 17.0,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_63N2_181x209.png",
+ "description": "Longest-wearing formula. Keeps its just-applied look for hours. Won't feather, creep, stain or dry out.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "761",
+ "brand": "clinique",
+ "name": "Clinique Pop Liquid\u2122 Matte Lip Colour + Primer",
+ "price": 18.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPM01_181x209.png",
+ "description": "Lightweight liquid lipstick covers lips with lush pigment and a modern matte finish. Wears all day. Moisturizing formula with built-in primer provides a smooth, even glide so lips feel as fresh as they look.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "760",
+ "brand": "clinique",
+ "name": "Chubby Stick Baby Tint™ Moisturizing Lip Colour Balm",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_Z4CF_181x209.png",
+ "description": "A bit of colour, a hefty helping of moisture. These sheers bloom on contact to bring out your lips' natural tone. The colour is different for everyone.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "759",
+ "brand": "clinique",
+ "name": "Clinique + Jonathan Adler: Pop Lip Colour + Primer",
+ "price": 15.4,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_K22002_181x209.png",
+ "description": "An exclusive collection of luminous Clinique Pop\u2122 lipsticks by Jonathan Adler. Includes 3 limited-edition shades inspired by his favorite destinations: Palm Beach Pop, Capri Pop and Santorini Pop. Jewel-like lipsticks in bold, saturated colors look as pretty on your lips as they do on your vanity. \u201cThe domes of Lucite are inspired by my Globo collection\u2014glowing and glamorous. Just like Lip Pop,\u201d says Adler.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "758",
+ "brand": "clinique",
+ "name": "Different Lipstick",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_617G_181x209.png",
+ "description": "Different because of its smooth, comfortable feel. Moderate coverage in a remarkable range of shades, from cream to pearl. Every one packed with rich emollients.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "757",
+ "brand": "clinique",
+ "name": "Clinique Pop\u2122 Lacquer Lip Colour + Primer ",
+ "price": 18.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPR_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "756",
+ "brand": "clinique",
+ "name": "Clinique Pop Glaze™ Sheer Lip Colour + Primer",
+ "price": 18.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZLPR02_181x209.png",
+ "description": "",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "755",
+ "brand": "clinique",
+ "name": "Chubby Stick™ Moisturizing Lip Colour Balm",
+ "price": 17.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_749K01_181x209.png",
+ "description": "Super-nourishing balm is loaded with mango and shea butters. Just what dry, delicate lips need to feel comfortably soft and smooth. Natural-looking lip tints have a subtle sheen.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "754",
+ "brand": "clinique",
+ "name": "Clinique Pop\u2122 Matte Lip Colour + Primer",
+ "price": 18.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZTPH01_181x209.png",
+ "description": "Weightless yet pigment-saturated formula hugs lips with 8 hours of creamy matte comfort. Built-in primer helps smooth lips for an easy, even glide every time.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "753",
+ "brand": "clinique",
+ "name": "Clinique Pop™ Lip Colour + Primer",
+ "price": 18.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZEK2_181x209.png",
+ "description": "Luxurious yet weightless formula merges bold, saturated colour with a smoothing primer. Glides on effortlessly to a modern-velvet finish. Colour stays true, keeps lips comfortably moisturized for 8 hours. Allergy Tested. 100% Fragrance Free.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "752",
+ "brand": "clinique",
+ "name": "Clinique Pop™ Lip Shadow Cushion Matte Lip Powder",
+ "price": 19.5,
+ "price_sign": "$",
+ "currency": "USD",
+ "image_link": "https://www.clinique.com/media/export/cms/products/181x209/clq_ZXH101_181x209.png",
+ "description": "Clinique Pop\u2122 Lip Shadow is a weightless matte powder that delivers bold, highly pigmented lip color.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "740",
+ "brand": "dior",
+ "name": "\n Junon\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/v6_packshots_sku_pdg%252FPDG_Y0002959-F000355494.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "730",
+ "brand": "dior",
+ "name": "\n Matte\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/v6_packshots_sku_pdg%252FPDG_Y0002959-F000355999.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "729",
+ "brand": "dior",
+ "name": "\n Poison Metal\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003559_F000355979.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "728",
+ "brand": "dior",
+ "name": "\n Jungle Matte\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003759_F000355614.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "727",
+ "brand": "dior",
+ "name": "\n Miss Satin\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003759_F000355162.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that accentuates the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "726",
+ "brand": "dior",
+ "name": "\n Mineral\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003567_F000355201.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "725",
+ "brand": "dior",
+ "name": "\n Sauvage\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880924.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "724",
+ "brand": "dior",
+ "name": "\n Diabolo\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880684.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "723",
+ "brand": "dior",
+ "name": "\n Tease\n ",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0003565_F002880550.jpg",
+ "description": "Discover the new-generation Dior Vernis and its ingenious formula that plays up the gel effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "722",
+ "brand": "dior",
+ "name": "\n Precious Rocks\n ",
+ "price": 20.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002880_F000288001.jpg",
+ "description": "Diorific reveals a nail liner designed to decorate your nails like gemstones with festive shades. In one ultra-precise golden stroke, Dior Vernis Liner delivers a clear varnish strewn with gold, platinum, and silver glitter in various sizes, showering nails with countless little gems.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "721",
+ "brand": "dior",
+ "name": "\n Amethyst\n ",
+ "price": 20.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298998.jpg",
+ "description": "The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "720",
+ "brand": "dior",
+ "name": "\n Emerald\n ",
+ "price": 20.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298809.jpg",
+ "description": "The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "719",
+ "brand": "dior",
+ "name": "\n Grenat\n ",
+ "price": 0.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298745.jpg",
+ "description": "The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "718",
+ "brand": "dior",
+ "name": "\n Ruby\n ",
+ "price": 20.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/214/90/0/packshots%252FPDG_Y0002986_F000298673.jpg",
+ "description": "The sparkling, vibrant tones of Diorific Vernis nail polishes are modeled after precious stones.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "717",
+ "brand": "dior",
+ "name": "All-In-Brow 3D",
+ "price": 43.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0929580_f092958001.jpg",
+ "description": "Inspired by the expert techniques of professional fashion show makeup artists, Dior presents its first eyebrow kit, which includes:",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "716",
+ "brand": "dior",
+ "name": "Sourcils Poudre",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0746300.jpg",
+ "description": "The finish of a powder combined with the powerful definition of a wax in a professional pencil that gives a denser shape to the brow line for a naturally structured effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "715",
+ "brand": "dior",
+ "name": "DIORSHOW BROW STYLER",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0726130.jpg",
+ "description": "This ultra-fine retractable pencil naturally fills in brows and helps shape with precision. \u00a0",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "714",
+ "brand": "dior",
+ "name": "DIORSHOW BOLD BROW - Christmas 2017 Limited Edition",
+ "price": 22.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929631_F092963004.jpg",
+ "description": "This winter, Diorshow Bold Brow has all the sheer shine of gold. A striking little detail to create a bold beauty look or subtly enhance natural makeup.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "713",
+ "brand": "dior",
+ "name": "DIORSHOW BOLD BROW",
+ "price": 22.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929630.jpg",
+ "description": "Immediately achieve lush, full, groomed brows.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "712",
+ "brand": "dior",
+ "name": "Diorshow Art Pen",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775300.jpg",
+ "description": "A high-precision felt-tip applicator with a deep black stroke to create all the catwalk styles, from the most natural to the utterly show-stopping. Easy to remove with warm water or makeup remover.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "711",
+ "brand": "dior",
+ "name": "Diorliner",
+ "price": 27.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775101.jpg",
+ "description": "Click-pen eyeliner that delivers precise contouring and a flawlessly clean line. Diorliner deposits just the right amount of liner with a single click.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "710",
+ "brand": "dior",
+ "name": "Dior Addict It-Line",
+ "price": 26.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0777200.jpg",
+ "description": "Fashionable eyes with fabulous line and vibrant colour.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "709",
+ "brand": "dior",
+ "name": "Eyeliner Waterproof",
+ "price": 20.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0803050.jpg",
+ "description": "The essential pencil for a perfectly soft, blended line with extra-long wear.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "708",
+ "brand": "dior",
+ "name": "DIORSHOW KH\u00d4L",
+ "price": 19.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0739300_F073930009.jpg",
+ "description": "With its highly pigmented formula, the Diorshow Kh\u00f4l pencil has a creamy texture that provides precise application and easy blending at the lashline and the water line.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "707",
+ "brand": "dior",
+ "name": "Diorshow Pro Liner Waterproof",
+ "price": 20.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0775350.jpg",
+ "description": "The breakthrough Diorshow Pro Line Waterproof teams the easy application of a pencil with the glide and intensity of a liquid liner.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "706",
+ "brand": "dior",
+ "name": "Diorshow Iconic",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0696100.jpg",
+ "description": "The first lash-lifting mascara by Dior.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "705",
+ "brand": "dior",
+ "name": "Diorshow Iconic Overcurl",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697170.jpg",
+ "description": "Diorshow Iconic Overcurl pushes the limits of curl to the extreme.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "704",
+ "brand": "dior",
+ "name": "Dior Addict It-Lash",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0698100_v2.jpg",
+ "description": "Dior Addict It-lash can transform the eyes in a single flourish for a fabulous impact, as if by magic. Volume, length and the most extraordinary stylistic effects come together to achieve a fashion-forward, modern-day doe-eyed look. With unconditional hold, easy to apply and easy to remove, it is the ideal mascara for women who want it all, and want it now.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "703",
+ "brand": "dior",
+ "name": "Diorshow New Look",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697100.jpg",
+ "description": "Breathtaking eyes by Diorshow.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "702",
+ "brand": "dior",
+ "name": "Diorshow Black Out",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0726100.jpg",
+ "description": "Like kohl for the lashes. Diorshow Black Out recreates the captivating effect of kohl in a mascara for extreme volume with a charcoal-like finish.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "701",
+ "brand": "dior",
+ "name": "DIORSHOW",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697400.jpg",
+ "description": "In 2015, Diorshow, the professional Dior Backstage mascara, is being renewed. Its new-generation formula enriched with microfibres optically reproduces the effect of lash extensions used by runway makeup artists.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "700",
+ "brand": "dior",
+ "name": "DIORSHOW PUMP'N'VOLUME",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697600_inter.jpg",
+ "description": "Dior reinvents volume with Diorshow Pump 'N' Volume, a brand new mascara by the House, for a fringe of XXL lashes. Spectacular from every angle, this new Dior mascara revolutionizes volume-building application. Simply squeeze the flexible mascara tube to soften the ultra-volumizing formula and load the brush with the creamy product. Achieve extreme volume instantly!",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "699",
+ "brand": "dior",
+ "name": "Diorshow Maximizer 3D",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/0/90/0/packshots%252FPDG_landscape_Y0697970.jpg",
+ "description": "The exclusive Dior backstage mascara serum-primer thoroughly plumps lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "698",
+ "brand": "dior",
+ "name": "Holiday Diorshow Pump n' Volume Set",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185255_F918525500.jpg",
+ "description": "Discover the Couture eye makeup in a set by Dior:",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "697",
+ "brand": "dior",
+ "name": "Couture Colour Wardrobe palette",
+ "price": 65.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185280_F918528000.jpg",
+ "description": "Directly inspired by runway shows, the Couture Colour Wardrobe palette teams fresh and natural colours with vibrant and sophisticated shades to create countless custom makeup looks to suit any moment.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "696",
+ "brand": "dior",
+ "name": "Colour Design Eye palette",
+ "price": 45.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185290_F918529000.jpg",
+ "description": "Inspired by runway shows, the Colour Design Eye palette mixes glowy and iridescent colours with matte and confident shades, to recreate a natural nude or a sophisiticated glamour version of the catwalk look.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "695",
+ "brand": "dior",
+ "name": "Eye Reviver",
+ "price": 43.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929540.jpg",
+ "description": "Dior has created its 1st illuminating palette to brighten the eyes with an instant radiance-boosting effect. Using Glow-MimeticsTM technology, the incredibly luminous universal neutrals recreate the radiance of a flawless eyelid. The shades combine in perfect harmony with the primer and liner to create smooth, even and wider-looking eyes, while adding structure and brightness.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "694",
+ "brand": "dior",
+ "name": "5 COULEURS DESIGNER",
+ "price": 45.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148140_f014814208_112016.jpg",
+ "description": "Born of Backstage expertise, inspired by professional techniques and textures, 5 COULEURS DESIGNER features an easy, 5-step makeup lesson (base, 2 shadows, highlighter and liner) to bring out the eyes with flawless sculpting and colour gradation.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "693",
+ "brand": "dior",
+ "name": "5 COULEURS PRECIOUS ROCKS - Christmas 2017 Limited Edition",
+ "price": 43.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148228_F014822857_v2.jpg",
+ "description": "Emblematic of Dior eye makeup, this winter, the 5 Couleurs palette has been reinterpreted in two limited editions featuring ruby and emerald tones.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "692",
+ "brand": "dior",
+ "name": "5 COULEURS",
+ "price": 45.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148410.jpg",
+ "description": "An icon of the Dior look and a concentration of expertise in terms of colour and visual effects, the 5 Couleurs palette is reinvented. More creative than ever, with stronger pigments and richer effects, it allows women to explore every facet of colour and express every aspect of their personality. With the 5 Couleurs palette, self-expression is unlimited, creativity is unleashed and colour is more audacious than ever.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "691",
+ "brand": "dior",
+ "name": "Diorshow Mono",
+ "price": 25.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0147160_f014716623.jpg",
+ "description": "Diorshow Mono, the eyeshadow used by the Dior makeup artists, was inspired by the fabric textures of the brand's fashions - matte, silky, ultra-glittery and lam\u00e9 - and features super-saturated hues to deck the eyes in long-lasting colors with radiant finishes.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "690",
+ "brand": "dior",
+ "name": "Diorshow Fusion Mono Matte",
+ "price": 0.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148310_F014831761_012016.jpg",
+ "description": "A weightless texture that blends into the skin and dresses the eye in velvety colour. In a single step, it creates an even and intense matte finish for a professional makeup effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "689",
+ "brand": "dior",
+ "name": "Diorshow Fusion Mono",
+ "price": 25.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0148300_F014830821_012016.jpg",
+ "description": "A weightless texture that blends into the skin and dresses the eye in velvety colour. In a single step, it creates an even and intense matte finish for a professional makeup effect.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "688",
+ "brand": "dior",
+ "name": "Backstage Eye Prime",
+ "price": 22.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0146000_032016.jpg",
+ "description": "The first eye primer from Dior Backstage. Its smoothing and unifying action immediately corrects and prepares the eyelid for maximum colour intensity.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "687",
+ "brand": "dior",
+ "name": "Diorskin Rosy Glow",
+ "price": 32.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715100.jpg",
+ "description": "Rosy Glow reacts to the moisture in the skin to bring a delicate flush of colour to the cheeks. The fresh and luminous color upon application develops into a rosy blush to suit each individual complexion for an incredibly natural, custom healthy glow that lasts all day.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "686",
+ "brand": "dior",
+ "name": "DIORBLUSH PRECIOUS ROCKS - Christmas 2017 Limited Edition",
+ "price": 0.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715928_F071592864.jpg",
+ "description": "The new limited-edition Diorblush showcases every facet of the Precious Rocks collection. Printed with a prismatic motif that reflects that of a precious stone, its sheer, peach colour blends seamlessly with your skin to deliver a fresh, crystal-clear complexion.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "685",
+ "brand": "dior",
+ "name": "Diorblush Sculpt",
+ "price": 32.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0716250.jpg",
+ "description": "The first contouring blush by Dior, Diorblush Sculpt allows you to easily redefine the face\u2019s structure and volumes with the precision of a makeup artist thanks to its two contrasting shades.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "684",
+ "brand": "dior",
+ "name": "Diorblush",
+ "price": 32.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0715255.jpg",
+ "description": "The iconic blush from the House of Dior: the new colour accessory for face makeup with style.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "683",
+ "brand": "dior",
+ "name": "Diorskin Nude Air Tan",
+ "price": 36.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0712400.jpg",
+ "description": "Diorskin Nude Air bronzing powders warm the original skin tone and let the skin breathe for the continual radiant beauty of a sun-kissed healthy glow. Choose the perfect shade of tan, in matte or satiny.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "682",
+ "brand": "dior",
+ "name": "Diorskin Nude Air Glow Powder",
+ "price": 39.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0778920.jpg",
+ "description": "A precursor in the art of natural, for beauty that grows more radiant with each day, Dior broadens its nude makeup expertise with the innovation of Diorskin Nude Air Glow Powder: a luminous powder as weightless and beneficial as a breath of fresh air that revives and illuminates the complexion's original colour and lets the skin breathe for a continuously healthy glow.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "681",
+ "brand": "dior",
+ "name": "Diorskin Nude Air loose powder",
+ "price": 36.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0720350.jpg",
+ "description": "The ultimate finishing touch, impressively lightweight Diorskin Nude Air loose and compact powders maintain the illusion of a fresh and radiant face.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "680",
+ "brand": "dior",
+ "name": "Diorskin nude air powder",
+ "price": 36.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0332400.jpg",
+ "description": "The ultimate finishing touch, impressively lightweight Diorskin Nude Air loose and compact powders maintain the illusion of a fresh and radiant face.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "679",
+ "brand": "dior",
+ "name": "DIORIFIC PRECIOUS ROCKS - Christmas 2017 Limited Edition",
+ "price": 40.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0719390_F071939001_v2.jpg",
+ "description": "Diorific unveils a limited-edition gold loose powder. The finishing touch, Diorific Precious Rocks bathes your skin in a delicate glow and sculpts with a subtle, golden shimmer.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "678",
+ "brand": "dior",
+ "name": "Diorskin Forever & Ever Control Loose Powder",
+ "price": 36.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0720700.jpg",
+ "description": "As a finishing touch, Diorskin Forever & Ever Control loose powder guarantees a long-lasting matte result. Its air-whipped texture in a universal shade leaves a weightless finish on the skin.",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "677",
+ "brand": "dior",
+ "name": "Fix It Colour",
+ "price": 23.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929603_f092960100.jpg",
+ "description": "Inspired by Backstage makeup techniques, Dior invents its first multipurpose colour concealer: 1 stick, 2 textures, 3 application areas, 4 expert shades to target and neutralize the colour imperfections of the complexion and around the eye and lip contours.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "676",
+ "brand": "dior",
+ "name": "Diorskin Forever Undercover",
+ "price": 21.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0339200.jpg",
+ "description": "A veritable concentrate of Dior laboratories' expertise, this intuitive formula isn't afraid of a challenge: with a single stroke it provides instant camouflage for imperfections, water resistance and 8-hour** wear.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "675",
+ "brand": "dior",
+ "name": "FIX IT",
+ "price": 23.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0929570.jpg",
+ "description": "1 stick, 2 textures, 3 application areas.",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "674",
+ "brand": "dior",
+ "name": "FLASH LUMINIZER",
+ "price": 29.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0883558_F088075002.jpg",
+ "description": "Inspired by the lighting techniques used by Backstage makeup artists, Dior has created Flash Luminizer, the illuminator brush that enhances the complexion in a single click, for professional radiance.",
+ "rating": "",
+ "category": "highlighter",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "673",
+ "brand": "dior",
+ "name": "Dior Addict Lip Maximizer",
+ "price": 25.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028670.jpg",
+ "description": "The first instant-volume gloss from Dior Backstage.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "672",
+ "brand": "dior",
+ "name": "Dior Addict Ultra-Gloss",
+ "price": 24.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0285300.jpg",
+ "description": "More than just a gloss, Dior Addict Ultra-Gloss is a lip plumper and gloss all in one.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "671",
+ "brand": "dior",
+ "name": "Cheek & Lip Glow",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0880550_112016.jpg",
+ "description": "Dior creates its first cheek and lip blush to create a flush of pink on the skin.",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "670",
+ "brand": "dior",
+ "name": "DIORIFIC MATTE FLUID - Christmas Look 2017 Limited Edition",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0278001_F027800006_v2.jpg",
+ "description": "A Dior essential, Diorific Matte Fluid tinges lips and cheeks with a matte texture in four exclusive shades.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "669",
+ "brand": "dior",
+ "name": "DIORIFIC KH\u00d4L",
+ "price": 29.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027647_F002764751.jpg",
+ "description": "For the first time at Dior, Diorific is now available as Lip Kh\u00f4l designed to adorn your lips in intense colour with a powdery, matte finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "668",
+ "brand": "dior",
+ "name": "Diorific",
+ "price": 29.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027600.jpg",
+ "description": "Diorific, the legendary lip accessory with an Haute Couture finish, holds the signature of Dior glamour in its jewel-like gold case.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "667",
+ "brand": "dior",
+ "name": "Dior Addict Lipstick - Limited Edition",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028752.jpg",
+ "description": "Dior ushers in a new era in lip makeup with the breakthrough creation of a lipstick that boasts a hydra-gel core with a top coat effect for sensational mirror shine.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "666",
+ "brand": "dior",
+ "name": "Dior Addict Lipstick",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0028757_F002875435.jpg",
+ "description": "Dior ushers in a new era in lip makeup with the breakthrough creation of a lipstick that boasts a hydra-gel core with a top coat effect for sensational mirror shine.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "665",
+ "brand": "dior",
+ "name": "DIOR ADDICT LACQUER STICK",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0028808.jpg",
+ "description": "Try Dior Addict Lacquer Stick, the new-generation lacquer stick by Dior, as easy to apply as it is to wear. A stick with a \"lip fondant\" effect that liberates all the colour and shine of a lacquer, plus the comfort of a balm, with 6 hours* of wear and unrivaled texture.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "664",
+ "brand": "dior",
+ "name": "DIOR ADDICT LIP TATTOO",
+ "price": 25.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0028967_v4.jpg",
+ "description": "Dior Addict Lip Tattoo, the first long wear lip tint by Dior, is about to shake up your makeup routine. With its 10-hour hold*, comfortable formula and weightless \"no transfer\" finish, the colour fuses to the lips like a tattoo just seconds after application.",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "663",
+ "brand": "dior",
+ "name": "ROUGE DIOR COLLECTION COUTURE - Christmas Look 2017 Limited Edition",
+ "price": 29.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027859_F002785999.jpg",
+ "description": "The must-have of the collection, Rouge Dior has been reinterpreted for the holiday season, with the Bijou edition of the 999 Matte shade featuring a faceted cannage band.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "662",
+ "brand": "dior",
+ "name": "Dior Holiday Couture Collection",
+ "price": 77.0,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y9185275_F918527500.jpg",
+ "description": "A couture makeup bag with a selection of three iconic Rouge Dior lipsticks to suit any occasion: two different rosy shades with a satiny finish for a romantic look, and the matte version of the famous 999 for flamboyant lips.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "661",
+ "brand": "dior",
+ "name": "ROUGE DIOR - Fall 2017 Limited Edition",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_Y0027837.jpg",
+ "description": "Designed by Peter Philips to combine with the opulent hues and metallic effects on the eyes, face and nails, the six new Rouge Dior shades for fall 2017 flaunt strong beauty with a distinguished chic style. Its iconic formula offering 16 hours of comfort* ensures that women feel good, regardless of the colour or finish chosen.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "660",
+ "brand": "dior",
+ "name": "Rouge Dior",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027830.jpg",
+ "description": "With Rouge Dior and its 16h* comfort cult formula, women feel good, no matter the colour, no matter the satin or matte finish.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "659",
+ "brand": "dior",
+ "name": "Rouge Dior Double Rouge",
+ "price": 27.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027279.jpg",
+ "description": "Inspired by professional techniques, Double Rouge combines two makeup trends: matte and metal.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "658",
+ "brand": "dior",
+ "name": "Rouge Dior Liquid",
+ "price": 26.5,
+ "price_sign": "\u00a3",
+ "currency": "GBP",
+ "image_link": "https://www.dior.com/beauty/version-5.1432748111912/resize-image/ep/0/390/100/0/packshots%252FPDG_y0027269.jpg",
+ "description": "Rouge Dior has yet again been reinvented with the first liquid lipstick formula by Dior with multiple effects and surprising colour impact. Coverage, 12h* long wear and comfort: a true gem available in 3 vibrant finishes \u2013 matte, metal and satin.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "657",
+ "brand": "iman",
+ "name": "Cover Cream Clay Medium Deep",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/bf6fb914366ec31a747de52909cfcadb.jpg",
+ "description": "0.1 oz (3g) Flawless-finish concealer camouflages under-eye circles, blemishes and skin tone imperfections. ",
+ "rating": "",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "656",
+ "brand": "iman",
+ "name": "Corrective Concealer Clay",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/85a2fea7e732950138372ef267748a36.jpg",
+ "description": "0.17 oz Silky and creamy formula smoothes on, covering dark circles, and tiny imperfections. ",
+ "rating": "",
+ "category": "concealer",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "655",
+ "brand": "iman",
+ "name": "CC Correct & Cover Clay Medium Deep",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/CC_Creme-Medium-Deep_Ecom.jpg",
+ "description": "0.14oz Transforms from powder to cream and corrects with Skin Tone Evener complex, extracts and vitamins. ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "654",
+ "brand": "iman",
+ "name": "Luxury Blushing Powder Posh",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/786cee296437aad03a74bba37a11f2a2.jpg",
+ "description": "0.11oz (3g) Silky powder blush that provides true color with a natural looking, long-lasting finish. Made in China. ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "653",
+ "brand": "iman",
+ "name": "Skin Tone Evener BB Cr\u00e8me Clay Medium",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://s3.amazonaws.com/imancosmetics.com/resources/uploads/product_colors/a35f689153e4120726821fc42e27a2cc.jpg",
+ "description": "1.0 fl oz Skin tone evening Beauty Balm combines skin care and a sheer hint of color that compliments the natural tones of Women with Skin of Color. IMAN Skin Tone Evener Complex, Licorice, Grape Seed, Kokum, Almond, Aloe and Vitamins A,E & C. ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "652",
+ "brand": "iman",
+ "name": "Perfect Eye Pencil Deception",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/EyeshadowPencil_Deception1.jpg",
+ "description": "12 oz (3.4 g) Color your way to beautiful with New IMAN luxury eye shadow pencils. Long wearing eye shadow. Ease of a pencil. Made in China. ",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "651",
+ "brand": "iman",
+ "name": "Volumize Mascara Black Ink",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/53e470d05bb1531b758c4ed0f6063812.jpg",
+ "description": "24 oz (7 g) Thick, provocative lashes for a full and sexy flutter. Enhanced with Jojoba and Vitamin E for rich, luscious conditioning. ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "650",
+ "brand": "iman",
+ "name": "Perfect Mascara Black",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/708992b9f3326d3565424001d44af67d.jpg",
+ "description": "0.3oz (8g) Thickens, lengthens and separates lashes ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "649",
+ "brand": "iman",
+ "name": "Amplify Mascara Black Ink",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/081fb8969ded21fd9beda8000e61c460.jpg",
+ "description": "24oz (7g) Thickens, lengthens & separates lashes. Extends and amplifies each lash, so even the tiniest lashes will not be denied. ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "648",
+ "brand": "iman",
+ "name": "Perfect Eyebrow Pencil Blackest Brown",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/1a62206fbf4800fd0cc9e6690ae7aa9d.jpg",
+ "description": "0.05oz (1.5g) Versatile new product that combines the precise definition of an eye liner and the silky application of an eye shadow and the pearlescent finish of a shimmer powder. Made in China. ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "647",
+ "brand": "iman",
+ "name": "Perfect Eye Pencil Ebony",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/EyePencil_Ebony.jpg",
+ "description": "0.05oz (1.5g) Expertly defines & lines eyes. Made in USA. ",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "646",
+ "brand": "iman",
+ "name": "Luxury Moisturizing Lipstick IMAN Nude",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/d7bbcae0b6eff8013fda0a15280037c4.jpg",
+ "description": "13oz (3.7g) Luscious creamy, semi-matte lip color for full coverage and a long-lasting smooth finish. Made in China. ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "645",
+ "brand": "iman",
+ "name": "Luxury Eye Shadow Bejeweled",
+ "price": "",
+ "price_sign": "",
+ "currency": "",
+ "image_link": "http://imancosmetics.com/resources/uploads/product_colors/EyeShadow_Bejeweled.jpg",
+ "description": "0.05oz (1.42g) Silky, long-lasting crease-resistant formula crease resistant wear in true-color mattes, and low luster pearls. Made in China. ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "644",
+ "brand": "benefit",
+ "name": "the POREfessional: agent zero shine",
+ "price": 39.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/porefessional-agent-zero-shine-component0.png?itok=hs_TMG5b",
+ "description": "shine-vanishing PRO powder",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "643",
+ "brand": "benefit",
+ "name": "hello flawless! powder foundation",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hello-flawless-component0_2.png?itok=uXFWqH_i",
+ "description": "custom powder cover-up",
+ "rating": "",
+ "category": "powder",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "641",
+ "brand": "benefit",
+ "name": "dallas dusty rose face powder",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dallas-component2.png?itok=faVNQISZ",
+ "description": "an outdoor glow for an indoor gal face powder",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "640",
+ "brand": "benefit",
+ "name": "rockateur",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/rockateur-component0_0.png?itok=v8BJdMkW",
+ "description": "famously provocative cheek powder",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "639",
+ "brand": "benefit",
+ "name": "cheekathon bronzer & blush palette",
+ "price": 75.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/cheekathon-blush-kit-component.png?itok=6ih0smf9",
+ "description": "\u201ckick up your cheeks\u201d blush kit",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "638",
+ "brand": "benefit",
+ "name": "hoola matte bronzer travel size mini",
+ "price": 20.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-bop-travel-size-mini-component.png?itok=LKwNE-XE",
+ "description": "bronzing powder",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "637",
+ "brand": "benefit",
+ "name": "dew the hoola liquid bronzer",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dew-the-hoola-component.png?itok=gu3O77Hr",
+ "description": "soft-matte liquid bronzer for face",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "636",
+ "brand": "benefit",
+ "name": "hoola matte bronzer ",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-component0_0.png?itok=C1YPXstp",
+ "description": "bronzing powder",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "635",
+ "brand": "benefit",
+ "name": "high brow glow brow highlighter ",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1high-brow-glow-component_0.png?itok=9l5JyWCo",
+ "description": "luminous brow highlighting pencil",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "634",
+ "brand": "benefit",
+ "name": "high brow eyebrow highlighter ",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1high-brow-component_0.png?itok=XpUgoe35",
+ "description": "creamy brow highlighting pencil",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "633",
+ "brand": "benefit",
+ "name": "brow zings eyebrow shaping kit ",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/1brow-zings-component_0.png?itok=I0xVlW54",
+ "description": "total taming & shaping kit for brows",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "632",
+ "brand": "benefit",
+ "name": "BROWVO! conditioning eyebrow primer ",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/browvo-conditioning-primer-component_0.png?itok=PRNTJlTU",
+ "description": "nutrient-rich primer for fuller-looking brows",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "631",
+ "brand": "benefit",
+ "name": "precisely, my brow eyebrow pencil ",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/precisely-my-brow-pencil-component_0.png?itok=oOfirtAR",
+ "description": "ultra-fine brow defining pencil",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "630",
+ "brand": "benefit",
+ "name": "ka-BROW! eyebrow cream-gel color ",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/ka-brow-component_new.png?itok=ToSDWDUX",
+ "description": "cream-gel brow colour with brush",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "629",
+ "brand": "benefit",
+ "name": "goof proof eyebrow pencil ",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/goof-proof-pencil-component_0.png?itok=djbpd-ut",
+ "description": "super easy brow-filling & shaping pencil",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "628",
+ "brand": "benefit",
+ "name": "gimme brow volumizing eyebrow gel",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/gimme-brow-component_new_0.png?itok=Yl4Nqi2O",
+ "description": "brow-volumising fibre gel",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "627",
+ "brand": "benefit",
+ "name": "bigger & bolder brows kit",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/bigger-and-bolder-brows-kit-component_0.png?itok=MzPgohjf",
+ "description": "buildable-colour kit for dramatic brows",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "626",
+ "brand": "benefit",
+ "name": "defined & refined brows kit",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/defined-and-refined-brows-kit-component_0.png?itok=vzyOChYY",
+ "description": "precision kit for expertly defined brows",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "625",
+ "brand": "benefit",
+ "name": "soft & natural brows kit",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/soft-and-natural-brows-kit-component_0.png?itok=wJqiVHDe",
+ "description": "goof-proof kit for natural-looking brows",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "624",
+ "brand": "benefit",
+ "name": "hydra-smooth lip color",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hydra-smooth-lip-color-component_0.png?itok=GGUNA2l1",
+ "description": "lip color",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "623",
+ "brand": "benefit",
+ "name": "BIG sexy lipstick set",
+ "price": 38.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-big-sexy-lip-kit-component_0.png?itok=1CmB3i_p",
+ "description": "4 all-in-one lipstick and liners",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "622",
+ "brand": "benefit",
+ "name": "ultra plush lip gloss",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/ultra-plush-lip-gloss-component_0.png?itok=nE6ZOF2q",
+ "description": "smooth & luscious lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "621",
+ "brand": "benefit",
+ "name": "hoola ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hoola-ultra-plush-component0.png?itok=jqBC3b39",
+ "description": "shimmering golden nude lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "620",
+ "brand": "benefit",
+ "name": "CORALista ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/coralista-ultra-plush-component0.png?itok=S2p8Q27d",
+ "description": "sheer coral lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "619",
+ "brand": "benefit",
+ "name": "rockateur ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/rockateur-ultra-plush-component1_0.png?itok=SqcjeObE",
+ "description": "soft rose gold lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "618",
+ "brand": "benefit",
+ "name": "hervana ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/hervana-ultra-plush-component1_0.png?itok=mXZqkMhX",
+ "description": "berry pink lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "617",
+ "brand": "benefit",
+ "name": "dandelion ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/dandelion-ultra-plush-component0.png?itok=VUqn4q2i",
+ "description": "soft pearly pink lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "616",
+ "brand": "benefit",
+ "name": "sugarbomb ultra plush",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/sugarbomb-ultra-plush-component0.png?itok=LovnHt5G",
+ "description": "shimmering pinky nude lip gloss",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "615",
+ "brand": "benefit",
+ "name": "lollibalm",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/lollibalm-component0.png?itok=_RkBaJKu",
+ "description": "hydrating tinted lip balm",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "614",
+ "brand": "benefit",
+ "name": "chachabalm",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/chachabalm-component0.png?itok=F10VJpJ8",
+ "description": "hydrating tinted lip balm",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "613",
+ "brand": "benefit",
+ "name": "posiebalm",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/posiebalm-component0.png?itok=uj9d8EN0",
+ "description": "hydrating tinted lip balm",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "612",
+ "brand": "benefit",
+ "name": "benebalm",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/benebalm-component0.png?itok=CnuRI5tn",
+ "description": "hydrating tinted lip balm",
+ "rating": "",
+ "category": "lip_gloss",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "611",
+ "brand": "benefit",
+ "name": "BADgal waterproof mascara",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-waterproof-mascara-component2.png?itok=g5fmS1l0",
+ "description": "waterproof mascara",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "610",
+ "brand": "benefit",
+ "name": "they're real! lengthening mascara mini",
+ "price": 16.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-mascara-deluxe-sample-retail-component0.png?itok=JAWnw4xM",
+ "description": "beyond mascara mini",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "609",
+ "brand": "benefit",
+ "name": "BADgal lash volumizing mascara",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-lash-mascara-component2.png?itok=BMvTkD5q",
+ "description": "volumizing mascara",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "608",
+ "brand": "benefit",
+ "name": "roller lash curling mascara ",
+ "price": 31.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/roller-lash-component.png?itok=WykBVxJg",
+ "description": "super-curling & lifting mascara",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "607",
+ "brand": "benefit",
+ "name": "they're real! lengthening mascara ",
+ "price": 31.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-mascara-component3_1.png?itok=4eQeb-E5",
+ "description": "beyond mascara",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "606",
+ "brand": "benefit",
+ "name": "they're real! tinted eyelash primer",
+ "price": 31.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-tinted-primer-component.png?itok=QQ8ln7QJ",
+ "description": "mink-brown tinted eyelash primer",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "605",
+ "brand": "benefit",
+ "name": "BADgal waterproof eyeliner",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/badgal-liner-waterproof-component0.png?itok=I2WcFQwj",
+ "description": "waterproof eye pencil",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "604",
+ "brand": "benefit",
+ "name": "creaseless cream eyeshadow",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/creaseless-cream-shadow-component_0.png?itok=EhRALVSZ",
+ "description": "cream eyeshadow",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "603",
+ "brand": "benefit",
+ "name": "they're real! gel eyeliner pen ",
+ "price": 31.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.benefitcosmetics.com/ca/sites/ca/files/styles/category_page_lg/public/theyre-real-push-liner-component0_1.png?itok=x3Y9-QVl",
+ "description": "lash-hugging gel liner pen",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "560",
+ "brand": "smashbox",
+ "name": "Bronze Lights",
+ "price": 34.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_61636_388x396_0.jpg",
+ "description": "Pros in our L.A. photo studio created this ultra-fine matte bronzer to add a burst of \"under the West Coast sun\" on set. Now you can get the same look anytime! The formula contains true-color coated pigments that allow your skin\u2019s natural undertones to come through, giving you that fresh, just-hit-the-beach face year-round. It\u2019s also infused with Photoset Mineral Complex for an 8-hour faux glow.Because it is a matte formula, you can use Bronze Lights to contour. Use Fan Brush #22 and sweep bronzer under cheekbones, jawline and along the inner bridge of the nose for a slimming effect.8-hour wearEasily & evenly blends into skinApply to cheeks, temples, nose, or anywhere you want a burst of color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , ZEA MAYS (CORN) STARCH , DIMETHICONE , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL UNSAPONIFIABLES , OCTYLDODECANOL , ALUMINA , HYDROXYAPATITE , SILICA , POLYISOPRENE , BORON NITRIDE , TETRASODIUM EDTA , BHT , POTASSIUM SORBATE , CHLORPHENESIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 30 LAKE (CI 73360) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Pros in our L.A. photo studio created this ultra-fine matte bronzer to add a burst of \"under the West Coast sun\" on set. Now you can get the same look anytime! The formula contains true-color coated pigments that allow your skin\u2019s natural undertones to come through, giving you that fresh, just-hit-the-beach face year-round. It\u2019s also infused with Photoset Mineral Complex for an 8-hour faux glow.Because it is a matte formula, you can use Bronze Lights to contour. Use Fan Brush #22 and sweep bronzer under cheekbones, jawline and along the inner bridge of the nose for a slimming effect.8-hour wearEasily & evenly blends into skinApply to cheeks, temples, nose, or anywhere you want a burst of color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , ZEA MAYS (CORN) STARCH , DIMETHICONE , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL UNSAPONIFIABLES , OCTYLDODECANOL , ALUMINA , HYDROXYAPATITE , SILICA , POLYISOPRENE , BORON NITRIDE , TETRASODIUM EDTA , BHT , POTASSIUM SORBATE , CHLORPHENESIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 30 LAKE (CI 73360) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "559",
+ "brand": "smashbox",
+ "name": "O-Glow ",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35746_388x396_0.jpg",
+ "description": "Experience instant chemistry as your complexion is transformed from so-so to oh-so-glowing! The clear gel in this intuitive formula reacts with your personal skin chemistry to turn cheeks the color you blush in just seconds! O-GLOW works on every skin tone, from the lightest to the darkest, to give everyone a customized flush of color. Revolutionary silicone-based clear gel is easy to blend Glides on smoothly for a healthy, glowing blush that\u2019s you, only better Fragrance-free Apply on bare skin or over makeup. Watch the reaction as cheeks turn rosy, for a gorgeous blush!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance, Talc & Alcohol.INGREDIENTS: CYCLOPENTASILOXANE , DIMETHICONE CROSSPOLYMER , ISONONYL ISONONANOATE , CARTHAMUS TINCTORIUS (SAFFLOWER) SEED OIL , PUNICA GRANATUM (POMEGRANATE) SEED OIL , GINKGO BILOBA LEAF EXTRACT , LYCIUM BARBARUM FRUIT EXTRACT , PLANKTON EXTRACT , CAPRYLIC/CAPRIC TRIGLYCERIDE , POLYSILICONE-11 , TETRAHEXYLDECYL ASCORBATE , [+/- RED 27 (CI 45410)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Experience instant chemistry as your complexion is transformed from so-so to oh-so-glowing! The clear gel in this intuitive formula reacts with your personal skin chemistry to turn cheeks the color you blush in just seconds! O-GLOW works on every skin tone, from the lightest to the darkest, to give everyone a customized flush of color. Revolutionary silicone-based clear gel is easy to blend Glides on smoothly for a healthy, glowing blush that\u2019s you, only better Fragrance-free Apply on bare skin or over makeup. Watch the reaction as cheeks turn rosy, for a gorgeous blush!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance, Talc & Alcohol.INGREDIENTS: CYCLOPENTASILOXANE , DIMETHICONE CROSSPOLYMER , ISONONYL ISONONANOATE , CARTHAMUS TINCTORIUS (SAFFLOWER) SEED OIL , PUNICA GRANATUM (POMEGRANATE) SEED OIL , GINKGO BILOBA LEAF EXTRACT , LYCIUM BARBARUM FRUIT EXTRACT , PLANKTON EXTRACT , CAPRYLIC/CAPRIC TRIGLYCERIDE , POLYSILICONE-11 , TETRAHEXYLDECYL ASCORBATE , [+/- RED 27 (CI 45410)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "558",
+ "brand": "smashbox",
+ "name": "Baked Fusion Soft Lights",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35600_388x396_0.jpg",
+ "description": "Get a gorgeous, lit-from-within glow with this radiant silk-like powder. Our innovative highlighter contains five sunny shades\u2014with a double dose of each one! The baked formula gives you luminous shimmer that you can layer and build upon whenever you need more intensity. You can even dust it on d\u00e9collet\u00e9 for a fast, post-vacay glow!Sweep the shades on eyes for a gorgeous, shimmering shadowSwirl the 5 shimmery shades together and dust over cheeks, temples, nose, d\u00e9collet\u00e9, or anywhere you want a boost of soft, radiant color using Face And Cheek Brush #2.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , DIMETHICONE , ZEA MAYS (CORN) STARCH , CETYL DIMETHICONE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SORBITAN SESQUIOLEATE , DEHYDROACETIC ACID , BENZOIC ACID , SORBIC ACID , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Get a gorgeous, lit-from-within glow with this radiant silk-like powder. Our innovative highlighter contains five sunny shades\u2014with a double dose of each one! The baked formula gives you luminous shimmer that you can layer and build upon whenever you need more intensity. You can even dust it on d\u00e9collet\u00e9 for a fast, post-vacay glow!Sweep the shades on eyes for a gorgeous, shimmering shadowSwirl the 5 shimmery shades together and dust over cheeks, temples, nose, d\u00e9collet\u00e9, or anywhere you want a boost of soft, radiant color using Face And Cheek Brush #2.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , OCTYLDODECYL STEAROYL STEARATE , ZINC STEARATE , DIMETHICONE , ZEA MAYS (CORN) STARCH , CETYL DIMETHICONE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SORBITAN SESQUIOLEATE , DEHYDROACETIC ACID , BENZOIC ACID , SORBIC ACID , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "557",
+ "brand": "smashbox",
+ "name": "L.A. Lights Palette",
+ "price": 35.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_69716_388x396_0.jpg",
+ "description": "Pros in our L.A. photo studio bring the sun to the set with this ultra-flattering palette. Two tonal shades of long-wearing, richly pigmented blush team up with a perfectly curated highlighter to recreate naturally diffused light, leaving you with a radiant, lit-from-within West Coast glow. Make the most of your face shape while you adjust rosiness to match any look, occasion or season.\"Blush isn\u2019t just about color. I can use this palette to achieve that ultra-flattering L.A. glow and to subtly redefine a face shape\" - Lori Taylor Davis, Global Pro Lead Artist Long wearing, rich blush shades stay true all day Curated highlighter complements blush tones Includes #SHAPEMATTERS how-to\u2019s & tricks with pro tips for 5 different face shapes \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.Blush - Rich Pink, True PinkINGREDIENTS: Talc, Zea Mays (Corn) Starch, Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc Stearate, Helianthus Annuus (Sunflower) Seed Oil Unsaponifiables, Octyldodecanol, Alumina, Hydroxyapatite, Silica, Polyisoprene, Boron Nitride, Tetrasodium EDTA, BHT, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Highlighter - Highlight PinkINGREDIENTS: Talc, Octyldodecyl Stearoyl Stearate, Dimethicone, Zinc Stearate, Nylon-12, Octyldodecanol, Silica, Tin Oxide, Tetrasodium EDTA, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 (CI 15850), Red 30 (CI 73360), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Pros in our L.A. photo studio bring the sun to the set with this ultra-flattering palette. Two tonal shades of long-wearing, richly pigmented blush team up with a perfectly curated highlighter to recreate naturally diffused light, leaving you with a radiant, lit-from-within West Coast glow. Make the most of your face shape while you adjust rosiness to match any look, occasion or season.\"Blush isn\u2019t just about color. I can use this palette to achieve that ultra-flattering L.A. glow and to subtly redefine a face shape\" - Lori Taylor Davis, Global Pro Lead Artist Long wearing, rich blush shades stay true all day Curated highlighter complements blush tones Includes #SHAPEMATTERS how-to\u2019s & tricks with pro tips for 5 different face shapes \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.Blush - Rich Pink, True PinkINGREDIENTS: Talc, Zea Mays (Corn) Starch, Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc Stearate, Helianthus Annuus (Sunflower) Seed Oil Unsaponifiables, Octyldodecanol, Alumina, Hydroxyapatite, Silica, Polyisoprene, Boron Nitride, Tetrasodium EDTA, BHT, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Highlighter - Highlight PinkINGREDIENTS: Talc, Octyldodecyl Stearoyl Stearate, Dimethicone, Zinc Stearate, Nylon-12, Octyldodecanol, Silica, Tin Oxide, Tetrasodium EDTA, Potassium Sorbate, Chlorphenesin, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Red 6 (CI 15850), Red 7 (CI 15850), Red 30 (CI 73360), Red 7 Lake (CI 15850), Red 30 Lake (CI 73360), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "556",
+ "brand": "smashbox",
+ "name": "Brow Tech Highlight Stick",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62913_388x396_0.jpg",
+ "description": "Need a subtle touch of color on your eye brows? One side of this stick has a slim pencil, which you can use to fill in arches with multidimensional color. The other side is your BFF the spoolie brush\u2014ideal for grooming and shaping your brows. Add this trick to your everyday makeup routine to see what a difference brow highlighting can make!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Multi-dimensional, shimmery finish Spoolie brush blends & grooms Using light, feathery strokes, apply highlighter for sun-kissed dimension and depth. Less is more\u2014do not saturate your brow with color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , TIN OXIDE , SILICA , ALUMINA , SYNTHETIC FLUORPHLOGOPITE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , BRONZE POWDER (CI 77400) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Need a subtle touch of color on your eye brows? One side of this stick has a slim pencil, which you can use to fill in arches with multidimensional color. The other side is your BFF the spoolie brush\u2014ideal for grooming and shaping your brows. Add this trick to your everyday makeup routine to see what a difference brow highlighting can make!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Multi-dimensional, shimmery finish Spoolie brush blends & grooms Using light, feathery strokes, apply highlighter for sun-kissed dimension and depth. Less is more\u2014do not saturate your brow with color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , TIN OXIDE , SILICA , ALUMINA , SYNTHETIC FLUORPHLOGOPITE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , BRONZE POWDER (CI 77400) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "555",
+ "brand": "smashbox",
+ "name": "Brow Tech Gloss Stick",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62911_388x396_0.jpg",
+ "description": "In our L.A. photo studio, glossy eye brows with a natural, youthful sheen always pop in photos. We created this slim brow pencil so you can recreate the same look at home. One side has a pencil, which you can use to fill arches with subtle, glossy color. The other side is standing by with a spoolie brush that\u2019s perfect for grooming and shaping your brows. You\u2019ll want to pencil this in every day!Apply over Brow Tech Matte Pencil as a finisher.Slim pencil glides on sheer color for subtle definitionDouble-ended spoolie brush blends & groomsUsing light, feathery strokes, apply to brows for a healthy, natural luster. Focus on the center of your arch to achieve the appearance of a youthful lift.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n In our L.A. photo studio, glossy eye brows with a natural, youthful sheen always pop in photos. We created this slim brow pencil so you can recreate the same look at home. One side has a pencil, which you can use to fill arches with subtle, glossy color. The other side is standing by with a spoolie brush that\u2019s perfect for grooming and shaping your brows. You\u2019ll want to pencil this in every day!Apply over Brow Tech Matte Pencil as a finisher.Slim pencil glides on sheer color for subtle definitionDouble-ended spoolie brush blends & groomsUsing light, feathery strokes, apply to brows for a healthy, natural luster. Focus on the center of your arch to achieve the appearance of a youthful lift.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: SYNTHETIC WAX , LAURYL LAURATE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , PARAFFIN , CERAMIDE 2 , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "554",
+ "brand": "smashbox",
+ "name": "Brow Tech Matte Pencil",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62907_388x396_0.jpg",
+ "description": "In our L.A. photo studio, we know eye brow looks need to last. Enter this long-wearing, ultra-slim pencil that goes on easily and looks like real brow hair. One side is a non-smudging formula that resists sweat, water and humidity to bring you matte perfection. The other side has a spoolie brush to help you disperse color evenly and achieve the shape you\u2019ve been eyeing. It\u2019s a total brow-wow-wow!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Water, humidity & sweat resistant; smudge-free Spoolie brush blends & grooms Using soft, feathery strokes, define your natural arch, starting at the base of the hairline. Fill in sparse areas and use spoolie brush to distribute color evenly.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ETHYLHEXYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , C10-18 TRIGLYCERIDES , TOCOPHEROL , SILICA , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n In our L.A. photo studio, we know eye brow looks need to last. Enter this long-wearing, ultra-slim pencil that goes on easily and looks like real brow hair. One side is a non-smudging formula that resists sweat, water and humidity to bring you matte perfection. The other side has a spoolie brush to help you disperse color evenly and achieve the shape you\u2019ve been eyeing. It\u2019s a total brow-wow-wow!Brows should not compete with the rest of your face. If you go for a bold brow, tone down the dramatic eye look. Water, humidity & sweat resistant; smudge-free Spoolie brush blends & grooms Using soft, feathery strokes, define your natural arch, starting at the base of the hairline. Fill in sparse areas and use spoolie brush to distribute color evenly.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ETHYLHEXYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , C10-18 TRIGLYCERIDES , TOCOPHEROL , SILICA , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "553",
+ "brand": "smashbox",
+ "name": "Brow Tech Shaping Powder",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_68193_388x396_0.jpg",
+ "description": "Pros in our L.A. photo studio love the defining power of pencils, pomades and gels, but some brows need extra coverage and intensity. We created this ultra-fine, loose brow powder with a built-in applicator to fill in sparse patches, create realistic volume and add lift. Get face-framing, runway-ready arches that make a statement and last all day.For more intensity, sweep brow with side of applicator. Precision applicator mimics natural hair Buildable coverage from understated to exaggerated 8-hour wear Shake well. Tap wand to remove excess powder. Apply in direction of hair growth.\n \n INGREDIENTS: MICA , BORON NITRIDE , DIMETHICONE , SILICA , POLYETHYLENE , PENTYLENE GLYCOL , TOCOPHEROL , GLYCERIN , ETHYLHEXYLGLYCERIN , DIMETHICONOL , KAOLIN , PUMICE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , CAPRYLYL GLYCOL , CAPRYLHYDROXAMIC ACID , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Pros in our L.A. photo studio love the defining power of pencils, pomades and gels, but some brows need extra coverage and intensity. We created this ultra-fine, loose brow powder with a built-in applicator to fill in sparse patches, create realistic volume and add lift. Get face-framing, runway-ready arches that make a statement and last all day.For more intensity, sweep brow with side of applicator. Precision applicator mimics natural hair Buildable coverage from understated to exaggerated 8-hour wear Shake well. Tap wand to remove excess powder. Apply in direction of hair growth.\n \n INGREDIENTS: MICA , BORON NITRIDE , DIMETHICONE , SILICA , POLYETHYLENE , PENTYLENE GLYCOL , TOCOPHEROL , GLYCERIN , ETHYLHEXYLGLYCERIN , DIMETHICONOL , KAOLIN , PUMICE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , CAPRYLYL GLYCOL , CAPRYLHYDROXAMIC ACID , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "552",
+ "brand": "smashbox",
+ "name": "Brow Tech To Go",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35627_388x396_0.jpg",
+ "description": "Makeup artists in our L.A. photo studio take this on-the-go power pencil on location. Now you can use it to get polished eye brows anywhere, any time! One side has a waterproof pencil with an angled tip you can use to fill in long-wearing arches. The other contains a clear gel with a brush applicator so you can groom (and hold!) your bold brow look. Hit the road with multiple brow products in one!For a natural look, you can use the clear gel on its own. Angled pencil fills, shapes & defines Clear gel grooms & holds Spoolie blends & sets Use wide side of pencil to fill in and tip to define. Brush the soft-hold gel through brows for a complete polished look.\n \n PencilINGREDIENTS: Hydrogenated Soybean Oil, Hydrogenated Coco-Glycerides, Hydrogenated Vegetable Oil, Zinc Stearate, Stearic Acid, Copernicia Cerifera (Carnauba) Wax\\Cera Carnauba\\Cire De Carnauba, Polyglyceryl-2 Triisostearate, Tocopherol, Ascorbyl Palmitate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)]GelINGREDIENTS: Water\\Aqua\\Eau, VP/VA Copolymer, Glycerin, Triethanolamine, Carbomer, Caprylyl Glycol, Phenoxyethanol\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Makeup artists in our L.A. photo studio take this on-the-go power pencil on location. Now you can use it to get polished eye brows anywhere, any time! One side has a waterproof pencil with an angled tip you can use to fill in long-wearing arches. The other contains a clear gel with a brush applicator so you can groom (and hold!) your bold brow look. Hit the road with multiple brow products in one!For a natural look, you can use the clear gel on its own. Angled pencil fills, shapes & defines Clear gel grooms & holds Spoolie blends & sets Use wide side of pencil to fill in and tip to define. Brush the soft-hold gel through brows for a complete polished look.\n \n PencilINGREDIENTS: Hydrogenated Soybean Oil, Hydrogenated Coco-Glycerides, Hydrogenated Vegetable Oil, Zinc Stearate, Stearic Acid, Copernicia Cerifera (Carnauba) Wax\\Cera Carnauba\\Cire De Carnauba, Polyglyceryl-2 Triisostearate, Tocopherol, Ascorbyl Palmitate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)]GelINGREDIENTS: Water\\Aqua\\Eau, VP/VA Copolymer, Glycerin, Triethanolamine, Carbomer, Caprylyl Glycol, Phenoxyethanol\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "551",
+ "brand": "smashbox",
+ "name": "24 Hour CC Spot Concealer",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62862_388x396_0.jpg",
+ "description": "We created this 24-hour, waterproof concealer in our L.A. photo studio to instantly cover dark spots, sun spots and post-acne marks while fading the look of them in as little as 4 weeks. You\u2019re basically concealing and treating all at once, which means imperfections have met their match. Dab on this first-of-its-kind cover-up strategically, then get ready for your big reveal! 24-hour wear thanks to Photoset Polymers created with medical-grade liquid bandage technology that bends and adheres to skinWaterproofSweat & humidity-resistantTo use:Shake well and withdraw the applicator carefully before usingWipe down the applicator after each use (oil-based makeup remover will take care of any excess)Always screw cap tightlyIf traveling with product, we suggest storing in a bagFull disclosure: It's not for under eyes. For dark circles, check out BB Eye.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: DIMETHICONE , ISODODECANE , DIMETHICONE SILYLATE , PHENYL TRIMETHICONE , SILICA , POLYMETHYL METHACRYLATE , LECITHIN , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , BISABOLOL , PEG-10 DIMETHICONE , DIMETHOXYTOLYL PROPYLRESORCINOL , CETYL PEG/PPG-10/1 DIMETHICONE , DISTEARDIMONIUM HECTORITE , WATER\\AQUA\\EAU , PROPYLENE CARBONATE , TOCOPHERYL LINOLEATE/OLEATE , SORBITAN SESQUIOLEATE , TETRAHEXYLDECYL ASCORBATE , TRIETHOXYCAPRYLYLSILANE , POLYMETHYLSILSESQUIOXANE , HYDROGENATED POLYDECENE , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , LINOLEIC ACID , GLYCYRRHETINIC ACID , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n We created this 24-hour, waterproof concealer in our L.A. photo studio to instantly cover dark spots, sun spots and post-acne marks while fading the look of them in as little as 4 weeks. You\u2019re basically concealing and treating all at once, which means imperfections have met their match. Dab on this first-of-its-kind cover-up strategically, then get ready for your big reveal! 24-hour wear thanks to Photoset Polymers created with medical-grade liquid bandage technology that bends and adheres to skinWaterproofSweat & humidity-resistantTo use:Shake well and withdraw the applicator carefully before usingWipe down the applicator after each use (oil-based makeup remover will take care of any excess)Always screw cap tightlyIf traveling with product, we suggest storing in a bagFull disclosure: It's not for under eyes. For dark circles, check out BB Eye.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: DIMETHICONE , ISODODECANE , DIMETHICONE SILYLATE , PHENYL TRIMETHICONE , SILICA , POLYMETHYL METHACRYLATE , LECITHIN , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , BISABOLOL , PEG-10 DIMETHICONE , DIMETHOXYTOLYL PROPYLRESORCINOL , CETYL PEG/PPG-10/1 DIMETHICONE , DISTEARDIMONIUM HECTORITE , WATER\\AQUA\\EAU , PROPYLENE CARBONATE , TOCOPHERYL LINOLEATE/OLEATE , SORBITAN SESQUIOLEATE , TETRAHEXYLDECYL ASCORBATE , TRIETHOXYCAPRYLYLSILANE , POLYMETHYLSILSESQUIOXANE , HYDROGENATED POLYDECENE , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , LINOLEIC ACID , GLYCYRRHETINIC ACID , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "550",
+ "brand": "smashbox",
+ "name": "Camera Ready BB Cream Eyes SPF 15",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_48698_388x396_0.jpg",
+ "description": "Early shoots in our L.A. photo studio call for wide-awake, bright eyes that wow! We added the benefits\u00a0and buildable coverage of BB to a lightweight under-eye cream that instantly illuminates.Use above and below brow to highlight\u00a0and lift. Primes. Conceals. Hydrated. Illuminates. Protects with SPF 15 Reduces appearance of dark circles & puffiness\u2014now and over time Visibly firms and smoothes fine lines & wrinles Twist to release. Brush from inner to outer corner. For extreme dark circles, apply in V-shape. Pat to blend.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.10% , TITANIUM DIOXIDE 1.40% , ZINC OXIDE 1.50% INGREDIENTS: WATER\\AQUA\\EAU , CYCLOPENTASILOXANE , DIMETHICONE , DIMETHICONE SILYLATE , DISTEARDIMONIUM HECTORITE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PEG/PPG-18/18 DIMETHICONE , TOCOPHERYL ACETATE , SODIUM HYALURONATE , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER , CAFFEINE , ETHYLHEXYLGLYCERIN , YEAST EXTRACT\\FAEX\\EXTRAIT DE LEVURE , OCTYLDODECYL NEOPENTANOATE , POLYGLYCERYL-6 POLYRICINOLEATE , PHYTOSPHINGOSINE , ACETYL HEXAPEPTIDE-8 , SILICA , MAGNESIUM SULFATE , PROPYLENE CARBONATE , TRIETHOXYCAPRYLYLSILANE , POLYSILICONE-11 , SORBITAN SESQUIOLEATE , ALUMINA , LAURETH-7 , STEARIC ACID , ISOPROPYL TITANIUM TRIISOSTEARATE , CHLOROXYLENOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Early shoots in our L.A. photo studio call for wide-awake, bright eyes that wow! We added the benefits\u00a0and buildable coverage of BB to a lightweight under-eye cream that instantly illuminates.Use above and below brow to highlight\u00a0and lift. Primes. Conceals. Hydrated. Illuminates. Protects with SPF 15 Reduces appearance of dark circles & puffiness\u2014now and over time Visibly firms and smoothes fine lines & wrinles Twist to release. Brush from inner to outer corner. For extreme dark circles, apply in V-shape. Pat to blend.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.10% , TITANIUM DIOXIDE 1.40% , ZINC OXIDE 1.50% INGREDIENTS: WATER\\AQUA\\EAU , CYCLOPENTASILOXANE , DIMETHICONE , DIMETHICONE SILYLATE , DISTEARDIMONIUM HECTORITE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PEG/PPG-18/18 DIMETHICONE , TOCOPHERYL ACETATE , SODIUM HYALURONATE , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER , CAFFEINE , ETHYLHEXYLGLYCERIN , YEAST EXTRACT\\FAEX\\EXTRAIT DE LEVURE , OCTYLDODECYL NEOPENTANOATE , POLYGLYCERYL-6 POLYRICINOLEATE , PHYTOSPHINGOSINE , ACETYL HEXAPEPTIDE-8 , SILICA , MAGNESIUM SULFATE , PROPYLENE CARBONATE , TRIETHOXYCAPRYLYLSILANE , POLYSILICONE-11 , SORBITAN SESQUIOLEATE , ALUMINA , LAURETH-7 , STEARIC ACID , ISOPROPYL TITANIUM TRIISOSTEARATE , CHLOROXYLENOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "549",
+ "brand": "smashbox",
+ "name": "Photo Filter Foundation",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_60243_388x396_0.jpg",
+ "description": "Can\u2019t re-touch this! Pros in our L.A. photo studio created this velvety soft powder foundation with Light Filter Technology to instantly blur and diffuse imperfections, leaving you with a super natural radiance. No lighting crew needed.In a pinch\u2014or for a no-makeup makeup look\u2014use as base shadow to quickly liven eyes. 8-hour, color-true wear Customized, buildable medium coverage Non-drying, non-caking & non-settling; oil-free Choose your finish: Use the velvety side of the sponge for a medium finish, or the smooth side for full-on coverage.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , BORON NITRIDE , SILICA , POLYMETHYLSILSESQUIOXANE , GLYCERIN , WATER\\AQUA\\EAU , CALCIUM ALUMINUM BOROSILICATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , SQUALANE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , DIMETHICONE , CERAMIDE 3 , BETAINE , ETHYLHEXYL PALMITATE , PALMITOYL OLIGOPEPTIDE , ACETYL HEXAPEPTIDE-8 , SODIUM PCA , PHOSPHOLIPIDS , CHOLESTEROL , METHICONE , TREHALOSE , TRIBEHENIN , PYRIDOXINE DIPALMITATE , DISODIUM STEAROYL GLUTAMATE , ISODODECANE , ALUMINUM DIMYRISTATE , DIMETHICONE SILYLATE , POLYMETHYL METHACRYLATE , METHYL METHACRYLATE CROSSPOLYMER , GLYCERYL POLYMETHACRYLATE , TRIMETHYLSILOXYSILICATE , POLYQUATERNIUM-51 , SODIUM LAUROYL ASPARTATE , ISOPROPYL TITANIUM TRIISOSTEARATE , TRIETHOXYCAPRYLYLSILANE , ZINC CHLORIDE , PEG-8 , UREA , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , LINOLEIC ACID , SORBITAN ISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Can\u2019t re-touch this! Pros in our L.A. photo studio created this velvety soft powder foundation with Light Filter Technology to instantly blur and diffuse imperfections, leaving you with a super natural radiance. No lighting crew needed.In a pinch\u2014or for a no-makeup makeup look\u2014use as base shadow to quickly liven eyes. 8-hour, color-true wear Customized, buildable medium coverage Non-drying, non-caking & non-settling; oil-free Choose your finish: Use the velvety side of the sponge for a medium finish, or the smooth side for full-on coverage.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil & Fragrance.INGREDIENTS: TALC , BORON NITRIDE , SILICA , POLYMETHYLSILSESQUIOXANE , GLYCERIN , WATER\\AQUA\\EAU , CALCIUM ALUMINUM BOROSILICATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , SQUALANE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , DIMETHICONE , CERAMIDE 3 , BETAINE , ETHYLHEXYL PALMITATE , PALMITOYL OLIGOPEPTIDE , ACETYL HEXAPEPTIDE-8 , SODIUM PCA , PHOSPHOLIPIDS , CHOLESTEROL , METHICONE , TREHALOSE , TRIBEHENIN , PYRIDOXINE DIPALMITATE , DISODIUM STEAROYL GLUTAMATE , ISODODECANE , ALUMINUM DIMYRISTATE , DIMETHICONE SILYLATE , POLYMETHYL METHACRYLATE , METHYL METHACRYLATE CROSSPOLYMER , GLYCERYL POLYMETHACRYLATE , TRIMETHYLSILOXYSILICATE , POLYQUATERNIUM-51 , SODIUM LAUROYL ASPARTATE , ISOPROPYL TITANIUM TRIISOSTEARATE , TRIETHOXYCAPRYLYLSILANE , ZINC CHLORIDE , PEG-8 , UREA , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , LINOLEIC ACID , SORBITAN ISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "548",
+ "brand": "smashbox",
+ "name": "Halo Hydrating Powder",
+ "price": 49.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_54411_388x396_0.jpg",
+ "description": "Our studio makeup artists spill secrets. Not powder! This genius container releases the perfect amount with every twist. Skip the over-powdered, cakey look. Even HD cameras can\u2019t see this! From sheer layers to medium coverage, you\u2019ll always be flawless.Tap powder into palm. Add a drop of water. Use a makeup sponge to apply a thick layer to areas you want to highlight. Let set, then sweep away excess. Oil-free Talc-free Paraben-free For fresh powder every time, just twist the shaver, swirl brush into powder and apply to face.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: MICA , ETHYLHEXYL PALMITATE , COCO-CAPRYLATE/CAPRATE , POLYMETHYLSILSESQUIOXANE , HDI/TRIMETHYLOL HEXYLLACTONE CROSSPOLYMER , ZINC STEARATE , SYNTHETIC WAX , WATER\\AQUA\\EAU , HYDROXYLATED LECITHIN , LYCIUM BARBARUM FRUIT EXTRACT , PEAT EXTRACT , GOLD , PALMITOYL HEXAPEPTIDE-14 , SILICA , POLYETHYLENE , DIMETHYLACRYLAMIDE/ACRYLIC ACID/POLYSTYRENE ETHYL METHACRYLATE COPOLYMER , BARIUM SULFATE , DIMETHYL ISOSORBIDE , HEXYLENE GLYCOL , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , ETHOXYDIGLYCOL , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , SODIUM BENZOATE , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Our studio makeup artists spill secrets. Not powder! This genius container releases the perfect amount with every twist. Skip the over-powdered, cakey look. Even HD cameras can\u2019t see this! From sheer layers to medium coverage, you\u2019ll always be flawless.Tap powder into palm. Add a drop of water. Use a makeup sponge to apply a thick layer to areas you want to highlight. Let set, then sweep away excess. Oil-free Talc-free Paraben-free For fresh powder every time, just twist the shaver, swirl brush into powder and apply to face.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.INGREDIENTS: MICA , ETHYLHEXYL PALMITATE , COCO-CAPRYLATE/CAPRATE , POLYMETHYLSILSESQUIOXANE , HDI/TRIMETHYLOL HEXYLLACTONE CROSSPOLYMER , ZINC STEARATE , SYNTHETIC WAX , WATER\\AQUA\\EAU , HYDROXYLATED LECITHIN , LYCIUM BARBARUM FRUIT EXTRACT , PEAT EXTRACT , GOLD , PALMITOYL HEXAPEPTIDE-14 , SILICA , POLYETHYLENE , DIMETHYLACRYLAMIDE/ACRYLIC ACID/POLYSTYRENE ETHYL METHACRYLATE COPOLYMER , BARIUM SULFATE , DIMETHYL ISOSORBIDE , HEXYLENE GLYCOL , CAPRYLYL GLYCOL , BUTYLENE GLYCOL , ETHOXYDIGLYCOL , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , SODIUM BENZOATE , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "547",
+ "brand": "smashbox",
+ "name": "Halo HD Foundation SPF 15",
+ "price": 45.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_48688_388x396_0.jpg",
+ "description": "Hey, even models have imperfections. And HD cameras capture everything! Our studio pros developed this long-wearing, sweat-resistant formula to evolve with camera capabilities and give you flawless, sheer to medium coverage that's undetectable to the naked eye. This foundation evens out your skin with 100% Liquid Light Technology. The natural, luminous finish will have you HD-ready in a flash! Works with all undertones Buildable sheer-to-medium coverage Long-wearing Moisturizing Sweat and humidity resistant BONUS! Makeup always looks better with primer-so we've included a free sample of our award-winning Photo Finish Foundation Primer inside.Starting at center of face, apply Liquid Halo HD Foundation and build to desired coverage.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.90% , TITANIUM DIOXIDE 2.90% INGREDIENTS: WATER\\AQUA\\EAU , ISODODECANE , CYCLOPENTASILOXANE , DIMETHICONE , BUTYLENE GLYCOL , POLYMETHYL METHACRYLATE , TRIOCTYLDODECYL CITRATE , POLYSILICONE-11 , COCO-CAPRYLATE/CAPRATE , PEG/PPG-18/18 DIMETHICONE , POLYGLYCERYL-4 ISOSTEARATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , CETYL PEG/PPG-10/1 DIMETHICONE , HEXYL LAURATE , QUATERNIUM-90 BENTONITE , DIMETHICONE SILYLATE , MAGNESIUM ALUMINUM SILICATE , ALUMINA , SILICA , PROPYLENE CARBONATE , SODIUM CHLORIDE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , STEARIC ACID , PALMITIC ACID , C12-16 ALCOHOLS , HYDROGENATED LECITHIN , DISODIUM EDTA , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Hey, even models have imperfections. And HD cameras capture everything! Our studio pros developed this long-wearing, sweat-resistant formula to evolve with camera capabilities and give you flawless, sheer to medium coverage that's undetectable to the naked eye. This foundation evens out your skin with 100% Liquid Light Technology. The natural, luminous finish will have you HD-ready in a flash! Works with all undertones Buildable sheer-to-medium coverage Long-wearing Moisturizing Sweat and humidity resistant BONUS! Makeup always looks better with primer-so we've included a free sample of our award-winning Photo Finish Foundation Primer inside.Starting at center of face, apply Liquid Halo HD Foundation and build to desired coverage.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 4.90% , TITANIUM DIOXIDE 2.90% INGREDIENTS: WATER\\AQUA\\EAU , ISODODECANE , CYCLOPENTASILOXANE , DIMETHICONE , BUTYLENE GLYCOL , POLYMETHYL METHACRYLATE , TRIOCTYLDODECYL CITRATE , POLYSILICONE-11 , COCO-CAPRYLATE/CAPRATE , PEG/PPG-18/18 DIMETHICONE , POLYGLYCERYL-4 ISOSTEARATE , SODIUM HYALURONATE , ASCORBYL PALMITATE , CETYL PEG/PPG-10/1 DIMETHICONE , HEXYL LAURATE , QUATERNIUM-90 BENTONITE , DIMETHICONE SILYLATE , MAGNESIUM ALUMINUM SILICATE , ALUMINA , SILICA , PROPYLENE CARBONATE , SODIUM CHLORIDE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , STEARIC ACID , PALMITIC ACID , C12-16 ALCOHOLS , HYDROGENATED LECITHIN , DISODIUM EDTA , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "546",
+ "brand": "smashbox",
+ "name": "Camera Ready CC Cream",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_47699_388x396_0.jpg",
+ "description": "In our L.A. photo studio, we love a tinted timesaver. This silky, lightweight formula glides on with the coverage of makeup and the benefits of skin care\u2014for an instantly brighter complexion\u2014in just one step!Pat on for fuller coverage. Primes. Perfects. Moisturizes. Creates radiance. Protects with SPF 30 Instantly brightens skin, neutralizes redness, and visibly fades dark spots, sun spots & post-acne marks instantly and over time Apply a pea-sized amount to face and lightly blend with fingertips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\\AQUA\\EAU , DIMETHICONE , BUTYLENE GLYCOL , PROPANEDIOL , GLYCERYL STEARATE , PHENYL TRIMETHICONE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , ASCORBYL GLUCOSIDE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , OCTYLDODECYL STEAROYL STEARATE , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , OCTYLDODECYL NEOPENTANOATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , POLYGLYCERYL-6 POLYRICINOLEATE , LAMINARIA SACCHARINA EXTRACT , GLYCYRRHETINIC ACID , SUCROSE , SCUTELLARIA BAICALENSIS ROOT EXTRACT , LECITHIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , ACETYL HEXAPEPTIDE-8 , CHOLESTEROL , TOCOPHERYL ACETATE , TETRAHEXYLDECYL ASCORBATE , TOCOPHERYL LINOLEATE/OLEATE , LINOLEIC ACID , DIMETHOXYTOLYL PROPYLRESORCINOL , SQUALANE , SODIUM PCA , UREA , BISABOLOL , ISOPROPYL TITANIUM TRIISOSTEARATE , GLYCERIN , ORYZANOL , SODIUM HYALURONATE , TREHALOSE , POLYQUATERNIUM-51 , STEARIC ACID , SILICA , ERGOTHIONEINE , XANTHAN GUM , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , ALUMINA , DISODIUM EDTA , PHENOXYETHANOL , SODIUM DEHYDROACETATE , CHLORPHENESIN , [+/- IRON OXIDES (CI 77492) , ZINC OXIDE (CI 77497) , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n In our L.A. photo studio, we love a tinted timesaver. This silky, lightweight formula glides on with the coverage of makeup and the benefits of skin care\u2014for an instantly brighter complexion\u2014in just one step!Pat on for fuller coverage. Primes. Perfects. Moisturizes. Creates radiance. Protects with SPF 30 Instantly brightens skin, neutralizes redness, and visibly fades dark spots, sun spots & post-acne marks instantly and over time Apply a pea-sized amount to face and lightly blend with fingertips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\\AQUA\\EAU , DIMETHICONE , BUTYLENE GLYCOL , PROPANEDIOL , GLYCERYL STEARATE , PHENYL TRIMETHICONE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , ASCORBYL GLUCOSIDE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , OCTYLDODECYL STEAROYL STEARATE , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , TRITICUM VULGARE (WHEAT) GERM EXTRACT , GLYCYRRHIZA GLABRA (LICORICE) ROOT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , OCTYLDODECYL NEOPENTANOATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , POLYGLYCERYL-6 POLYRICINOLEATE , LAMINARIA SACCHARINA EXTRACT , GLYCYRRHETINIC ACID , SUCROSE , SCUTELLARIA BAICALENSIS ROOT EXTRACT , LECITHIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , ACETYL HEXAPEPTIDE-8 , CHOLESTEROL , TOCOPHERYL ACETATE , TETRAHEXYLDECYL ASCORBATE , TOCOPHERYL LINOLEATE/OLEATE , LINOLEIC ACID , DIMETHOXYTOLYL PROPYLRESORCINOL , SQUALANE , SODIUM PCA , UREA , BISABOLOL , ISOPROPYL TITANIUM TRIISOSTEARATE , GLYCERIN , ORYZANOL , SODIUM HYALURONATE , TREHALOSE , POLYQUATERNIUM-51 , STEARIC ACID , SILICA , ERGOTHIONEINE , XANTHAN GUM , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , ALUMINA , DISODIUM EDTA , PHENOXYETHANOL , SODIUM DEHYDROACETATE , CHLORPHENESIN , [+/- IRON OXIDES (CI 77492) , ZINC OXIDE (CI 77497) , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "545",
+ "brand": "smashbox",
+ "name": "Camera Ready BB Cream SPF 35",
+ "price": 39.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_42069_388x396_0.jpg",
+ "description": "Wonder why models in our L.A. photo studio hoard this 5-in-1 miracle-worker BB cream? It cuts down on prep time and instantly creates even, radiant skin.Pat on for fuller coverage. Primes. Perfects. Hydrates. Banishes shine. Protects with SPF 35 Reduces appearance of fine lines & wrinkles in just 4 weeks Wear alone or under foundation for more coverage Apply a pea-sized amount to face and lightly blend with fingertips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\\AQUA\\EAU , DIMETHICONE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PENTYLENE GLYCOL , GLYCERYL STEARATE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , OCTYLDODECYL STEAROYL STEARATE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , TRITICUM VULGARE (WHEAT) GERM EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , LAMINARIA SACCHARINA EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , POLYQUATERNIUM-51 , ACETYL HEXAPEPTIDE-8 , TREHALOSE , ORYZANOL , OCTYLDODECYL NEOPENTANOATE , UREA , POLYGLYCERYL-6 POLYRICINOLEATE , PROPYLENE GLYCOL LAURATE , GLYCYRRHETINIC ACID , TOCOPHERYL ACETATE , SUCROSE , GLYCERIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , LINOLEIC ACID , CHOLESTEROL , LECITHIN , SQUALANE , SODIUM PCA , ISOPROPYL TITANIUM TRIISOSTEARATE , PROPYLENE GLYCOL STEARATE , STEARIC ACID , POLYSORBATE 20 , SORBITAN LAURATE , XANTHAN GUM , ALUMINUM HYDROXIDE , SODIUM HYALURONATE , SILICA , DISODIUM EDTA , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , SODIUM DEHYDROACETATE , CHLORPHENESIN , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , ZINC OXIDE (CI 77947) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , MICA]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Wonder why models in our L.A. photo studio hoard this 5-in-1 miracle-worker BB cream? It cuts down on prep time and instantly creates even, radiant skin.Pat on for fuller coverage. Primes. Perfects. Hydrates. Banishes shine. Protects with SPF 35 Reduces appearance of fine lines & wrinkles in just 4 weeks Wear alone or under foundation for more coverage Apply a pea-sized amount to face and lightly blend with fingertips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 7.50% , OCTISALATE 4.00% , OXYBENZONE 2.50% , TITANIUM DIOXIDE 1.10% INGREDIENTS: WATER\\AQUA\\EAU , DIMETHICONE , BUTYLENE GLYCOL , PHENYL TRIMETHICONE , PENTYLENE GLYCOL , GLYCERYL STEARATE , BEHENYL ALCOHOL , TRIOCTYLDODECYL CITRATE , POLYMETHYLSILSESQUIOXANE , OCTYLDODECYL STEAROYL STEARATE , PEG-40 STEARATE , POLYGLYCERYL-10 PENTASTEARATE , AMMONIUM ACRYLOYLDIMETHYLTAURATE/VP COPOLYMER , TRITICUM VULGARE (WHEAT) GERM EXTRACT , HORDEUM VULGARE (BARLEY) EXTRACT\\EXTRAIT D'ORGE , CUCUMIS SATIVUS (CUCUMBER) FRUIT EXTRACT , LAMINARIA SACCHARINA EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , SCUTELLARIA BAICALENSIS ROOT EXTRACT , POLYQUATERNIUM-51 , ACETYL HEXAPEPTIDE-8 , TREHALOSE , ORYZANOL , OCTYLDODECYL NEOPENTANOATE , UREA , POLYGLYCERYL-6 POLYRICINOLEATE , PROPYLENE GLYCOL LAURATE , GLYCYRRHETINIC ACID , TOCOPHERYL ACETATE , SUCROSE , GLYCERIN , SODIUM STEAROYL LACTYLATE , CAFFEINE , LINOLEIC ACID , CHOLESTEROL , LECITHIN , SQUALANE , SODIUM PCA , ISOPROPYL TITANIUM TRIISOSTEARATE , PROPYLENE GLYCOL STEARATE , STEARIC ACID , POLYSORBATE 20 , SORBITAN LAURATE , XANTHAN GUM , ALUMINUM HYDROXIDE , SODIUM HYALURONATE , SILICA , DISODIUM EDTA , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , SODIUM DEHYDROACETATE , CHLORPHENESIN , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , ZINC OXIDE (CI 77947) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , MICA]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "544",
+ "brand": "smashbox",
+ "name": "Camera Ready BB Water SPF 30",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62894_388x396_0.jpg",
+ "description": "To keep things looking natural (even with SPF 30) under our L.A. photo studio lights, we created our most lightweight, dewy BB yet\u2014a water-like hydrating formula with all the complexion perfecting benefits of our cream in each drop.Pat on for fuller coverage. Primes. Perfects. Hydrates. Protects with SPF 30 Demi-matte, never flat finish with buildable coverage Photoset Polymers create all-day wear Oil- and alcohol-free; perfect for all skin types Shake bottle well. Use dropper to release 1 to 2 drops on the back of your hand and blend into face with fingertips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 5.0% , TITANIUM DIOXIDE 3.1% , ZINC OXIDE 2.1% INGREDIENTS: WATER\\AQUA\\EAU , METHYL TRIMETHICONE , PHENYL TRIMETHICONE , SILICA , BUTYLOCTYL SALICYLATE , DIMETHICONE , NEOPENTYL GLYCOL DIHEPTANOATE , C12-15 ALKYL BENZOATE , BUTYLENE GLYCOL , DIMETHICONE SILYLATE , LAURYL PEG-9 POLYDIMETHYLSILOXYETHYL DIMETHICONE , ETHYLHEXYL PALMITATE , GLYCERIN , POLYSILICONE-11 , TOCOPHERYL ACETATE , SODIUM HYALURONATE , LECITHIN , CITRULLUS VULGARIS (WATERMELON) FRUIT EXTRACT , LENS ESCULENTA (LENTIL) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCINE SOJA (SOYBEAN) PROTEIN , PEG-10 DIMETHICONE , SODIUM PCA , METHICONE , TRIETHYL CITRATE , THERMUS THERMOPHILLUS FERMENT , LAURETH-7 , TRIMETHYLSILOXYSILICATE , SILICA DIMETHYL SILYLATE , MAGNESIUM ALUMINUM SILICATE , POLYMETHYLSILSESQUIOXANE , TRIETHOXYCAPRYLYLSILANE , DEXTRIN , DISTEARDIMONIUM HECTORITE , XANTHAN GUM , SODIUM CHLORIDE , DIMETHICONE/PEG-10/15 CROSSPOLYMER , SODIUM LACTATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , ZINC STEARATE , LITCHI CHINENSIS SEED EXTRACT , POLYGLUTAMIC ACID , LAMINARIA SACCHARINA EXTRACT , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n To keep things looking natural (even with SPF 30) under our L.A. photo studio lights, we created our most lightweight, dewy BB yet\u2014a water-like hydrating formula with all the complexion perfecting benefits of our cream in each drop.Pat on for fuller coverage. Primes. Perfects. Hydrates. Protects with SPF 30 Demi-matte, never flat finish with buildable coverage Photoset Polymers create all-day wear Oil- and alcohol-free; perfect for all skin types Shake bottle well. Use dropper to release 1 to 2 drops on the back of your hand and blend into face with fingertips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Oil, Fragrance & Talc.ACTIVE INGREDIENTS: OCTINOXATE 5.0% , TITANIUM DIOXIDE 3.1% , ZINC OXIDE 2.1% INGREDIENTS: WATER\\AQUA\\EAU , METHYL TRIMETHICONE , PHENYL TRIMETHICONE , SILICA , BUTYLOCTYL SALICYLATE , DIMETHICONE , NEOPENTYL GLYCOL DIHEPTANOATE , C12-15 ALKYL BENZOATE , BUTYLENE GLYCOL , DIMETHICONE SILYLATE , LAURYL PEG-9 POLYDIMETHYLSILOXYETHYL DIMETHICONE , ETHYLHEXYL PALMITATE , GLYCERIN , POLYSILICONE-11 , TOCOPHERYL ACETATE , SODIUM HYALURONATE , LECITHIN , CITRULLUS VULGARIS (WATERMELON) FRUIT EXTRACT , LENS ESCULENTA (LENTIL) FRUIT EXTRACT , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCINE SOJA (SOYBEAN) PROTEIN , PEG-10 DIMETHICONE , SODIUM PCA , METHICONE , TRIETHYL CITRATE , THERMUS THERMOPHILLUS FERMENT , LAURETH-7 , TRIMETHYLSILOXYSILICATE , SILICA DIMETHYL SILYLATE , MAGNESIUM ALUMINUM SILICATE , POLYMETHYLSILSESQUIOXANE , TRIETHOXYCAPRYLYLSILANE , DEXTRIN , DISTEARDIMONIUM HECTORITE , XANTHAN GUM , SODIUM CHLORIDE , DIMETHICONE/PEG-10/15 CROSSPOLYMER , SODIUM LACTATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , ZINC STEARATE , LITCHI CHINENSIS SEED EXTRACT , POLYGLUTAMIC ACID , LAMINARIA SACCHARINA EXTRACT , DISODIUM EDTA , SODIUM DEHYDROACETATE , PHENOXYETHANOL , POTASSIUM SORBATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "bb_cc",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "543",
+ "brand": "smashbox",
+ "name": "STUDIO SKIN 15 HOUR WEAR HYDRATING FOUNDATION ",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_71596_388x396_0.jpg",
+ "description": "We created this hydrating foundation in our L.A. photo studio to look good in any light. We can prove it! We\u2019re the only brand with Flashbox Lighting Lab, where we test and perfect color consistency across 22 shades. Our blendable, oil-free formula has a natural finish with medium to full coverage that looks amazing for 15 hours. Throughout the day, lighting changes, but your makeup won\u2019t!For more sheer coverage, warm between fingertips before applyingMix in 1-2 drops of face oil (like Photo Finish Primer Oil) for a custom blend that'll create the level of dewy glow you wantMedium-to-full buildable coverageOil-free, hydrating formula \u2013 without the shineLight diffusing spheres blur imperfections Sweat & humidity resistantColor-true, exercise-resistant & transfer-proofBlend well over skin with brush, sponge or fingertips\u2014starting at center of face. Build your way to customizable coverage.We created this hydrating foundation in our L.A. photo studio to look good in any light. We can prove it! We\u2019re the only brand with Flashbox Lighting Lab, where we test and perfect color consistency across 22 shades. Our blendable, oil-free formula has a natural finish with medium to full coverage that looks amazing for 15 hours. Throughout the day, lighting changes, but your makeup won\u2019t!For more sheer coverage, warm between fingertips before applyingMix in 1-2 drops of face oil (like Photo Finish Primer Oil) for a custom blend that'll create the level of dewy glow you wantMedium-to-full buildable coverageOil-free, hydrating formula \u2013 without the shineLight diffusing spheres blur imperfections Sweat & humidity resistantColor-true, exercise-resistant & transfer-proofBlend well over skin with brush, sponge or fingertips\u2014starting at center of face. Build your way to customizable coverage.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "542",
+ "brand": "smashbox",
+ "name": "Hyperlash Mascara",
+ "price": 23.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35576_388x396_0.jpg",
+ "description": "When it comes to lashes, our L.A. photo studio needs low-maintenance and high-drama. We created this all-in-1 mascara with a unique applicator that has a brush on one side and a comb on the other to bring you long, full, clump-free lashes in seconds. Rich pigments bind to lashes for an ultra-intense look. Be totally photo-fabulous\u2014on camera and off!De-curl unruly lashes by dragging mascara from top side down. Dual brush & comb applicator Intense deep-black pigments Use the brush to build and thicken. Follow with the comb side to define and lengthen.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Water\\Aqua\\Eau, Beeswax\\Cera Alba\\Cire d'Abeille, Stearic Acid, Glyceryl Stearate, PVP, VP/Eicosene Copolymer, Tribehenin, Copernicia Cerifera (Carnauba) Wax\\Cera Carnauba\\Cire De Carnauba, Glycerin, Tocopherol, Tocopheryl Acetate, Prunus Amygdalus Dulcis (Sweet Almond) Fruit Extract, Dimethicone, Euphorbia Cerifera (Candelilla) Wax\\Candelilla Cera\\Cire de Candelilla, Bis-PEG-18 Methyl Ether Dimethyl Silane, Silica Dimethyl Silylate, Aminomethyl Propanediol, Hydroxyethylcellulose, Synthetic Beeswax, Disodium EDTA, Phenoxyethanol, Sodium Benzoate, Sodium Dehydroacetate, Potassium Sorbate, [+/- Iron Oxides (CI 77491), Iron Oxides (CI 77499), Iron Oxides (CI 77492), Ultramarines (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n When it comes to lashes, our L.A. photo studio needs low-maintenance and high-drama. We created this all-in-1 mascara with a unique applicator that has a brush on one side and a comb on the other to bring you long, full, clump-free lashes in seconds. Rich pigments bind to lashes for an ultra-intense look. Be totally photo-fabulous\u2014on camera and off!De-curl unruly lashes by dragging mascara from top side down. Dual brush & comb applicator Intense deep-black pigments Use the brush to build and thicken. Follow with the comb side to define and lengthen.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Water\\Aqua\\Eau, Beeswax\\Cera Alba\\Cire d'Abeille, Stearic Acid, Glyceryl Stearate, PVP, VP/Eicosene Copolymer, Tribehenin, Copernicia Cerifera (Carnauba) Wax\\Cera Carnauba\\Cire De Carnauba, Glycerin, Tocopherol, Tocopheryl Acetate, Prunus Amygdalus Dulcis (Sweet Almond) Fruit Extract, Dimethicone, Euphorbia Cerifera (Candelilla) Wax\\Candelilla Cera\\Cire de Candelilla, Bis-PEG-18 Methyl Ether Dimethyl Silane, Silica Dimethyl Silylate, Aminomethyl Propanediol, Hydroxyethylcellulose, Synthetic Beeswax, Disodium EDTA, Phenoxyethanol, Sodium Benzoate, Sodium Dehydroacetate, Potassium Sorbate, [+/- Iron Oxides (CI 77491), Iron Oxides (CI 77499), Iron Oxides (CI 77492), Ultramarines (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "541",
+ "brand": "smashbox",
+ "name": "Full Exposure Waterproof Mascara",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_54401_388x396_0.jpg",
+ "description": "Sometimes emotions run high in our L.A. photo studio. We developed this long-wearing, waterproof mascara to handle teary moments, rainy days\u2014even a dip in the pool! It\u2019s a high-impact, high-gloss, fiber-rich product that looks flawless and stays put for 10 hours. It also delivers length, volume and thickness without clumping, smudging or flaking out. Swipe on instant drama and face up!Flip brush vertical to literally paint mascara on individual lashes. Specialty brush lengthens, curls & volumizes No clumps, no flakes; sweat & humidity resistant Starting at the base of lashes, sweep mascara up and out.\n \n INGREDIENTS: ISODODECANE , WATER\\AQUA\\EAU , PTFE , DIMETHICONE SILYLATE , SORBITAN OLIVATE , KAOLIN , TRISILOXANE , SORBITAN TRISTEARATE , POLYISOBUTENE , SILICA SILYLATE , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , TRIHYDROXYSTEARIN , DIISOPROPYL ADIPATE , CHOLESTEROL , METHICONE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , NYLON-6 , SILICA , NYLON-66 , TRIMETHYLSILOXYSILICATE , POLYETHYLENE TEREPHTHALATE , PROPYLENE CARBONATE , QUATERNIUM-90 BENTONITE , HECTORITE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PHENOXYETHANOL , MAGNESIUM SALICYLATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Sometimes emotions run high in our L.A. photo studio. We developed this long-wearing, waterproof mascara to handle teary moments, rainy days\u2014even a dip in the pool! It\u2019s a high-impact, high-gloss, fiber-rich product that looks flawless and stays put for 10 hours. It also delivers length, volume and thickness without clumping, smudging or flaking out. Swipe on instant drama and face up!Flip brush vertical to literally paint mascara on individual lashes. Specialty brush lengthens, curls & volumizes No clumps, no flakes; sweat & humidity resistant Starting at the base of lashes, sweep mascara up and out.\n \n INGREDIENTS: ISODODECANE , WATER\\AQUA\\EAU , PTFE , DIMETHICONE SILYLATE , SORBITAN OLIVATE , KAOLIN , TRISILOXANE , SORBITAN TRISTEARATE , POLYISOBUTENE , SILICA SILYLATE , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , TRIHYDROXYSTEARIN , DIISOPROPYL ADIPATE , CHOLESTEROL , METHICONE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , NYLON-6 , SILICA , NYLON-66 , TRIMETHYLSILOXYSILICATE , POLYETHYLENE TEREPHTHALATE , PROPYLENE CARBONATE , QUATERNIUM-90 BENTONITE , HECTORITE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PHENOXYETHANOL , MAGNESIUM SALICYLATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "540",
+ "brand": "smashbox",
+ "name": "Full Exposure Mascara",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_37089_388x396_0.jpg",
+ "description": "During high-profile shoots in our L.A. photo studio, we need to sweep on big, glossy lashes\u2014fast. We infused this patent-leather formula with olive-oil complex to deliver insta-soft lashes and bring you the same fluttery fabulosity at home. When it comes to volume, our mantra is \u201ccrank it up.\u201d Every swipe gives you fiber-rich length and thickness without clumps, flakes or smudges.Flip brush vertical to literally paint mascara on individual lashes. Big, tapered brush grabs lash at root for ultra-coverage Glossy fibers sculpt lashes up and out No clumping, smudging or flaking Starting at the base of lashes, sweep mascara up and out.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , STEARIC ACID , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , POLYISOBUTENE , POLYVINYL ACETATE , GLYCERYL STEARATE , PARAFFIN , SILICA , AMINOMETHYL PROPANEDIOL , POLYESTER-5 , ISOSTEARIC ACID , PVP , HYDROGENATED OLIVE OIL , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , PANTHENOL , PANTETHINE , KAOLIN , NYLON-6 , LAURETH-4 , HYDROXYETHYLCELLULOSE , VP/EICOSENE COPOLYMER , SIMETHICONE , SODIUM POLYACRYLATE , PTFE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , POLYAMINOPROPYL BIGUANIDE , CHLORPHENESIN , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n During high-profile shoots in our L.A. photo studio, we need to sweep on big, glossy lashes\u2014fast. We infused this patent-leather formula with olive-oil complex to deliver insta-soft lashes and bring you the same fluttery fabulosity at home. When it comes to volume, our mantra is \u201ccrank it up.\u201d Every swipe gives you fiber-rich length and thickness without clumps, flakes or smudges.Flip brush vertical to literally paint mascara on individual lashes. Big, tapered brush grabs lash at root for ultra-coverage Glossy fibers sculpt lashes up and out No clumping, smudging or flaking Starting at the base of lashes, sweep mascara up and out.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , STEARIC ACID , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , POLYISOBUTENE , POLYVINYL ACETATE , GLYCERYL STEARATE , PARAFFIN , SILICA , AMINOMETHYL PROPANEDIOL , POLYESTER-5 , ISOSTEARIC ACID , PVP , HYDROGENATED OLIVE OIL , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , PANTHENOL , PANTETHINE , KAOLIN , NYLON-6 , LAURETH-4 , HYDROXYETHYLCELLULOSE , VP/EICOSENE COPOLYMER , SIMETHICONE , SODIUM POLYACRYLATE , PTFE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , POLYAMINOPROPYL BIGUANIDE , CHLORPHENESIN , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "539",
+ "brand": "smashbox",
+ "name": "Indecent Exposure Mascara",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_68232_388x396_0.jpg",
+ "description": "Created for extreme close-up shots in our L.A. photo studio, no lash can hide with this extreme lengthening formula that takes lashes from barely there to make-\u2018em-stare.Kick out corner of lashes with micro-tip for a falsie effect. Micro-defining brush nabs every lash Wavelength fibers stretch with each stroke No clumping, smudging or flaking Move brush in zigzag motion to coat lashes from base to tip.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , BEESWAX\\CERA ALBA\\CIRE D'ABEILLE , GLYCERYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , ACRYLATES COPOLYMER , C18-36 ACID TRIGLYCERIDE , RICINUS COMMUNIS (CASTOR) SEED OIL , STEARIC ACID , PALMITIC ACID , ACACIA SENEGAL GUM , BUTYLENE GLYCOL , AMINOMETHYL PROPANOL , PISUM SATIVUM (PEA) EXTRACT , GLYCERIN , LAURETH-21 , NYLON-66 , HYDROXYETHYLCELLULOSE , MYRISTIC ACID , BEHENIC ACID , ARACHIDIC ACID , OLEIC ACID , SODIUM DEHYDROACETATE , PHENOXYETHANOL , SODIUM BENZOATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Created for extreme close-up shots in our L.A. photo studio, no lash can hide with this extreme lengthening formula that takes lashes from barely there to make-\u2018em-stare.Kick out corner of lashes with micro-tip for a falsie effect. Micro-defining brush nabs every lash Wavelength fibers stretch with each stroke No clumping, smudging or flaking Move brush in zigzag motion to coat lashes from base to tip.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , BEESWAX\\CERA ALBA\\CIRE D'ABEILLE , GLYCERYL STEARATE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , ACRYLATES COPOLYMER , C18-36 ACID TRIGLYCERIDE , RICINUS COMMUNIS (CASTOR) SEED OIL , STEARIC ACID , PALMITIC ACID , ACACIA SENEGAL GUM , BUTYLENE GLYCOL , AMINOMETHYL PROPANOL , PISUM SATIVUM (PEA) EXTRACT , GLYCERIN , LAURETH-21 , NYLON-66 , HYDROXYETHYLCELLULOSE , MYRISTIC ACID , BEHENIC ACID , ARACHIDIC ACID , OLEIC ACID , SODIUM DEHYDROACETATE , PHENOXYETHANOL , SODIUM BENZOATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "538",
+ "brand": "smashbox",
+ "name": "X-Rated Mascara",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_68233_388x396_0.jpg",
+ "description": "This ultra-buildable mascara lets you easily take your lashes from PG to X-Rated in seconds. Our triple threat brush loads up the maximum amount of our fiber-loaded formula to build your look. With each swipe, lashes are isolated, magnified and mega-coated for hyper, thick voluptuous lashes that photograph flawlessly in any close-up. No double-dipping required.Don't forget to prep. Always start with Photo Finish Lash Primer. Extremely long-wearing formula for luscious lashes, day to night Triple Threat brush isolates, magnifies & mega-coats each lash with an interlocking fiber-loaded formula Tripod fibers stack on lashes for endless volume Amplifies & lifts with each layer Flake & smudge-free Sweep on lashes from base and lay on the volume with each stroke.\n \n INGREDIENTS: WATER\\AQUA\\EAU , KAOLIN , ACRYLATES/ETHYLHEXYL ACRYLATE COPOLYMER , STEARIC ACID , MYRICA CERIFERA (BAYBERRY) FRUIT WAX , SILICA , POLYISOBUTENE , GLYCERYL STEARATE , PARAFFIN , AMINOMETHYL PROPANEDIOL , POLYVINYL ACETATE , ISOSTEARIC ACID , LECITHIN , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , HYDROXYETHYLCELLULOSE , 1,2-HEXANEDIOL , VP/EICOSENE COPOLYMER , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , LAURETH-21 , NYLON-6 , SODIUM POLYACRYLATE , POLYSILICONE-11 , LAURETH-12 , SIMETHICONE , CAPRYLYL GLYCOL , PHENETHYL ALCOHOL , HYDROGENATED OLIVE OIL , DISODIUM EDTA , PHENOXYETHANOL , CHLOROXYLENOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n This ultra-buildable mascara lets you easily take your lashes from PG to X-Rated in seconds. Our triple threat brush loads up the maximum amount of our fiber-loaded formula to build your look. With each swipe, lashes are isolated, magnified and mega-coated for hyper, thick voluptuous lashes that photograph flawlessly in any close-up. No double-dipping required.Don't forget to prep. Always start with Photo Finish Lash Primer. Extremely long-wearing formula for luscious lashes, day to night Triple Threat brush isolates, magnifies & mega-coats each lash with an interlocking fiber-loaded formula Tripod fibers stack on lashes for endless volume Amplifies & lifts with each layer Flake & smudge-free Sweep on lashes from base and lay on the volume with each stroke.\n \n INGREDIENTS: WATER\\AQUA\\EAU , KAOLIN , ACRYLATES/ETHYLHEXYL ACRYLATE COPOLYMER , STEARIC ACID , MYRICA CERIFERA (BAYBERRY) FRUIT WAX , SILICA , POLYISOBUTENE , GLYCERYL STEARATE , PARAFFIN , AMINOMETHYL PROPANEDIOL , POLYVINYL ACETATE , ISOSTEARIC ACID , LECITHIN , PANTETHINE , PANTHENOL , ROSMARINUS OFFICINALIS (ROSEMARY) LEAF EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT OIL , OLEA EUROPAEA (OLIVE) OIL UNSAPONIFIABLES , CHOLESTEROL , HYDROXYETHYLCELLULOSE , 1,2-HEXANEDIOL , VP/EICOSENE COPOLYMER , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , LAURETH-21 , NYLON-6 , SODIUM POLYACRYLATE , POLYSILICONE-11 , LAURETH-12 , SIMETHICONE , CAPRYLYL GLYCOL , PHENETHYL ALCOHOL , HYDROGENATED OLIVE OIL , DISODIUM EDTA , PHENOXYETHANOL , CHLOROXYLENOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 (CI 42090) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , ULTRAMARINES (CI 77007) , YELLOW 5 (CI 19140) , YELLOW 5 LAKE (CI 19140)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "537",
+ "brand": "smashbox",
+ "name": "Photo Finish Lash Primer",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_68234_388x396_0.jpg",
+ "description": "Here's the rule in our L.A. photo studio: No shoots without our primer! This\u00a0innovative formula lifts lashes to new heights, amps up volume and makes mascara last longer.Refresh and revive midday lashes with primer and layer on fresh mascara. Dual-sided brush/comb coats and separates Preps and amplifies for more mascara pay-off Layer under or over mascara Apply from root to tip of lashes with grooved bristle side of brush and then define and separate with comb.\n \n INGREDIENTS: WATER\\AQUA\\EAU , GLYCERYL STEARATE , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , GLYCERIN , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , STEARIC ACID , PVP , HYDROLYZED SOY PROTEIN , TRIETHANOLAMINE , HYDROXYETHYLCELLULOSE , CAPRYLYL GLYCOL , PHENOXYETHANOL \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Here's the rule in our L.A. photo studio: No shoots without our primer! This\u00a0innovative formula lifts lashes to new heights, amps up volume and makes mascara last longer.Refresh and revive midday lashes with primer and layer on fresh mascara. Dual-sided brush/comb coats and separates Preps and amplifies for more mascara pay-off Layer under or over mascara Apply from root to tip of lashes with grooved bristle side of brush and then define and separate with comb.\n \n INGREDIENTS: WATER\\AQUA\\EAU , GLYCERYL STEARATE , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , GLYCERIN , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , STEARIC ACID , PVP , HYDROLYZED SOY PROTEIN , TRIETHANOLAMINE , HYDROXYETHYLCELLULOSE , CAPRYLYL GLYCOL , PHENOXYETHANOL \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "536",
+ "brand": "smashbox",
+ "name": "Jet Set Waterproof Eye Liner",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_46012_388x396_0.jpg",
+ "description": "In our L.A. photo studio, makeup artists are always looking for products that deliver big visual impact in a short time. We developed this waterproof, crease-resistant, gel eye liner to glide on quickly and easily. Don't worry, it won't tug or pull on the delicate skin around your eyes. Gear up so you can create smudge-proof lines and precisely defined eyes in 60 seconds flat. Ready, Jet Set, Go!Show your liner some extra love! Remember to seal jar tightly immediately after use to avoid dry-out.Use an eye liner brush (Arced Liner Brush #21) to tight-line for added impact.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , POLYETHYLENE , CYCLOPENTASILOXANE , TRIMETHYLSILOXYSILICATE , DISTEARDIMONIUM HECTORITE , LECITHIN , PHENYL TRIMETHICONE , HYDROGENATED POLYISOBUTENE , BARIUM SULFATE , PROPYLENE CARBONATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLACK 2 (CI 77266) , BISMUTH OXYCHLORIDE (CI 77163) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n In our L.A. photo studio, makeup artists are always looking for products that deliver big visual impact in a short time. We developed this waterproof, crease-resistant, gel eye liner to glide on quickly and easily. Don't worry, it won't tug or pull on the delicate skin around your eyes. Gear up so you can create smudge-proof lines and precisely defined eyes in 60 seconds flat. Ready, Jet Set, Go!Show your liner some extra love! Remember to seal jar tightly immediately after use to avoid dry-out.Use an eye liner brush (Arced Liner Brush #21) to tight-line for added impact.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , POLYETHYLENE , CYCLOPENTASILOXANE , TRIMETHYLSILOXYSILICATE , DISTEARDIMONIUM HECTORITE , LECITHIN , PHENYL TRIMETHICONE , HYDROGENATED POLYISOBUTENE , BARIUM SULFATE , PROPYLENE CARBONATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BLACK 2 (CI 77266) , BISMUTH OXYCHLORIDE (CI 77163) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "535",
+ "brand": "smashbox",
+ "name": "Photo Angle Gel Liner",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_61621_388x396_0.jpg",
+ "description": "Nothing makes pictures pop in our L.A. photo studio like some serious color. Packed with the intensity of a gel and the creativity of a magic marker, instantly draw on a colorful cat eye, graphic editorial look and so much more\u2014no brush required. Bonus: this liner lasts for 36 hours! Unique flexible tip with a versatile, angled shape lets you create any line from thin to thick Creamy formula glides on for a smooth line every time36 hours of non-stop waterproof wear Won\u2019t transfer, flake or fade \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Nothing makes pictures pop in our L.A. photo studio like some serious color. Packed with the intensity of a gel and the creativity of a magic marker, instantly draw on a colorful cat eye, graphic editorial look and so much more\u2014no brush required. Bonus: this liner lasts for 36 hours! Unique flexible tip with a versatile, angled shape lets you create any line from thin to thick Creamy formula glides on for a smooth line every time36 hours of non-stop waterproof wear Won\u2019t transfer, flake or fade \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "534",
+ "brand": "smashbox",
+ "name": "Limitless Eye Liner",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35566_388x396_0.jpg",
+ "description": "This waterproof, long-wearing eye liner was designed with a built-in sharpener so it's ready for action whenever you open it. The creamy, easy-to apply formula contains vitamin E and jojoba oil to protect your skin. It also brings you precise application and bold definition for up to 8 hours. Genius!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: CYCLOPENTASILOXANE , SYNTHETIC WAX , ISODODECANE , POLYBUTENE , HYDROGENATED COTTONSEED OIL , SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL , CERESIN , OZOKERITE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , TOCOPHEROL , ASCORBYL PALMITATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n This waterproof, long-wearing eye liner was designed with a built-in sharpener so it's ready for action whenever you open it. The creamy, easy-to apply formula contains vitamin E and jojoba oil to protect your skin. It also brings you precise application and bold definition for up to 8 hours. Genius!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: CYCLOPENTASILOXANE , SYNTHETIC WAX , ISODODECANE , POLYBUTENE , HYDROGENATED COTTONSEED OIL , SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL , CERESIN , OZOKERITE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , TOCOPHEROL , ASCORBYL PALMITATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLACK 2 (CI 77266) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "533",
+ "brand": "smashbox",
+ "name": "Limitless Liquid Liner",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_35713_388x396_0.jpg",
+ "description": "Our studio pros are constantly creating new eye looks, from softly subtle to full-on Cleopatra. The problem is, they were hauling tons of different eye liners to every shoot. This waterproof liquid liner is designed to do it all. The precision tip pen gives you a smooth, controlled application every time. You can easily draw a thin or thick line in 1 sweep. Grab your own and start smoldering!For a fine line, use just the tip of the pen. Hold pen with the tip pointing at the eye lid and gently glide from inner to outer corner of eye. For a thicker line, lay the pen on its side and gently gliding along lashline from inner to outer corner of the eye. The more pressure applied, the thicker the line you will achieve.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , AMMONIUM STYRENE/ACRYLATES COPOLYMER , BUTYLENE GLYCOL , ALCOHOL , CETETH-20 , SEA SALT\\MARIS SAL\\SEL MARIN , POLYGLYCERYL-3 DISILOXANE DIMETHICONE , ACRYLATES/OCTYLACRYLAMIDE COPOLYMER , SODIUM HYDROXIDE , PENTYLENE GLYCOL , DISODIUM EDTA , PHENOXYETHANOL , [+/- BLACK 2 (CI 77266) , IRON OXIDES (CI 77491, CI 77492, CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Our studio pros are constantly creating new eye looks, from softly subtle to full-on Cleopatra. The problem is, they were hauling tons of different eye liners to every shoot. This waterproof liquid liner is designed to do it all. The precision tip pen gives you a smooth, controlled application every time. You can easily draw a thin or thick line in 1 sweep. Grab your own and start smoldering!For a fine line, use just the tip of the pen. Hold pen with the tip pointing at the eye lid and gently glide from inner to outer corner of eye. For a thicker line, lay the pen on its side and gently gliding along lashline from inner to outer corner of the eye. The more pressure applied, the thicker the line you will achieve.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: WATER\\AQUA\\EAU , AMMONIUM STYRENE/ACRYLATES COPOLYMER , BUTYLENE GLYCOL , ALCOHOL , CETETH-20 , SEA SALT\\MARIS SAL\\SEL MARIN , POLYGLYCERYL-3 DISILOXANE DIMETHICONE , ACRYLATES/OCTYLACRYLAMIDE COPOLYMER , SODIUM HYDROXIDE , PENTYLENE GLYCOL , DISODIUM EDTA , PHENOXYETHANOL , [+/- BLACK 2 (CI 77266) , IRON OXIDES (CI 77491, CI 77492, CI 77499)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "532",
+ "brand": "smashbox",
+ "name": "Always Sharp 3D Liner",
+ "price": 20.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_52687_388x396_0.jpg",
+ "description": "On a photo shoot, the crew can\u2019t wait around while makeup artists sharpen their pencils. That\u2019s why we developed this genius eye liner, which self-sharpens automatically every time you twist off the cap. The formula contains 3D pearl for added power and pop. You can ditch the sharpener but shimmer on! Our perfect-tip, precise liner saves time\u2014and keeps your eye makeup look totally on point.One tiwst of the cap will do it. No need to over twist to sharpen!Reflective, 3D pearls create a can\u2019t-be-beat glimmerEasy glide for a precise line, every timeOne twist of the cap sharpens the liner so your eyes are always on-point!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , CALCIUM SODIUM BOROSILICATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , CALCIUM ALUMINUM BOROSILICATE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , SILICA , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n On a photo shoot, the crew can\u2019t wait around while makeup artists sharpen their pencils. That\u2019s why we developed this genius eye liner, which self-sharpens automatically every time you twist off the cap. The formula contains 3D pearl for added power and pop. You can ditch the sharpener but shimmer on! Our perfect-tip, precise liner saves time\u2014and keeps your eye makeup look totally on point.One tiwst of the cap will do it. No need to over twist to sharpen!Reflective, 3D pearls create a can\u2019t-be-beat glimmerEasy glide for a precise line, every timeOne twist of the cap sharpens the liner so your eyes are always on-point!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , CALCIUM SODIUM BOROSILICATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , CALCIUM ALUMINUM BOROSILICATE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , SILICA , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "531",
+ "brand": "smashbox",
+ "name": "Always Sharp Waterproof Kohl Liner",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_48721_388x396_0.jpg",
+ "description": "On a photo shoot, the crew can\u2019t wait around while makeup artists sharpen their pencils. That\u2019s why we developed this award-winning kohl eye liner, which self-sharpens automatically every time you twist off the cap. The high-impact, waterproof formula is packed with pigment. It\u2019s a precise pencil liner that performs like a liquid. Save time\u2014and keep your eye makeup look totally on point!Want an even more intense eye look? Don't forget to line the inner rim for major definition! One tiwst of the cap will do it. No need to over twist to sharpen!Precise, waterproof, & non-flakingHyper-pigmented kohl for color-rich resultsCan be used on inner rimOne twist of the cap sharpens the liner so your eyes are always on-point!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM OXIDE GREENS (CI 77288) , CHROMIUM HYDROXIDE GREEN (CI 77289) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n On a photo shoot, the crew can\u2019t wait around while makeup artists sharpen their pencils. That\u2019s why we developed this award-winning kohl eye liner, which self-sharpens automatically every time you twist off the cap. The high-impact, waterproof formula is packed with pigment. It\u2019s a precise pencil liner that performs like a liquid. Save time\u2014and keep your eye makeup look totally on point!Want an even more intense eye look? Don't forget to line the inner rim for major definition! One tiwst of the cap will do it. No need to over twist to sharpen!Precise, waterproof, & non-flakingHyper-pigmented kohl for color-rich resultsCan be used on inner rimOne twist of the cap sharpens the liner so your eyes are always on-point!\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , PENTAERYTHRITYL STEARATE/CAPRATE/CAPRYLATE/ADIPATE , HYDROGENATED POLYDICYCLOPENTADIENE , ETHYLENE/PROPYLENE COPOLYMER , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM OXIDE GREENS (CI 77288) , CHROMIUM HYDROXIDE GREEN (CI 77289) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "530",
+ "brand": "smashbox",
+ "name": "Double Exposure Palette",
+ "price": 50.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_60680_388x396_0.jpg",
+ "description": "Pros in our L.A. photo studio created this transformative palette to multiply their eye shadow collections by adding water. These shadows can be used as-is or transformed in 1 of 4 ways when wet. You can amp up vibrancy, go deeper, make 'em metallic or add sparkle. Whether you're feeling demure or dramatic or something else entirely, reinvent your eyes in seconds with this ultimate palette.For best results, first wet the brush, then press it against your hand or tissue to remove any excess water. Then, dip the damp brush into the pan. (We recommend a damp brush versus a wet one.) 14 shadows that become 28\u2014just activate with water! Each shadow transforms in 1 of 4 ways, thanks to coated pigments that create multiple effects when wet Shadows won't glaze over Unique double-ended shadow brush included Bonus: Full Exposure Mascara sample #ShapeMatters insert with how-to's for 6 eye shapes\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Pros in our L.A. photo studio created this transformative palette to multiply their eye shadow collections by adding water. These shadows can be used as-is or transformed in 1 of 4 ways when wet. You can amp up vibrancy, go deeper, make 'em metallic or add sparkle. Whether you're feeling demure or dramatic or something else entirely, reinvent your eyes in seconds with this ultimate palette.For best results, first wet the brush, then press it against your hand or tissue to remove any excess water. Then, dip the damp brush into the pan. (We recommend a damp brush versus a wet one.) 14 shadows that become 28\u2014just activate with water! Each shadow transforms in 1 of 4 ways, thanks to coated pigments that create multiple effects when wet Shadows won't glaze over Unique double-ended shadow brush included Bonus: Full Exposure Mascara sample #ShapeMatters insert with how-to's for 6 eye shapes\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , DEXTRIN PALMITATE , POLYMETHYLSILSESQUIOXANE , SYNTHETIC FLUORPHLOGOPITE , ETHYLHEXYL PALMITATE , PEG-15/LAURYL DIMETHICONE CROSSPOLYMER , TOCOPHEROL , DIMETHICONE , SIMETHICONE , ALUMINA , DIPROPYLENE GLYCOL , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , ALUMINUM POWDER (CI 77000) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "529",
+ "brand": "smashbox",
+ "name": "#ShapeMatters Palette",
+ "price": 55.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_62978_388x396_0.jpg",
+ "description": "Full, beautifully groomed brows are super popular in our studio, so we developed a brush that helps you get the look at home quickly and easily. This stiff, bristled brush is angled to help you create the perfect on-trend eye brow. Use it to easily brush brow powder and wax onto the eye brow for a precise, polished look that wows all day long.#ShapeMatters At Smashbox Studios!Includes 3 video-Interactive Get The Look Cards to make contouring easy for your face, eye and brow shape. Just touch the card to your phone to instantly activate.Created at Smashbox Photo Studios L.A., this #ShapeMatters palette contains:9 Photo Op Eye Shadows2 Brow Powders1 Brow Wax2 Highlighters1 Bronzer1 Contour Powder1 Double-Ended Shadow/Brow Brush#SHAPEMATTERS insert with how-to'sTo Use: Check out our #ShapeMatters insert for precise how-to's by face, brow and eye shape.Full, beautifully groomed brows are super popular in our studio, so we developed a brush that helps you get the look at home quickly and easily. This stiff, bristled brush is angled to help you create the perfect on-trend eye brow. Use it to easily brush brow powder and wax onto the eye brow for a precise, polished look that wows all day long.#ShapeMatters At Smashbox Studios!Includes 3 video-Interactive Get The Look Cards to make contouring easy for your face, eye and brow shape. Just touch the card to your phone to instantly activate.Created at Smashbox Photo Studios L.A., this #ShapeMatters palette contains:9 Photo Op Eye Shadows2 Brow Powders1 Brow Wax2 Highlighters1 Bronzer1 Contour Powder1 Double-Ended Shadow/Brow Brush#SHAPEMATTERS insert with how-to'sTo Use: Check out our #ShapeMatters insert for precise how-to's by face, brow and eye shape.",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "528",
+ "brand": "smashbox",
+ "name": "Mini Full Exposure Palette",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_56725_388x396_0.jpg",
+ "description": "We see so many different eyes on set that our L.A. photo studio pros created this must-have range of neutrals to match any and all of them\u2014yours included.Includes:8 universally awesome neutral shades\u2014from nudes to blacks\u2014in the most blendable formulasLong-wearing shimmers and velvety smooth mattes; turn up or tone down the lusterWe see so many different eyes on set that our L.A. photo studio pros created this must-have range of neutrals to match any and all of them\u2014yours included.Includes:8 universally awesome neutral shades\u2014from nudes to blacks\u2014in the most blendable formulasLong-wearing shimmers and velvety smooth mattes; turn up or tone down the luster",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "527",
+ "brand": "smashbox",
+ "name": "Full Exposure Palette",
+ "price": 52.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_60560_388x396_0.jpg",
+ "description": "Pros in our L.A. studio use neutral eye shadows constantly, and they LOVE having the option to turn luster up or down. That\u2019s why we created this palette of long-wearing shimmers and velvety-smooth mattes in a range of 14 must-have shades. They\u2019re super blendable and anything but basic! Bonus: this palette comes with a deluxe sample of our shadow primer to help you lock on color for 24 hours.For added high wattage, press a shimmer shade into center of lid with fingertips.Mix mattes and shimmers for a camera-ready lookComes with a double-ended shadow brush14 universal shadows from nudes to blacksBonus: Includes 24 Hour Shadow Primer sampleCheck out our #ShapeMatters eye chart, featuring 6 eye shapes for inspiration.Pros in our L.A. studio use neutral eye shadows constantly, and they LOVE having the option to turn luster up or down. That\u2019s why we created this palette of long-wearing shimmers and velvety-smooth mattes in a range of 14 must-have shades. They\u2019re super blendable and anything but basic! Bonus: this palette comes with a deluxe sample of our shadow primer to help you lock on color for 24 hours.For added high wattage, press a shimmer shade into center of lid with fingertips.Mix mattes and shimmers for a camera-ready lookComes with a double-ended shadow brush14 universal shadows from nudes to blacksBonus: Includes 24 Hour Shadow Primer sampleCheck out our #ShapeMatters eye chart, featuring 6 eye shapes for inspiration.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "526",
+ "brand": "smashbox",
+ "name": "Photo Matte Eyes Mini",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_69731_388x396_0.jpg",
+ "description": "When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 8 matte shades in this mini-matte collection is a multitasker\u2014from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each -silky, richly pigmented dark shade intensifies when used wet.Includes: 8 all-matte wet/dry shades that can be used as liner, shadow or brow powder \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 8 matte shades in this mini-matte collection is a multitasker\u2014from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each -silky, richly pigmented dark shade intensifies when used wet.Includes: 8 all-matte wet/dry shades that can be used as liner, shadow or brow powder \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "525",
+ "brand": "smashbox",
+ "name": "Photo Matte Eyes",
+ "price": 49.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_69718_388x396_0.jpg",
+ "description": "When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 14 matte shades is a multitasker\u2014from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each silky, richly pigmented dark shade intensifies when used wet.Includes: 12 all-matte shades that can be used as liner, shadow or brow powder; dark shades intensify when wet 2 double-sized base shadow shades Double-ended liner/shadow brush #ShapeMatters lookbook insert with how-to's for 6 eye shapes and 5 brow shapes\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n When we noticed that our makeup artists use matte eye shadows as brow powder and liner on shoots in our L.A. photo studio, we knew we had to create a do-it-all formula just for eyes. Each of the 14 matte shades is a multitasker\u2014from stay-put shadows that double as liner to brow powders that also work as shadows. Plus, each silky, richly pigmented dark shade intensifies when used wet.Includes: 12 all-matte shades that can be used as liner, shadow or brow powder; dark shades intensify when wet 2 double-sized base shadow shades Double-ended liner/shadow brush #ShapeMatters lookbook insert with how-to's for 6 eye shapes and 5 brow shapes\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: TALC , DIMETHICONE , DIMETHICONOL STEARATE , LAUROYL LYSINE , DIISOSTEARYL MALATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , OCTYLDODECYL STEAROYL STEARATE , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC AMMONIUM FERROCYANIDE (CI 77510) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyebrow",
+ "tag_list": []
+ },
+ {
+ "id": "524",
+ "brand": "smashbox",
+ "name": "MATTE EXPOSURE PALETTE",
+ "price": 49.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_74764_388x396_0.jpg",
+ "description": "This all-matte palette has you covered with its silky, blendable shadows that double as stay-put liners. Created in Smashbox\u2019s L.A. photo studio for cover shots and pictures with a flash, these must-have matte shades are designed to make eyes pop without any reflective sheen. It includes a double-ended shadow/liner brush to line, define, and contour your eyes and a simple, step-by-step guide to getting a smoky, softly defined look and cat-eye for six different eye shapes.This palette contains:\u00a012 x 0.035 oz Matte wet/dry eye shadow in Spice (burnt orange), Blackberry (deep burgundy), Desert (medium/neutral brown), Sumatra (deep brown), Tonal (peach nude), Suede (soft red brown), Buff (pink nude), Grounded (medium cool brown), Drizzle (muted purple), Black Plum (deep purple), Truffle (light grey), Blackout (black)\u00a02 x 0.07 oz Matte base eye shadow shades in Wheat (soft warm brown), Vanilla (soft light beige)Double-ended shadow/liner brush\u00a0Step-by-step guide\u00a0The dark shades intensify and double as a liner when used wet.This all-matte palette has you covered with its silky, blendable shadows that double as stay-put liners. Created in Smashbox\u2019s L.A. photo studio for cover shots and pictures with a flash, these must-have matte shades are designed to make eyes pop without any reflective sheen. It includes a double-ended shadow/liner brush to line, define, and contour your eyes and a simple, step-by-step guide to getting a smoky, softly defined look and cat-eye for six different eye shapes.This palette contains:\u00a012 x 0.035 oz Matte wet/dry eye shadow in Spice (burnt orange), Blackberry (deep burgundy), Desert (medium/neutral brown), Sumatra (deep brown), Tonal (peach nude), Suede (soft red brown), Buff (pink nude), Grounded (medium cool brown), Drizzle (muted purple), Black Plum (deep purple), Truffle (light grey), Blackout (black)\u00a02 x 0.07 oz Matte base eye shadow shades in Wheat (soft warm brown), Vanilla (soft light beige)Double-ended shadow/liner brush\u00a0Step-by-step guide\u00a0The dark shades intensify and double as a liner when used wet.",
+ "rating": "",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "523",
+ "brand": "smashbox",
+ "name": "Eye Shadow Trio",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_38180_388x396_0.jpg",
+ "description": "Our fab trios are all playfulness and color! Get rich, bold hues in just one swipe. Each includes 3 coordinated shadows\u2014base shade, contour color and highlighter\u2014so you'll never wonder which shades to wear together again. Super blendable, velvety formula Highly pigmented, even color Lasting wearPeel back the label for application tips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.Sheen shadesINGREDIENTS: Mica, Nylon-12, PTFE, Zinc Stearate, Boron Nitride, Dimethicone, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Optics shadesINGREDIENTS: Mica, Calcium Sodium Borosilicate, Nylon-12, Dimethicone, PTFE, Zinc Stearate, Boron Nitride, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)] Matte shadesINGREDIENTS: Mica, Nylon-12, Zinc Stearate, Caprylic/Capric Triglyceride, Dimethicone, Polyethylene, Boron Nitride, Magnesium Silicate, Lauroyl Lysine, Vinyl Dimethicone/Methicone Silsesquioxane Crosspolymer, Isopentyldiol, Caprylyl Glycol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Our fab trios are all playfulness and color! Get rich, bold hues in just one swipe. Each includes 3 coordinated shadows\u2014base shade, contour color and highlighter\u2014so you'll never wonder which shades to wear together again. Super blendable, velvety formula Highly pigmented, even color Lasting wearPeel back the label for application tips.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.Sheen shadesINGREDIENTS: Mica, Nylon-12, PTFE, Zinc Stearate, Boron Nitride, Dimethicone, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]Optics shadesINGREDIENTS: Mica, Calcium Sodium Borosilicate, Nylon-12, Dimethicone, PTFE, Zinc Stearate, Boron Nitride, Polymethylsilsesquioxane, Tocopheryl Acetate, Ascorbyl Palmitate, Lauroyl Lysine, Pyrus Malus (Apple) Fruit Extract, Glycerin, Cyclopentasiloxane, Caprylyl Glycol, Silica, Tin Oxide, Polysilicone-11, Isopentyldiol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)] Matte shadesINGREDIENTS: Mica, Nylon-12, Zinc Stearate, Caprylic/Capric Triglyceride, Dimethicone, Polyethylene, Boron Nitride, Magnesium Silicate, Lauroyl Lysine, Vinyl Dimethicone/Methicone Silsesquioxane Crosspolymer, Isopentyldiol, Caprylyl Glycol, Phenoxyethanol, [+/- Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Bismuth Oxychloride (CI 77163), Blue 1 Lake (CI 42090), Carmine (CI 75470), Chromium Hydroxide Green (CI 77289), Chromium Oxide Greens (CI 77288), Ferric Ammonium Ferrocyanide (CI 77510), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), Ultramarines (CI 77007), Yellow 5 Lake (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "522",
+ "brand": "smashbox",
+ "name": "PHOTO OP EYE SHADOW SINGLES",
+ "price": 18.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_73232_388x396_0.jpg",
+ "description": "We polled makeup artists in our L.A. photo studio for their most versatile, eye-enhancing shades\u2014then packed their faves into one-swipe, true-color singles.Super blendable, velvety formulaHighly pigmented, even colorStart with our 24-Hour Photo Finish Shadow Primer to lock in around-the-clock color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: MICA , NYLON-12 , PTFE , ZINC STEARATE , BORON NITRIDE , DIMETHICONE , POLYMETHYLSILSESQUIOXANE , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , LAUROYL LYSINE , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCERIN , CYCLOPENTASILOXANE , CAPRYLYL GLYCOL , SILICA , TIN OXIDE , POLYSILICONE-11 , ISOPENTYLDIOL , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n We polled makeup artists in our L.A. photo studio for their most versatile, eye-enhancing shades\u2014then packed their faves into one-swipe, true-color singles.Super blendable, velvety formulaHighly pigmented, even colorStart with our 24-Hour Photo Finish Shadow Primer to lock in around-the-clock color.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: MICA , NYLON-12 , PTFE , ZINC STEARATE , BORON NITRIDE , DIMETHICONE , POLYMETHYLSILSESQUIOXANE , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , LAUROYL LYSINE , PYRUS MALUS (APPLE) FRUIT EXTRACT , GLYCERIN , CYCLOPENTASILOXANE , CAPRYLYL GLYCOL , SILICA , TIN OXIDE , POLYSILICONE-11 , ISOPENTYLDIOL , PHENOXYETHANOL , [+/- TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491, CI 77492, CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , CHROMIUM HYDROXIDE GREEN (CI 77289) , CHROMIUM OXIDE GREENS (CI 77288) , FERRIC FERROCYANIDE (CI 77510) , MANGANESE VIOLET (CI 77742) , ULTRAMARINES (CI 77007) , YELLOW 5 LAKE (CI 19140)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "521",
+ "brand": "smashbox",
+ "name": "BE LEGENDARY LONG-WEAR LIP LACQUER",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_56395_388x396_0.jpg",
+ "description": "Pros in our L.A. photo studio needed a no-touch-ups-needed lip lacquer that went on and stayed on in one comfortable smooth coat throughout an all-day shoot. So we pushed the boundaries and maxed out the amount of staining pigments we could blend in with glossy pearls and conditioning vitamin E, so you get a velvety, legendary lacquered finish that stays for a full 8 hours without drying or feeling tacky.Want an even fuller pout? Dab a lighter shade like Pout or Flushed in the center of your lips. Goes on as a lacquer, then uniquely adjusts to stain Long-lasting color; stays put for a full 8 hours Covers lips in one, smooth comfortable coat No patchy fading or annoying dry feeling \n \n INGREDIENTS: POLYBUTENE , OCTYLDODECANOL , OZOKERITE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SILICA SILYLATE , PENTAERYTHRITYL TETRAISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , SQUALANE , PERSEA GRATISSIMA (AVOCADO) OIL , PALMITOYL OLIGOPEPTIDE , ETHYLHEXYL PALMITATE , TRIBEHENIN , ACRYLATES COPOLYMER , POLYETHYLENE TEREPHTHALATE , SILICA , TIN OXIDE , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , SYNTHETIC FLUORPHLOGOPITE , HYDROLYZED HYALURONIC ACID , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , SORBITAN ISOSTEARATE , FLAVOR (AROMA) , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , ORANGE 5 (CI 45370) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 (CI 15985) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Pros in our L.A. photo studio needed a no-touch-ups-needed lip lacquer that went on and stayed on in one comfortable smooth coat throughout an all-day shoot. So we pushed the boundaries and maxed out the amount of staining pigments we could blend in with glossy pearls and conditioning vitamin E, so you get a velvety, legendary lacquered finish that stays for a full 8 hours without drying or feeling tacky.Want an even fuller pout? Dab a lighter shade like Pout or Flushed in the center of your lips. Goes on as a lacquer, then uniquely adjusts to stain Long-lasting color; stays put for a full 8 hours Covers lips in one, smooth comfortable coat No patchy fading or annoying dry feeling \n \n INGREDIENTS: POLYBUTENE , OCTYLDODECANOL , OZOKERITE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , SILICA SILYLATE , PENTAERYTHRITYL TETRAISOSTEARATE , POLYGLYCERYL-2 TRIISOSTEARATE , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , SQUALANE , PERSEA GRATISSIMA (AVOCADO) OIL , PALMITOYL OLIGOPEPTIDE , ETHYLHEXYL PALMITATE , TRIBEHENIN , ACRYLATES COPOLYMER , POLYETHYLENE TEREPHTHALATE , SILICA , TIN OXIDE , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , SYNTHETIC FLUORPHLOGOPITE , HYDROLYZED HYALURONIC ACID , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , SORBITAN ISOSTEARATE , FLAVOR (AROMA) , PHENOXYETHANOL , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , ORANGE 5 (CI 45370) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 (CI 15985) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "520",
+ "brand": "smashbox",
+ "name": "L.A. Lights Cheek & Lip Color",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_61630_388x396_0.jpg",
+ "description": "Get the ultimate West Coast glow\u2014in a stick! From Santa Monica to Sunset Boulevard, our latest innovation in illumination is inspired by the magic light of L.A. This multipurpose color for lips and cheeks can be increased from a subtle sheen to a full-on flush. The lightweight, creamy formula looks and feels as natural as your own skin.Want a strobing effect? Try Hollywood & Highlight!Apply to face, lips and/or cheeks for a beautifully illuminated veil of natural color. Blend with the included buffing sponge.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Silicone, Oil, Fragrance & Talc.INGREDIENTS: DIISOSTEARYL MALATE , OCTYLDODECANOL , POLYGLYCERYL-3 DIISOSTEARATE , POLYETHYLENE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , DICALCIUM PHOSPHATE , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Get the ultimate West Coast glow\u2014in a stick! From Santa Monica to Sunset Boulevard, our latest innovation in illumination is inspired by the magic light of L.A. This multipurpose color for lips and cheeks can be increased from a subtle sheen to a full-on flush. The lightweight, creamy formula looks and feels as natural as your own skin.Want a strobing effect? Try Hollywood & Highlight!Apply to face, lips and/or cheeks for a beautifully illuminated veil of natural color. Blend with the included buffing sponge.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Silicone, Oil, Fragrance & Talc.INGREDIENTS: DIISOSTEARYL MALATE , OCTYLDODECANOL , POLYGLYCERYL-3 DIISOSTEARATE , POLYETHYLENE , MICROCRYSTALLINE WAX\\CERA MICROCRISTALLINA\\CIRE MICROCRISTALLINE , DICALCIUM PHOSPHATE , TIN OXIDE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "519",
+ "brand": "smashbox",
+ "name": "Always Sharp Lip Liner",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_56417_388x396_0.jpg",
+ "description": "Our makeup artists have no time to stop and sharpen their lip pencils\u2014and obvi neither do you! That\u2019s why we developed this brilliant liner, which self-sharpens automatically every time you twist off the cap. Choose liner that complements your lipstick, then get right to the point and create a camera-ready lip look!For the perfect ombre lip, line with a darker shade, then fill in with your favorite Be Legendary lipstick. One tiwst of the cap will do it. No need to over twist to sharpen! Water resistant and non-feathering Invisible liner preps lips for any color Automatically self-sharpensOne twist of the cap sharpens the liner.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , BIS-DIGLYCERYL POLYACYLADIPATE-2 , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , ETHYLENE/PROPYLENE COPOLYMER , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 LAKE (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , RED 40 LAKE (CI 16035) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Our makeup artists have no time to stop and sharpen their lip pencils\u2014and obvi neither do you! That\u2019s why we developed this brilliant liner, which self-sharpens automatically every time you twist off the cap. Choose liner that complements your lipstick, then get right to the point and create a camera-ready lip look!For the perfect ombre lip, line with a darker shade, then fill in with your favorite Be Legendary lipstick. One tiwst of the cap will do it. No need to over twist to sharpen! Water resistant and non-feathering Invisible liner preps lips for any color Automatically self-sharpensOne twist of the cap sharpens the liner.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: ISODODECANE , SYNTHETIC WAX , BIS-DIGLYCERYL POLYACYLADIPATE-2 , PENTAERYTHRITYL TETRAISOSTEARATE , POLYBUTENE , ETHYLENE/PROPYLENE COPOLYMER , POLYETHYLENE , PERFLUORONONYL DIMETHICONE , PENTAERYTHRITYL TETRA-DI-T-BUTYL HYDROXYHYDROCINNAMATE , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , MANGANESE VIOLET (CI 77742) , RED 6 (CI 15850) , RED 7 LAKE (CI 15850) , RED 21 LAKE (CI 45380) , RED 22 LAKE (CI 45380) , RED 28 LAKE (CI 45410) , RED 30 (CI 73360) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , RED 40 LAKE (CI 16035) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "518",
+ "brand": "smashbox",
+ "name": "Insta-Matte Lipstick Transformer",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_68224_388x396_0.jpg",
+ "description": "Give your lipstick a matte makeover\u2014instantly! Created by our L.A. photo studio pro artists to instantly double their lipstick collection on set, this gel transforms any cream lipstick into a velvety matte finish that\u2019s never chalky. Now you can wear your favorite lip shades 2 ways, minus the mess of DIY mattifying methods. Loose powder on your lips? No thanks. Just pat for matte!Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms. Transforms any cream lipstick into a matte finish and doubles your lipstick wardrobe Improves wear of lipstick & prevents feathering Portable tube makes it perfect for on-the-go Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: DIMETHICONE , DIMETHICONE CROSSPOLYMER , TOCOPHEROL , TOCOPHERYL ACETATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , TETRAHEXYLDECYL ASCORBATE , PHENOXYETHANOL\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Give your lipstick a matte makeover\u2014instantly! Created by our L.A. photo studio pro artists to instantly double their lipstick collection on set, this gel transforms any cream lipstick into a velvety matte finish that\u2019s never chalky. Now you can wear your favorite lip shades 2 ways, minus the mess of DIY mattifying methods. Loose powder on your lips? No thanks. Just pat for matte!Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms. Transforms any cream lipstick into a matte finish and doubles your lipstick wardrobe Improves wear of lipstick & prevents feathering Portable tube makes it perfect for on-the-go Apply generously over cream lipstick using finger until a matte look is achieved. FYI: Not for use with glosses, lacquers or balms.\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: DIMETHICONE , DIMETHICONE CROSSPOLYMER , TOCOPHEROL , TOCOPHERYL ACETATE , CAPRYLYL GLYCOL , HEXYLENE GLYCOL , TETRAHEXYLDECYL ASCORBATE , PHENOXYETHANOL\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "517",
+ "brand": "smashbox",
+ "name": "BE LEGENDARY LIPSTICK \u00d7 FOSTER SISTERS",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_75476_388x396_0.jpg",
+ "description": "Smashbox Cosmetics has collaborated with the effortlessly cool and hilarious \"Barely Famous\" (VH1) sisters, Erin and Sara Foster, to celebrate the launch of the new Be Legendary Lipstick collection. The sisters personalized selections illustrates their unforgettable personalities and the enviable shades of the always photo ready lipstick. Sara chose a soft nude shade, Honey, while Erin chose Mandarin, a vibrant red orange. Both stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won't dry out or settle unevenly on lips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\\CANDELILLA CERA\\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Smashbox Cosmetics has collaborated with the effortlessly cool and hilarious \"Barely Famous\" (VH1) sisters, Erin and Sara Foster, to celebrate the launch of the new Be Legendary Lipstick collection. The sisters personalized selections illustrates their unforgettable personalities and the enviable shades of the always photo ready lipstick. Sara chose a soft nude shade, Honey, while Erin chose Mandarin, a vibrant red orange. Both stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won't dry out or settle unevenly on lips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\\CANDELILLA CERA\\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "516",
+ "brand": "smashbox",
+ "name": "Be Legendary Lipstick",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_40950_388x396_0.jpg",
+ "description": "Makeup artists in our L.A. studio were constantly blending colors to achieve lipstick nirvana. That\u2019s why we expanded the line to include 120 jaw-dropping shades! Our creams and mattes stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won\u2019t dry out or settle unevenly on lips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\\CANDELILLA CERA\\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Makeup artists in our L.A. studio were constantly blending colors to achieve lipstick nirvana. That\u2019s why we expanded the line to include 120 jaw-dropping shades! Our creams and mattes stay put and pop on camera, delivering rich, vibrant color in just 1 swipe.In a pinch, dot cream shades on cheeks for an instant flush.Available in nudes, neutrals, reds, corals, pinks, berries, browns, violets and bolds Pigment-loaded formula glides on and feels lush and light on the lips Moisturizing, satin-smooth creams soften and protect lips with shea butter + vitamins C and E Silky, vitamin-fortified mattes won\u2019t dry out or settle unevenly on lips\n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: PENTAERYTHRITYL TETRAISOSTEARATE , BIS-DIGLYCERYL POLYACYLADIPATE-2 , CAPRYLIC/CAPRIC TRIGLYCERIDE , OLEIC/LINOLEIC/LINOLENIC POLYGLYCERIDES , EUPHORBIA CERIFERA (CANDELILLA) WAX\\CANDELILLA CERA\\CIRE DE CANDELILLA , PVP/HEXADECENE COPOLYMER , DIPENTAERYTHRITYL HEXAHYDROXYSTEARATE/HEXASTEARATE/HEXAROSINATE , DIISOSTEARYL MALATE , POLYETHYLENE , HYDROGENATED POLYDECENE , POLYBUTENE , CETYL LACTATE , SYNTHETIC WAX , BUTYROSPERMUM PARKII (SHEA BUTTER) , TOCOPHEROL , TOCOPHERYL ACETATE , ASCORBYL PALMITATE , GLYCINE SOJA (SOYBEAN) SEED EXTRACT , OLEA EUROPAEA (OLIVE) FRUIT EXTRACT , CHAMOMILLA RECUTITA (MATRICARIA) FLOWER OIL , BEESWAX\\CERA ALBA\\CIRE D\u00bfABEILLE , COPERNICIA CERIFERA (CARNAUBA) WAX\\CERA CARNAUBA\\CIRE DE CARNAUBA , SYNTHETIC BEESWAX , CERAMIDE 3 , CHOLESTEROL , OCTYLDODECANOL , TRITICUM VULGARE (WHEAT) BRAN EXTRACT , POTASSIUM SULFATE , ALUMINA , CALCIUM ALUMINUM BOROSILICATE , CALCIUM SODIUM BOROSILICATE , TIN OXIDE , SILICA , OLEIC ACID , PALMITIC ACID , CETYL ALCOHOL , GLYCERYL STEARATE , ETHYLHEXYL HYDROXYSTEARATE , FLAVOR (AROMA) , VANILLIN , [+/- MICA , TITANIUM DIOXIDE (CI 77891) , IRON OXIDES (CI 77491) , IRON OXIDES (CI 77492) , IRON OXIDES (CI 77499) , BISMUTH OXYCHLORIDE (CI 77163) , BLUE 1 LAKE (CI 42090) , CARMINE (CI 75470) , RED 6 (CI 15850) , RED 21 (CI 45380) , RED 6 LAKE (CI 15850) , RED 7 LAKE (CI 15850) , RED 28 LAKE (CI 45410) , RED 30 LAKE (CI 73360) , RED 33 LAKE (CI 17200) , YELLOW 5 LAKE (CI 19140) , YELLOW 6 LAKE (CI 15985)]\n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "515",
+ "brand": "smashbox",
+ "name": "ALWAYS ON LIQUID LIPSTICK",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://www.smashbox.com/media/images/products/388x396/sbx_sku_72279_388x396_0.jpg",
+ "description": "Perfected on-set in our L.A. photo studio, our long-wear, water-resistant liquid lipstick features Advanced Polymer Technology that makes it stay put and look as fresh and flawless as your first swipe\u2014for up to 8 hours. Featherweight but fierce, this liquid matte formula is infused with lip-smoothing Primer Oil complex for suede-soft lip color in 20 super-rad shades. It\u2019s smudge-proof, budge-proof and non-feathering. Because really, who has time for touch-ups? LILLY SINGH + SMASHBOXMegastar Lilly Singh is a comedian, artist and all-around entertainer who inspires her eight million YouTube subscribers to be a \"Bawse.\" The second we met her, we knew we had to collaborate. We bottled her smart, funny vibe and created Bawse, Lilly's own signature shade of our Always On Liquid Lipstick. This no-rules red is fierce, featherweight and looks as fresh as your first swipe for eight hours. Wear it whenever you want to make things happen.The only matte liquid lipstick infused with Smashbox Primer Oil complex to keep it comfortableAdvanced Polymer Technology makes it stay put and look as fresh and flawless as the first swipePrecision tip applicator lines and fills with one swipe of our no-drop reservoirBudge-proof, non-feathering and water-resistantTo use: Define lip with precise tip and fill in with color. Wipe off with oil-based remover.\u00a0 \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Isododecane, Dimethicone, Trimethylsiloxysilicate, Polybutene, Petrolatum, Cyclohexasiloxane, Kaolin, Disteardimonium Hectorite, Beeswax\\Cera Alba\\Cire d'Abeille, Silica Dimethyl Silylate, Glyceryl Behenate/Eicosadioate, Tocopheryl Acetate, Propylene Carbonate, Helianthus Annuus (Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Cyclopentasiloxane, Flavor (Aroma), Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Blue 1 Lake (CI 42090), Carmine (CI 75470), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Mica, Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 22 Lake (CI 45380), Red 28 (CI 45410), Red 28 Lake (CI 45410), Red 30 (CI 73360), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Titanium Dioxide (CI 77891), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n Perfected on-set in our L.A. photo studio, our long-wear, water-resistant liquid lipstick features Advanced Polymer Technology that makes it stay put and look as fresh and flawless as your first swipe\u2014for up to 8 hours. Featherweight but fierce, this liquid matte formula is infused with lip-smoothing Primer Oil complex for suede-soft lip color in 20 super-rad shades. It\u2019s smudge-proof, budge-proof and non-feathering. Because really, who has time for touch-ups? LILLY SINGH + SMASHBOXMegastar Lilly Singh is a comedian, artist and all-around entertainer who inspires her eight million YouTube subscribers to be a \"Bawse.\" The second we met her, we knew we had to collaborate. We bottled her smart, funny vibe and created Bawse, Lilly's own signature shade of our Always On Liquid Lipstick. This no-rules red is fierce, featherweight and looks as fresh as your first swipe for eight hours. Wear it whenever you want to make things happen.The only matte liquid lipstick infused with Smashbox Primer Oil complex to keep it comfortableAdvanced Polymer Technology makes it stay put and look as fresh and flawless as the first swipePrecision tip applicator lines and fills with one swipe of our no-drop reservoirBudge-proof, non-feathering and water-resistantTo use: Define lip with precise tip and fill in with color. Wipe off with oil-based remover.\u00a0 \n \n Formulated without Parabens, Sodium Lauryl Sulfate, Phthalates, Fragrance & Talc.INGREDIENTS: Isododecane, Dimethicone, Trimethylsiloxysilicate, Polybutene, Petrolatum, Cyclohexasiloxane, Kaolin, Disteardimonium Hectorite, Beeswax\\Cera Alba\\Cire d'Abeille, Silica Dimethyl Silylate, Glyceryl Behenate/Eicosadioate, Tocopheryl Acetate, Propylene Carbonate, Helianthus Annuus (Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Cyclopentasiloxane, Flavor (Aroma), Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol, [+/- Blue 1 Lake (CI 42090), Carmine (CI 75470), Iron Oxides (CI 77491), Iron Oxides (CI 77492), Iron Oxides (CI 77499), Mica, Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 22 Lake (CI 45380), Red 28 (CI 45410), Red 28 Lake (CI 45410), Red 30 (CI 73360), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Titanium Dioxide (CI 77891), Yellow 5 Lake (CI 19140), Yellow 6 Lake (CI 15985)] \n \n Please be aware that ingredient lists may change or vary from time to time. Please refer to the ingredient list on the product package you receive for the most up to date list of ingredients.\n \n ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "514",
+ "brand": "marcelle",
+ "name": "Marcelle Quad Bronzer Sunkissed",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f15f238ecfe181067f7b6158ade61f6e_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Use the Marcelle Quad Bronzer for the perfect shimmery finish.This unique, shimmery formula, enriched with Aloe Vera, comes in a quad of 4 different shades that can be blended together to get a sun-kissed glow all year long. Use the lighter shades separately for a hint of bronze or the darker shades for a stronger tan.You can also use it to play with face sculpting and contouring effects to play up your best features.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "512",
+ "brand": "stila",
+ "name": "Stila Stay All Day Bronzer in Medium",
+ "price": 46.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/66cae20898e4b7204024554a17e382d6_ra,w158,h184_pa,w158,h184.png",
+ "description": "The perfect complement to all skin tones, Stay All Day Bronzer is a lightweight, matte-satin powder that is ideal for accenting the face and body to perfection. Features are sculpted and shaped with long-wearing pigments that blend effortlessly for a natural-looking result.\u00a0 This sun-kissed, bronze hue adds a touch of sun for a healthy glow all year round. Features:Velvety texture blends seamlessly onto the face and body with no streaking or cakingFade proof color stays true all day without oxidizingBuildable coverageOil-free, water-resistant formulaJumbo pan size allows for effortless brush applicationIngredients: Silica, Polymethyl Methacrylate, Octylodecyl Stearoyl Stearate, Ethylene/Acrylic Acid Copolymer, Pentaerythrityl Tetraisostearate, Hydrogen Dimethicone, Isopropyl Isostearate, Zinc Stearate, Magnesium Myristate, Diisostearyl Malate, Zinc Oxide, Ethylhexyl Methoxycinnamate, Triethoxycaprylylsilane, Caprylyl Glycol, Phenoxyethanol, Sorbic Acid, Mica. (+/-) Iron Oxides. (CI 77491, CI 77492, CI 77499) ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "509",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Bronzer Duo",
+ "price": 37.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/40e119c70f452a919de32dcca0dac778_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Mineral Fusion Sheer Moisture Lip Tint is a silky bronzer that blends flawlessly into the skin and lasts all day, adding a natural, flattering warmth to the complexion for a healthy, sunkissed glow.\u00a0 The combination of Pomegranate, Red Tea, White Tea plus Vitamins C and E defends against free radical damage and gives skin a healthy radiance.\u00a0 Formulated with only the safest, most gentle ingredients, the natural UV protection of minerals, plus skin-soothing Aloe Vera.\u00a0 Great for use on all skin types.Features:Duo of matte bronzer and shimmering highlighterSunkissed GlowAge-DefyingSkin-SoothingFree of artificial colour and fragranceCruelty FreeParaben FreeTalc FreeHypo-allergenicPhthalate FreeIngredients: Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Titanium Dioxide, Caprylic/Capric Triglyceride, Tocopheryl Acetate (Vitamin E), Ascorbyl Palmitate (Vitamin C), Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Aloe Barbadensis (Aloe Vera) Leaf Extract, Sambucus Nigra Fruit Extract, Lauroyl Lysine. MAY CONTAIN (+/-): Iron Oxide.Gluten Free, Vegan",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "508",
+ "brand": "nyx",
+ "name": "NYX Mosaic Powder Blush Paradise",
+ "price": 10.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/deedb7bd74bda43f062a09aab2ee1ec8_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Mosaic Powder Blush is a medley of that creates a flush of color and dazzling glow for every skin tone. Features:Five shades in one palette, this blush is bright pink with gold shimmerWorks as blush and highlighterFlattering on every skin toneUse to highlight, enhance & brighten Each mosaic of color blends beautifully with magical results",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "507",
+ "brand": "",
+ "name": "Saint Cosmetics Bronzer",
+ "price": 30.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4f8578c9a7588249e95d463078b84de1_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Saint Cosmetics' velvety smooth bronzing formulation gives the skin a soft, healthy and naturally radiant skin.Features:Comes in a range of shades to enhance all complexionsLong- lastingProvides skin with a sun-kissed healthy glowMade in Canada from naturally derived ingredientsChemical Free, Vegan, Gluten Free",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "506",
+ "brand": "marcelle",
+ "name": "Marcelle Monochromatic Bronzer",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1f2cd5b946f5e1d5bea2a7a7273c6fa4_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Marcelle Monochromatic Bronzer gives you a touch of sun for a radiant complexion!\nEnjoy a sun-kissed complexion all year long without experiencing the \nsun's harmful effects! Marcelle's versatile bronzer let you choose your\n how you want to look: enjoy the look of a luminous bronze goddess or a \nmore natural healthy looking complexion. Let your beauty glow with \nMarcelle's hypoallergenic and perfume-free bronzer!\nWithout preservatives or parabens. ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "505",
+ "brand": "annabelle",
+ "name": "Annabelle Biggy Bronzer Haute Gold",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0bd612799d7958f7b1b98cc02bad5d09_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Bronzed to perfection! Get sun-kissed, radiant skin in seconds with this\n Annabelle Biggy Bronzer mix of bronze and golden shades.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "504",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Bronzing Powder Compact",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a94849792814b6d5a22d5cf8084d0211_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Dr. Hauschka Bronzing Powder Compact blends easily with any skin tone, an ultra-fine bronzer for a sun-kissed glow. Gentle and nurturing enough for the most sensitive skin.\u00a0 Features:Silk, anthyllis, witch hazel and sage contour and smooth the complexion for a flawless look.Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients: Talc, Diatomaceous Earth (Solum Diatomeae), Daucus Carota Sativa (Carrot) Root Extract, Silk (Serica) Powder , Kaolin, Anthyllis Vulneraria Extract, Magnesium Stearate, Simmondsia Chinensis (Jojoba) Seed Oil, Mica, Hamamelis Virginiana (Witch Hazel) Bark/Leaf Extract, Silica, Salvia Officinalis (Sage) Leaf Extract, Camellia Sinensis (Black Tea) Leaf Extract, Fragrance (Essential Oil), Limonene*, Linalool*, Citronellol*, Geraniol*, Coumarin*, Citral*, Benzyl Benzoate*, Eugenol*, Tocopherol, Ascorbyl Dipalmitate, Iron Oxides (CI 77491, CI 77942, CI 77499), Titanium Dioxide (CI 77891)",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "503",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Super BB InstaReady Filter BB Bronzer",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/870e044cfb1d2b136cec2ce814871191_ra,w158,h184_pa,w158,h184.png",
+ "description": "Featuring InstaFilter Technology, a proprietary blend of mattifying and pore balancing spherical beads, color filter pigments and high-tech polymers that work together to instantly optimize light reflection, blur imperfections and visibly retexturize skin.#SunkissedGlow: Ultra-lightweight, multi-colored bronzer delivers a multi-dimensional glow that captures, diffuses and softens the reflection of light on your skin for the ultimate sunkissed glow. Features:Velvety-soft texture instantly melts into skinContains dial-sphere particles that absorb oil but not moistureCreates a smooth, skin-perfecting radiant tan glowDirections: May be worn alone or over makeup. Lightly brush powder over face and neck for a natural-looking tan glow. To accentuate and contour, apply more over cheekbones. For the most even application, be sure to tap excess powder from brush before applying. Ingredients: Ingredients: Talc, Caprylic/Capric Triglyceride, Mica, Nylon-12, Silica, Calcium Aluminum Borosilicate, Lauroyl Lysine, Dimethicone, Aluminum Chlorohydrate, Fomes Officinalis (Mushroom) Extract, Alumina, Butylene Glycol, Methyl Methacrylate Crosspolymer, PEG-40 Hydrogenated Castor Oil, Tin Oxide, Triethoxycaprylylsilane, Phenoxyethanol, Ethylhexylglycerin, Benzoic Acid, Dehydroacetic Acid ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "502",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Big Bronzer",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/acdcb23975bea28a1bc06123664e4c09_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "How do you make a good thing better? By making it bigger! This \noversized version of our best selling and award-winning Medium Bronzer \nhas been designed to be used on the face and body without messy orange \nstreaks.\n\u00a0\nFeatures and Benefits\n Designed to be used on the face and body without streaking.Sheer and layerable texture for a natural look \u2013 no more messy brown streaks.Light reflective particles give a radiant glow to the skin all year round.How to Use: Using a large fluff brush apply over the areas of the face that are \nnaturally touched by the sun like the apples of the cheeks, the upper \ncheekbones, forehead and along the jaw line\n For natural looking results without any streaking use a circular buffing actionIngredients: Talc, Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Octyldodecyl \nStearate, Polyethylene, Boron Nitride, Phenoxyethanol, Silica, \nTocopheryl Acetate, PTFE, Carthamus Tinctorius (Safflower) Seed Oil, \nIsopropylparaben, Isobutylparaben, Butylparaben, Tin Oxide, Aloe \nBarbadensis (Leaf) Extract. May Contain: CI 77891 (Titanium Dioxide), CI 15850 (Red 7 Lake), CI 77491/CI 77492/CI 77499 (Iron Oxides)\n\n\n",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "501",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Matte Bronzer",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/56e62153a7df93ef3ec4cfd96d8fe99d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "NO messy brown streaks!! A favorite with professional make-up \nartists and celebrities Cargo's bronzer glides easily over the skin for a \nbeautiful sun-kissed look. It can be layered to the desired \nbronze look. Plus the signature, sleek oversized tin offers a large surface \narea for easy, even application of colour.\n\u00a0\nFeatures:\nA favorite with professional make-up artists, celebrities and clientsGlides easily over the skin for a beautiful sun-kissed lookColor can be built to the desired strength on the skin \u2013 NO messy brown streaks!! The signature, sleek oversized tin offers a large surface area for easy, even application of colorHow to Use: Using\n a large fluff brush apply over the areas of the face that are naturally\n touched by the sun like the apples of the cheeks, the upper cheekbones,\n forehead and along the jaw line For natural looking results without any streaking use a circular buffing actionIngredients: Mica, Talc, Nylon-12, Zinc Stearate, Dimethicone, Squalane, Aluminum \nStarch, Octenysuccinate, Polyethylene, Octyldodecyl Stearoyl Stearate, \nKaolin, Trimethylsiloxysilicate, Butylparaben, Methicone, Mineral Oil. May Contain(+/-): Titanium Dioxide, Iron Oxides.\n",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "500",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Bronzer",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e9721906a06fe5eaf7447ade8de3731c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "NO messy brown streaks!! A favorite with professional make-up \nartists and celebrities Cargo's bronzer glides easily over the skin for a \nbeautiful sun-kissed look. Subtle\n hints of shimmer add a radiant and youthful glow to the skin, while \nsoftening the appearance of the skin. This bronzer can be layered to the desired \nbronze look. Cargo's signature, sleek oversized tin offers a large surface \narea for easy, even application of colour.\n\u00a0\nFeatures:\nA favorite with professional make-up artists, celebrities and clientsGlides easily over the skin for a beautiful sun-kissed lookSubtle hints of shimmer add a radiant and youthful glow to the skin, while softening the appearance of the skinColor can be built to the desired strength on the skin \u2013 NO messy brown streaks!! The signature, sleek oversized tin offers a large surface area for easy, even application of colorShade Range: Ingredients: Mica, Talc, Nylon-12, Zinc Stearate, Dimethicone, Squalane, Aluminum \nStarch, Octenysuccinate, Polyethylene, Octyldodecyl Stearoyl Stearate, \nKaolin, Trimethylsiloxysilicate, Butylparaben, Methicone, Mineral Oil. May Contain(+/-): Titanium Dioxide, Iron Oxides.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "499",
+ "brand": "covergirl",
+ "name": "CoverGirl truBLEND Bronzer",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/60f9f4f29be5221ff70cf20fabc03564_ra,w158,h184_pa,w158,h184.png",
+ "description": "CoverGirl's New truBLEND Bronzer has a marble-baked formula that blends instantly with skin making bronzer lines a thing of the past.Features:Baked blend of colors for the perfect glowBaked to get the perfect bronze for every skin toneBlends instantly, no bronzer linesSuitable for sensitive skin How to Apply: Step 1: Lightly dip brush into bronzer, being careful to tap or blow off excess powder. Step 2: Next, sweep the bronzer over cheeks and temples to create a warm, even, sun-kissed glow. ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "497",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Bronzer",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ad40b33db806e7c0f0edcddf331dc182_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Bronzer is infused with 100% Pure Argan Oil, known as \"liquid gold\" for its rich conditioning benefits that can improve skin's brightness, tone, texture and elasticity. This magical ingredient from Morocco transforms skin, smoothing the appearance of fine lines, brightening dull skin and renewing suppleness, helping to enhance skin's youthful glow.Features: Exotically scented formula instantly creates a lit-from-within glowHypoallergenicGluten & Paraben freeNon-comedogenicDermatologist approvedDirections: May be worn alone or over makeup.\u00a0 Lightly brush powder over face and neck for a natural looking tan glow.\u00a0 For an exotic glow, apply more over cheekbones.\u00a0 For the most even application, be sure to tap excess powder from brush before applying.Ingredients: Talc, Mica, Isostearyl Neopentanoate, Fragrance, Polybutene, Argania Spinosa (Argan) Kernel Oil, Ascorbyl Palmitate, C12-15 Alkyl Benzoate, Calcium Sodium Borosilicate, Citric Acid, Glyceryl Oleate, Glyceryl Stearate, Isopropyl Isostearate, Lecithin, Tin Oxide, Tocopherol, Tocopheryl Acetate, Caprylyl Glycol, Hexylene Glycol, Phenoxyethanol. May Contain: Iron Oxides, Titanium Dioxide.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "496",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Bronzer Palette",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/43c49769e362a003f88479de225c6dd6_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This beautiful e.l.f. Bronzer Palette holds 4 gorgeous shades to mix and match throughout the year for a custom-blended glow.\u00a0 With a mixture of matte and shimmer finishes, you can achieve a professional look every time.\u00a0 The pigmented colours are great for contouring, shading, sculpting, and highlighting.How To Use: For a contoured look, coose desire shade and apply colour by tracing a \"figure 3\" on the outer side of the face from the forehead down towards the cheeks and downward along the jawline. For a sun-kissed glow, apply a little colour onto the forehead, nose, cheekbones, and chin.\u00a0 Make sure to blend out any lines for a natural look. Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zinc Stearate, Dimethicone, Tocopheryl Acetate (Ve). MAY CONTAIN: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Manganese Violet (CI 77742).",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "495",
+ "brand": "maybelline",
+ "name": "Maybelline Face Studio Master Hi-Light Light Booster Bronzer",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/991799d3e70b8856686979f8ff6dcfe0_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Face Studio Master Hi-Light Light Boosting bronzer formula has an expert \nbalance of shade + shimmer illuminator for natural glow. Skin goes \nsoft-lit with zero glitz.\n\n\t\tFor Best Results: Brush over all shades in palette and gently sweep over \ncheekbones, brow bones, and temples, or anywhere light naturally touches\n the face.\n\n\t\t\n\t\n\n ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "494",
+ "brand": "",
+ "name": "Fake Bake Beauty Bronzer",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9359d3b10235c72fc904dd314b951b70_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Fake Bake Beauty Bronzer is paraben free and is perfect for an all over glow!Colour: ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "493",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Bronze Booster Glow-Boosting Pressed Bronzer",
+ "price": 20.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7b33d70c5494b72f23edf9d07acf599d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This bronzer with benefits provides an instant and lasting tan-boost that blends and builds easily to your desired level of bronze. Lightweight powder glides on smoothly for a totally uniform and even, healthy-looking tan glow. Formulated with Glow Activators, an exclusive infusion of vitamins, moisturizers and antioxidants that provide mistake-proof Triple-Action Bronze Boosting.Directions for Use: May be worn alone or over makeup. Lightly brush powder over face and neck for a natural-looking tan glow. To accentuate and contour, apply more over cheekbones. For the most even application, be sure to tap excess powder from brush before applying.Ingredients: Talc, Mica, Nylon-12, Zinc Stearate, Cyclopentasiloxane, Dimethicone, Diisostearyl Malate, Octyldodecyl Stearoyl Stearate, Dehydroacetic Acid, Inositol, Lauroyl Lysine, Macuna Pruriens Seed Extract, Maltodextrin, Phospholipids, Silica, Sorbic Acid, Sorbitan Sesquioleate, Ascorbic Acid, Tocopherol, Tocopheryl Acetate, Methylparaben, Propylparaben, May Contain: Iron Oxides, Titanium Dioxide, Ultramarines.* Stain-Free. Streak-Free. Orange-Free. Odour-Free.",
+ "rating": "4.7",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "492",
+ "brand": "almay",
+ "name": "Almay Smart Shade Powder Bronzer",
+ "price": 14.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d03d4a62759d7805ff8b41caebb4cbb0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Warm up your complexion with smart shade\u2122 powder bronzer. This lightweight, smooth formula glides on easily and evenly for a natural look. Three shades of bricked color swirl together to create the perfect bronzed blend for a perfect bronzed look on any skin tone. ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "491",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Bronzers ",
+ "price": 3.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fc7ddf787472683b7f20e43bafb6f2ea_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Create a healthy looking glow all year round with e.l.f Bronzers.\u00a0 The sheer soft powders provide the perfect hue of colour. Blend all 4 colours together to achieve a blend of perfection or choose your favorite colour or colours to mix, match and blend.\u00a0 The Warm Bronzer has a warm shimmer that will bring a glow to your face. How To Use: Dust onto cheekbones, cheeks and slightly around the edges of the face for a healthy bronzed look. Ingredients: Talc, Paraffinum Liquidum (Mineral Oil), Magnesium Stearate, Hydrogenated Polyisobutene, Sodium Dehydroacetate May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (CI 15850), Blue 1 Lake (CI 42090), Red 40 Lake (CI 16035) ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "490",
+ "brand": "",
+ "name": "Earth Lab Loose Mineral Bronzer",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/df8c3964f9e20d2906eb065a877c4322_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Earth Lab Loose Mineral Bronzer sets softly on your skin \n\t\t\tfor a very natural look. It offers a sun kissed glow \n\t\t\twithout being too orange like some other bronzers. This bronze does not have any additives or fillers so you'll use less than \n\t\t\tthe size of a dime for your entire face! What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Ingredients: Mica and Iron oxidesMay Contain: ultra marine blue, Titanium dioxideBottom Label:",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "489",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Swimmables Water Resistant Bronzer",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ceed96b9e7270082e045f539ff2f89c7_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Cargo Cosmetics Swimmables Water Resistant Bronzer is a sweat-proof and weatherproof bronzer with a silky powder formula that glides over the skin for a subtle radiant glow.\nFeatures: Natural-looking colour, never orangeThe sheer powder is buildable for a customized lookSilicone-coated pigments provide better adhesion to the skin and help withstand water for extended wear L-Lysine, an amino acid found naturally in the skin, helps increase the bronzer's long-wearing and water-resistant propertiesParaben freeThis makeup is a definite hit for the sun kissing summertime! Try this and other beach ready beauty picks on our blog, The Well!Directions: Using a large fluffy brush, apply over areas of the\n face that are naturally touched by the sun; cheekbones, forehead near \nthe hair line, temples and along the jaw line.Ingredients: Talc, Octyldodecyl Stearate, Lauroyl Lysine, Dimethicone, Zinc Stearate,\n Methicone, Sodium Benzoate, Sodium Dehydroacetate, Benzethonium \nChloride, Tocopheryl Acetate. May Contain: (+/-): Mica (CI 77019), \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499),\n Bismuth Oxychloride (CI 77163), Ultramarines (CI 77007), Manganese \nViolet (CI 77742), Red 7 Lake (CI 15850). ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "488",
+ "brand": "maybelline",
+ "name": "Maybelline Fit Me Bronzer",
+ "price": 10.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d4f7d82b4858c622bb3c1cef07b9d850_ra,w158,h184_pa,w158,h184.png",
+ "description": "Why You'll Love It\n\nLightweight pigments blend easily and wear evenly\nProvides a natural, fade-proof bronzed color that leaves skin the way it was meant to be...fresh, breathing and natural\n\nFor Best Results: For soft, natural look, brush along cheekbone, sweeping upward.",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "487",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Bronze Booster Airbrushing Bronzing Veil ",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8969af04326145997e95fe8f91e2c88e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Bronze Booster Airbrushing Bronzing Veil\u00a0 is a Bronzer with Benefits! Revolutionary Italian technology \ncombines the best features of powder, baked and cream bronzers for the \nmost stunning bronze glow. Delivers a skin-perfecting finish unlike any\n other bronzer, Physicians Formula had to call it \"Deluxe\"! \n Glow Activator Technology provides Triple-Action Bronze Boosting that \nhelps to enhance and extend the life of your tan glow and improve skin\u2019s\n clarity and radiance.Directions: May be worn alone or over makeup. Lightly brush veil over face and neck \nfor a natural looking tan glow. To accentuate and contour apply more \nover cheekbones. For the most even application, be sure to tap excess \npowder from brush before applying.Ingredients: Synthetic Fluorphlogopite, HDI/Trimethylol Hexyllactone Crosspolymer, \nCetearyl Ethylhexanoate, Glycerin, Squalane, Dicalcium Phosphate, \nOctyldodecyl Stearoyl Stearate, Caprylyl Glycol, Ethylhexylglycerin, \nPolysorbate 80, 1,2-Hexanediol, PTFE, Dimethicone, Silica, \nPentaerythrityl Tetra-di-t-butyl Hydroxyhydrocinnamate, Chondrus \nCrispus, Xanthan Gum, Zinc Stearate, Lauroyl Lysine, Cimicifuga Racemosa\n Root Extract, Ascorbyl Palmitate, Inositol, Tocopherol. May Contain: \nIron Oxides, Mica, Titanium Dioxide.Hypoallergenic. Fragrance-Free. Paraben-Free. Gluten Free. Oil Free. Dermatologist approved. ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "486",
+ "brand": "covergirl",
+ "name": "CoverGirl Clean Glow Bronzer",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4e90929a9c24a51c3db3988b205f3b43_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Flaunt the coveted beach-bronze glow in one simple step. This versatile \n3-in-1 multi-shade compact lets you customize your color to create a \nradiant effect. Use just one color or all three!Features: Beautiful bronze glow in just one stepBlendable, multi-shade compactClean and natural lookHow to Apply: Dip powder brush in bronzer and tap off any excess.\nSweep bronzer on your cheeks and temples.\nUsing a lighter touch, sweep bronzer where the sun naturally hits your face, including your nose, chin, and forehead.\n ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "485",
+ "brand": "milani",
+ "name": "Milani Baked Bronzer ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1b01ce49ace4842e034664361f1310de_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Crafted on Italian terracotta tiles, these sunbaked bronzers are all about a swirly, shimmery, streak-free glow. Available in five shades, from soft gold to tantalizingly tan, it can be dusted on eyes, face, body \u2013 anywhere and everywhere you want to glow.Features:Multi-purpose powder for eyes, face & bodyEasy to use and streak-free for a perfect radiant finishAttractive, shiny gold compactMirror & brush applicator includedStreak-freeApplication: Glide brush over color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow. Ingredients: Talc, Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Polysorbate 20, Magnesium Aluminum Silicate Phenoxyethanol, Sodium Dehydroacetate, Tocopheryl Acetate, Cetearyl Ethylhexanoate, Ethylhexyl Methoxycinnamate, Simmondsia Chinensis (Jojoba) Seed Oil, Acrylamide/Sodium Acryloyldimethyl Taurate Copolymer, Isohexadecane, Polysorbate 80, Sorbitan Stearate, Zea Mays (Corn) Starch, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499). ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "484",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear 100% Natural Origin Bronzer ",
+ "price": 21.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9b404b7840f4f3a78426c166aa584216_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear 100% Natural Origin Bronzer is made of \nthe finest Italian powder which delivers a buildable natural tan glow.Two shades blend together for the most natural finish. A 100% natural origin bronzer, formulated with 15% certified organic \ningredients, including jojoba seed oil and corn starch to moisturize and\n mattify the skin. Includes mirror and natural goat hair brush. Directions: May\n be worn alone or over makeup. Lightly brush powder over face and neck \nfor a natural-looking tan glow. For the most even application, be sure \nto tap excess powder from brush before applying. For best results on dry\n to very dry skin, apply moisturizer prior to using powder.Ingredients: MICA, SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL*, MAGNESIUM STEARATE, ZEA \nMAYS (CORN) STARCH*, KAOLIN, CALCIUM CARBONATE, ZINC STEARATE, OLEA \nEUROPAEA (OLIVE) FRUIT OIL*, GLYCERIN, GLYCINE SOJA (SOYBEAN) OIL*, \nGLYCERYL CAPRYLATE, CINNAMIC ACID, SODIUM LEVULINATE, TOCOPHEROL, WATER.\n MAY CONTAIN: IRON OXIDES, TITANIUM DIOXIDE, ULTRAMARINES. *PRODUCED \nFROM ORGANIC FARMING.100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100%\n Free of Parabens. 100% Free of GMO's. 100% Free of Synthetic Colors. \n100% Free of Synthetic Fragrances. 100% Cruelty Free.",
+ "rating": "2.5",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "483",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Translucent Bronzing Tint",
+ "price": 45.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/08fe5abc37bb3d483909774d43c438e4_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Dr. Hauschka Translucent Bronzing Tint is ideal for use alone or with all \nDr.Hauschka moisturizers. This liquid mineral tint offers a sun-kissed \nglow while gently blending and softening the appearance of blemishes and\n imperfections. Skin looks healthy, fresh, even-toned and radiant.Features: A\n soothing combination of olive oil, beeswax and mineral pigments nourish\n and bring color to the skin for a sheer, sun-kissed appearanceAnthyllis and witch hazel tone and firm skinCan be blended with body moisturizers and sunscreens to add or even colorUsed as directed, Translucent Bronzing Tint lasts approximately 4-5 monthsFormerly known as Translucent Bronze ConcentrateIngredients: Water (Aqua), Olea Europaea (Olive) Fruit Oil, Alcohol, Anthyllis \nVulneraria Extract, Hamamelis Virginiana (Witch Hazel) Bark/Leaf \nExtract, Lysolecithin, Beeswax (Cera Alba), Fragrance (Parfum), Citral*,\n Linalool*, Farnesol*, Benzyl Benzoate*, Limonene*, Citronellol*, \nGeraniol*, Benzyl Salicylate*, Coumarin*, Eugenol*, Cetearyl Alcohol, \nAlgin, Silica, Arachis Hypogaea (Peanut) Oil, Chlorophyllin-Copper \nComplex (CI 75810), Iron Oxides (CI 77491, CI 77492, CI 77499)*Component of natural essential oilsDr. Hauschka Skin Care has been 100% natural for over 45 years and is \ncertified natural by NATRUE, a non-profit, international association \nfounded by the pioneers of natural and organic cosmetics. NATRUE \ncertification ensures that a product has met the strongest criteria \navailable for natural and organic ingredients in cosmetics and is free \nof synthetic preservatives, fragrances, dyes and petroleum derived \nsynthetics. ",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "481",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose Mineral Luminous Bronzer",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/01195de6de1092125f703c5662d99af9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Impart a healthy glow, with a Pure Anada luminous mineral bronzer!Shade Range:Ingredients: Mica,\u00a0 Iron Oxides, Ultramarines, May contain: Titanium Dioxide",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "480",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics HD Bronzer",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ebf3bbabc1ef4fddc2a8675e2e8be0e1_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Created for filming in high definition this Cargo Cosmetics HD Bronzer provides flawless and \nnatural looking results. This smooth and silky matte bronzer gives \nradiance to the skin without the shimmer. An optical blurring effect \nsmoothes the look of the skin texture, minimizing the look of pores and \nfine lines. Never looks orange or streaky.\u00a0\n\nFeatures:\nPhotochromatic pigments adjust with the lighting so that you have a natural looking make-up no matter what the settingUltra-fine micronized minerals fill the look of fine lines and reduce the appearance of imperfectionsHow to Use: Using\n a large fluff brush apply over the areas of the face that are naturally\n touched by the sun like the apples of the cheeks, the upper cheekbones,\n forehead and along the jaw lineFor natural looking results without any streaking use a circular buffing actionIngredients: Talc, Mica, Nylon-12, Isopropyl Isostearate, Zinc Stearate, Boron Nitride, Caprylyl Glycol. May Contain (+/-):\n Mica (CI 77019), Titanium Dioxide (CI 77891), Iron Oxides ( CI 77491, \nCI 77492), Manganese Violet (CI 77742), D&C Black 2 (CI 77266)\n\n",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "479",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Bronze Booster Glow-Boosting BB Cream",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7a965c3cfc7955d4e156a88f87950168_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Bronze Booster Glow-Boosting BB Cream combines the best features of a BB Cream with the glowing finish of a bronzer. Weightless BB Cream formula delivers makeup + skincare performance, instantly absorbing into skin, while leaving behind a smooth, even and natural sunkissed glow.Hypoallergenic. Paraben-Free. Gluten Free. Oil Free. Fragrance Free. Non-Comedogenic. Dermatologist approved. ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "478",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Bronzer",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5bff7471d5030f2e808476e2ef735b82_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Create a healthy looking glow all year round! The sheer soft powders \nprovide the perfect hue of color. Blend all 4 colors together to \nachieve a blend of perfection or choose your favorite color or colors to\n mix, match and blend.Golden Bronzer: An illuminating shimmer that is subtle and radiant. Ideal for summer or year-round.\n\n\t\t\t\t\tIngredients: Talc, Paraffinum Liquidum (Mineral Oil), Magnesium Stearate, \nHydrogenated Polyisobutene, Sodium Dehydroacetate\nMay Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, \nCI 77492, CI 77499), Red 7 Lake (CI 15850), Blue 1 Lake (CI 42090), Red \n40 Lake (CI 16035)\n",
+ "rating": "4.4",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "477",
+ "brand": "maybelline",
+ "name": "Maybelline Facestudio Master Contour Kit",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4f731de249cbd4cb819ea7f5f4cfb5c3_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Facestudio Master Contour Kit is the ultimate on the go all-in-one palette, with contouring brush included.\u00a0 Define and highlight in a New York minute with this effortless 3-step face contouring kit. \u00a0This easy-to-use 3-step face contouring kit features a bronzer, blush and highlighter.",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "476",
+ "brand": "nyx",
+ "name": "NYX Mosaic Powder Blush Spice",
+ "price": 10.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/24df710e2cd9c9695cebec8732f47356_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Mosaic Powder Blush is a medley of colors that creates a flush of color and dazzling glow for every skin tone. Features:Five shades in one palette, this blush is a brown-pinkWorks as blush and highlighterFlattering on every skin toneUse to highlight, enhance & brighten Each mosaic of color blends beautifully with magical results",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "475",
+ "brand": "",
+ "name": "Fake Bake Blush Legal Sunburn",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a20f3622d08d7b87492ca0af0319bf73_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Give your cheeks a sun kissed glow with Fake Bake Blush in Legal Sunburn. Paraben Free. Brush the powder blush over your cheeks, nose, and brow arches, and instantly wake up a tired or pale face.\nThe naturally derived red and pink hues give you a fresh, sexy color-minus the skin damage.Ingredients: Mica, Talc, Nylon-12, Ethylhexyl Palmitate, Parafinum Liquidum, Petrolatum, Kaolin, Magnesium Stearate, Tocopheryl Acetate, Caprylic/Capric, Triglyceride, Silica, Phenoxyethanol, Proctone Olamine, [may contain ( +/-): C!75470, CI77891, CI77499, CI45410:2, CI77492, CI19140:1]",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "474",
+ "brand": "nyx",
+ "name": "NYX Ombre Blush",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e91bc936934a3e027f3e8e38f819c15a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "NYX Ombre Blush is a new gradient blush inspired by the ombre trend.\u00a0 This must-have formula features two silky colours blended into one perfectly coordinated shade combo.Featured Colours:Blue Toned Pink & Bright Yellow Toned Pink",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "473",
+ "brand": "covergirl",
+ "name": "CoverGirl truBLEND Blush in Light Rose",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0b8787d62ced45700c0693b869645542_ra,w158,h184_pa,w158,h184.png",
+ "description": "Never stop blushing with CoverGirl New truBLEND blush! Features:New marbled baked formulaUltra-blendable and delivers a beautiful, multi-toned result Designed to fit light, medium and deep skin tones alikeHow to Apply: Step 1: Lightly dip brush into blush, then tap or blow off excess powder. Step 2: Next, sweep the blush over and under your cheekbone to create a beautiful, rosy looking flush. ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "472",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics HD Picture Perfect Blush Highlighter",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c976f8b3aabe8368fdc673e556159a13_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Cargo Cosmetics HD Picture Perfect Blush Highlighter was created for high-definition filming to provide picture-perfect \nresults while looking completely natural.The Cargo HD \nBlush/Highlighter is a universally flattering shade of blush with a \nvelvety formula that adjusts with ambient lighting, providing a natural \nfinish day or night..\u00a0 \nFeatures:\nPhotochromatic pigments adjust with the lighting so that you have a natural looking make-up no matter what the settingUltra-fine micronized minerals fill the look of fine lines and reduce the appearance of imperfectionsShade Range: Application: For a natural application of color apply to the apples of the cheeks and long the cheekbones using a large fluffy blush brushTo highlight and enhance the cheekbones use a small blush brush or sculpting brush along the upper edges of the cheekbonesIngredients: Talc, Nylon-12, Octyldodecyl Stearoyl Stearate, Silica, Zinc Stearate, Caprylyl Glycol, Silver Oxide May Contain (+/-): Mica (CI 77019), Titanium Dioxide (CI 77891), Manganese Violet (CI 77742), Iron Oxides (CI 77491), Ultramarines (CI 77007).\n",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "471",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Contour Palette",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4117cc2bd124776298f0671de94f07bf_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This Cargo Cosmetics Contour Palette is a \u200bsimple and easy system that can help you contour \nand highlight flawlessly.\nThe textures, colours and finishes were specially designed to be 'fool \nproof'. With ease of application top of mind and the embossed shades \ngive step by step directions. It's the closest thing to having a make-up \nartist in your make-up kit!\n\u00a0\nFeatures:\n Includes coordinated shades with a highlighter, blush and contour color, each embossed with their application stepThe embossed shades give step-by-step directions: the closest thing to having a make-up artist in your make-up kit!Textures, colors and finishes were specially designed to be 'fool-proof', with ease of application being top of mindSold in a stunning brushed silver compact with mirrorIngredients: Talc, Octyldodecyl Stearate, Octyldodecyl Stearoyl Stearate, Zinc \nStearate, Boron Nitride, Tocopheryl Acetate, \nPhenoxyethanol, Silica, Caprylyl Glycol, Carthamus Tinctorius \n(Safflower) Seed Oil, Sorbic Acid (A Preservative), Aloe Vera (Aloe \nBarbadensis) Extract. May Contain (+/-): Mica (CI 77019), \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491/CI 77492/CI 77499), \nRed 6 Lake (CI 15850), Red 7 Lake (CI 15850:1), Red 27 Lake (CI \n45410:2), Bismuth Oxychloride (CI 77163), Manganese Violet (CI 77742), \nUltramarines (CI 77007), Tin Oxide (CI 77861).",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "470",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Pro-Contour Palette in Medium ",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7a31b075cf9c0ae4e6eba9ca61c587a7_ra,w158,h184_pa,w158,h184.png",
+ "description": "The L'Oreal Paris Infallible Pro-Contour Palette makes contouring easy. Use the pro-contour brush to enhance and define features for a professional contoured look. Perfectly coordinated highlighting and contouring shades blend easily after applying for a flawless contoured look. Features:Contours in 30 secondsDefinesHighlightsBrush includedHow to Use: Step 1: Use the lighter shade to highlight and create extra dimensions. Step 2: Accentuate contours with the darker shade. Step 3: Blend and buff for a professionally defined look. ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "469",
+ "brand": "",
+ "name": "Saint Cosmetics Blush",
+ "price": 28.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ed6e230c6394a3c6d1904fcd02a4ae3a_ra,w158,h184_pa,w158,h184.png",
+ "description": "Create naturally flushed looking cheeks with Saint Cosmetics' blush formulations. Designed to be worn alone or layered for more depth.Features: An ultra-blendable blush with a long-lasting formulaSilky smooth finishCreates a multi-dimensional lookMade in Canada from naturally derived ingredientsChemical Free, Vegan, Gluten Free",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "468",
+ "brand": "maybelline",
+ "name": "Maybelline Face Studio Master Hi-Light Light Booster Blush",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4621032a92cb428ad640c105b944b39c_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Face Studio Master Hi-Light Light Boosting blush formula has an expert \nbalance of shade + shimmer illuminator for natural glow. Skin goes \nsoft-lit with zero glitz.\n\n\t\tFor Best Results: Brush over all shades in palette and gently sweep over \ncheekbones, brow bones, and temples, or anywhere light naturally touches\n the face.\n\n\t\t\n\t\n\n ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "467",
+ "brand": "sante",
+ "name": "Sante Rouge",
+ "price": 23.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b5dc625e10b6324d1d74a31641f42fa3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Sante Rouge is a soft powder blush with silky-smooth texture. It's formulated with organic jojoba and chamomile for natural freshness.\u00a0 Colours:Ingredients: Talc, Magnesium Stearate, Mica, Lauryl Lactate, Lauroyl Lysine, Olea Europaea (Olive) Fruit Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Chamomilla Recutita (Matricaria) Extract*, Parfum (Essential Oils), Bisabolol, Tocopheryl Acetate, [+/- CI 77891, CI 77491, CI 77492, CI 75470, CI 77007, CI 77499] * organically grown",
+ "rating": "3.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "465",
+ "brand": "covergirl",
+ "name": "CoverGirl truBLEND Blush in Medium Rose",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d8969d390fd94976aee71df780f512f2_ra,w158,h184_pa,w158,h184.png",
+ "description": "Never stop blushing with CoverGirl's New truBLEND blush! Features:New marbled baked formulaUltra-blendable and delivers a beautiful, multi-toned result Designed to fit light, medium and deep skin tones alikeHow to Apply: Step 1: Lightly dip brush into blush, then tap or blow off excess powder. Step 2: Next, sweep the blush over and under your cheekbone to create a beautiful, rosy looking flush. ",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "464",
+ "brand": "annabelle",
+ "name": "Annabelle Blush ",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0af800d01a052da93b9145fb59f849ba_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Annabelle Blush has a weightless and velvety texture that makes it easy to apply and\n perfectly blendable. Perfect to get a healthy and youthful look! ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "463",
+ "brand": "nyx",
+ "name": "NYX High Definition Blush",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e4842a84c9c0522ba29f1a856d841b1c_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This NYX High Definition Blush is a high definition lightweight blush that blends evenly.\u00a0 This vibrant and silky blush delivers a beautiful flush of colour and is paraben free. ",
+ "rating": "4.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "462",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Nude Wear Touch of Glow Palette in Light",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/490e2f5a880ab9d39c44876a0ea89f44_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\nPhysicians Formula Nude Wear Touch of Glow Palette is an all in 1 palette can be used as an all-over illuminating powder, as a bronzer, as a blush or as a highlighter. Features: Micro-fine iridescent Mother of Pearl pigments bathe skin in the perfect balance of transparent and pearlescent shimmerHypoallergenicFragrance, Gluten & Paraben freeNon-comedogenicDermatologist approvedDirections: May be worn alone or over makeup.\u00a0 Blend all shades together and apply evenly over face and neck to even out skin tone.\u00a0 Apply lightest shade to highlight.\u00a0 Powder shade to even out skin tone, darkest shade as bronzer and blush shade to accentuate cheeks.Ingredients: Mica, Ethylhexyl Palmitate, Polybutene, Water, Kaolin, Diisostearyl Malate, Ethylhexyl Isononanoate, Mother of Pearl Powder, Nylon-12, Octyldodecyl Stearoyl Stearate, Calcium Aluminum Borosilicate, Boron Nitride, Lactic Acid, Magnesium Stearate, Synthetic Fluorphlogopite, Synthetic Wax, Tetrahexyldecyl Ascorbate, Tin Oxide, Tropaeolum Majus Flower/Stem/Leaf Extract, Ethylhexylglycerin, Phenoxyethanol. May Contain: Titanium Dioxide, Iron Oxides, Red 30, Red 40 Lake.",
+ "rating": "3.8",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "461",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Rouge Powder ",
+ "price": 31.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1bc9b62be0eb02ff7d07c2619dee18d1_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Dr. Hauschka Rouge Powder is made with real silk, rose\u00a0blossoms and jojoba oil to nurture the skin while contouring\u00a0and adding a healthy hue to the cheeks.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Organic",
+ "Natural"
+ ]
+ },
+ {
+ "id": "460",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Swimmables Water Resistant Blush",
+ "price": 29.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0909a58a190eceee8bd042d9fc80b047_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Cargo Cosmetics Swimmables Water Resistant Blush is a sweatproof, weatherproof blush has been tested by the make-up \nartists for Dancing With The Stars on the latest live tour.It's longwearing formula \nwithstands moisture so you don\u2019t have to fuss with re-application. \nSpecially formulated with a unique silicone-coated powder that provides \nbetter adhesion to the skin and withstands water.\u00a0 \n\n\nFeatures:\nSilicone coated pigments provide better adhesion to skin and withstand waterL-lysine , an amino acid found naturally in the skin, increases the \nlong wearing and water resistant properties because of its natural \naffinity to skinShade Range: Ingredients: Talc, Octyldodecyl Stearate, Lauroyl Lysine, Dimethicone, Zinc Stearate,\n Methicone, Sodium Benzoate, Sodium Dehydroacetate, Benzethonium \nChloride, Tocopheryl Acetate. May Contain: (+/-): Mica (CI 77019), \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499),\n Bismuth Oxychloride (CI 77163), Ultramarines (CI 77007), Manganese \nViolet (CI 77742), Red 7 Lake (CI 15850:1), Red 30 Lake (CI 73360), Red \n27 Lake (CI 45410), Yellow 5 Lake (CI 19140).",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "459",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Blush",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f1c6dea6717aeaa8796a5f62992d8979_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Mineral Fusion Blush features luxuriously silky, triple-milled minerals that offer a natural flush of color to brighten the complexion and create a healthy, youthful glow. Includes a powerful blend of Pomegranate, White Tea, Red Tea and Sea Kelp, plus Vitamins C and E that defend skin against free radical damage for a healthy radiance. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.Ingredients: Mica, Zinc Stearate, Octyldodecyl Stearoyl Stearate, Titanium Dioxide (CI 77891), Caprylic/Capric Triglyceride, Tocopheryl Acetate (Vitamin E), Ascorbyl Palmitate (Vitamin C), Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Vitis Vinifera (Grape) Seed Extract, Laminaria Ochroleuca (Sea Kelp) Extract, Aloe Barbadensis (Aloe Vera) Extract, Lauroyl Lysine, Sambucus Nigra Fruit (Elderberry), Phenoxyethanol. MAY CONTAIN (+/-): Iron Oxides (CI 77491, 77492, 77499), Carmine (CI 75470), Ultramarine (CI 77007), Manganese Violet (CI 77742). ",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "458",
+ "brand": "covergirl",
+ "name": "CoverGirl Clean Glow Blush ",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bb0b0c2057205b8e39823c5c7fc6af45_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Complete your Clean\u00ae look with a flush of lightweight, blendable color. \nThis versatile 3-in-1 multi-shade compact lets you customize your color \nto create a radiant effect. Use just one color or all three!Features: 3-in-1 multi-shade compactLightweight, blendable flush of colorClean and natural lookHow to Apply: Begin with the contour, or darkest, shade in your palette and apply to the hollow space below your cheekbones.\nApply the medium shade to the apples of your cheeks and sweep upwards toward the hairline.\nFor a youthful glow, highlight the tops of your cheeks with the lightest shade.\n ",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "457",
+ "brand": "covergirl",
+ "name": "CoverGirl Clean Glow Blush",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/48492123aba0c6d096945d57a070361d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Complete your Clean\u00ae look with a flush of lightweight, blendable color. \nThis versatile 3-in-1 multi-shade compact lets you customize your color \nto create a radiant effect. Use just one color or all three!Features: 3-in-1 multi-shade compactLightweight, blendable flush of colorClean and natural lookHow to Apply: Begin with the contour, or darkest, shade in your palette and apply to the hollow space below your cheekbones.\nApply the medium shade to the apples of your cheeks and sweep upwards toward the hairline.\nFor a youthful glow, highlight the tops of your cheeks with the lightest shade.\n ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "456",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Nude Wear Glowing Nude Blush",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8df6f68abe9f6bf47546254706f54e37_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This natural, luxurious blush is so lightweight you'll never even feel it. Sheer coverage with a hint of luminosity delivers a lit-from-within blushing glow.Airy formula boosts skins natural luminosity, and allows skin\u2019s natural radiance and color to shine through. A perfect blend of blush and complexion boosting tones brighten and enhance skin tone while adding a touch of naturally radiant color.Hypoallergenic. Fragrance-Free. Gluten Free. Paraben-Free. Non-Comedogenic. Dermatologist approved. ",
+ "rating": "4.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "455",
+ "brand": "covergirl",
+ "name": "CoverGirl Cheekers Blush ",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d095a226cf2698dba1eba4c6e2ce9896_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Blush's basic rules\u2014it has to be easy, and it has to look natural. \nThat's Cheekers. Each portable mini-compact gives you a sheer blush that\n goes on to stay true, stay for hours. It's the way to glow!Features: Stays for hoursEasy and naturalDermatologically-tested",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "454",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Blush Palette Dark",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/73da123512d4ca1f2aebf5149e065d86_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This beautiful blush palette holds 4 gorgeous shades to mix and match \nthroughout the year for a custom blended color. Great for contouring, \nshading, sculpting, and highlighting, these silky smooth blushes create a\n beautiful pigmented glow. With a mixture of complimentary matte and \nshimmer finishes, you can achieve a professional look every time.Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zince Stearate, Dimethicone, Tocopheryl Acetate (Ve).\nMAY CONTAIN: Titanium Dioxide (CI 77891), Iron OXides (CI 77491, \nCI 77492, CI 77499), Red 7 Lake (CI 15850), Ultramarines (CI 77007), Red\n 6 Lake (CI 15850), Red 28 Lake (CI 45410). ",
+ "rating": "",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "453",
+ "brand": "revlon",
+ "name": "Revlon Powder Blush ",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/dd6ee943412a416ecfe9e4a1b2bed107_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon Powder Blush is an ultra-soft, silky powder blush adds a natural flush of color to your \ncheeks and looks freshly applied all day. Enhance your complexion \ninstantly.Features:Provides a natural flush of colour with a soft satin finishEnhances cheekbones instantlyEasy to blend, buildable colourAvailable in 9 amazing shades ",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "452",
+ "brand": "maybelline",
+ "name": "Maybelline Face Studio Master Hi-Light Light Booster Blush ",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e8c59b78ebeaec5c4b6aeba49a9ff0f6_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Face Studio Master Hi-Light Light Boosting blush formula has an expert \nbalance of shade + shimmer illuminator for natural glow. Skin goes \nsoft-lit with zero glitz.\n\n\t\tFor Best Results: Brush over all shades in palette and gently sweep over \ncheekbones, brow bones, and temples, or anywhere light naturally touches\n the face.\n\n\t\t\n\t\n\n ",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "451",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Nude Wear Glowing Nude Blush ",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f315b0da1a165666f67a8755c6f105ec_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This natural, luxurious blush is so lightweight you'll never even feel \nit. Sheer coverage with a hint of luminosity delivers a lit-from-within \nblushing glow.Airy formula boosts skins natural luminosity, and allows skin\u2019s natural radiance and color to shine through. A\n perfect blend of blush and complexion boosting tones brighten and \nenhance skin tone while adding a touch of naturally radiant color.Hypoallergenic. Fragrance-Free. Gluten Free. Paraben-Free. Non-Comedogenic. Dermatologist approved. ",
+ "rating": "4.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "450",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Contouring Blush & Bronzing Powder",
+ "price": 3.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/adf90395cfffa4f3c2298b9f53622c81_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Create a healthy and natural glow all year long with the e.l.f Contouring Blush & Bronzing Powder. The Blush highlights the cheeks to add a flush of colour, while the Bronzer accents and contours cheekbones for beautiful definition. This convenient compact has just what you need to achieve a gorgeous glow anytime, anywhere. How To Use: Brush on the \"bronze\" to the hollow of the cheeks for definition and dust around the face line to create a healthy glow. Use the \"blush\" on the apple of the cheeks to create a subtle healthy glow. Ingredients: Talc, Mica, Magnesium Stearate, Paraffinum Liquidum (Mineral Oil), Polyisobutene, Ethylhexyl Methoxycinnamate, Triacontanyl PVP, Sodium Dehydroacetate May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891), Red 40 Lake (CI 16035), Ultramarines (CI 77007) ",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "449",
+ "brand": "covergirl",
+ "name": "CoverGirl Cheekers Blush",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1d1668b02148a8823eb19c1ce4157a4e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Blush's basic rules\u2014it has to be easy, and it has to look natural. \nThat's Cheekers. Each portable mini-compact gives you a sheer blush that\n goes on to stay true, stay for hours. It's the way to glow!Features: Stays for hoursEasy and naturalDermatologically-tested",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "448",
+ "brand": "almay",
+ "name": "Almay Smart Shade Powder Blush",
+ "price": 14.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f939707421649b0ceab58c0534ec44de_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Brighten up your complexion with smart shade\u2122 powder blush. This lightweight, \nsmooth formula glides on easily and evenly for a look of natural \nradiance. Three shades of bricked color swirl together to create the \nperfect blush shade for your skin.Application Tips: Swirl the brush across the top of the palette. Sweep across the apples \nof your cheeks. For an all-over glow, apply subtle strokes across the \ncontours of your face.\n ",
+ "rating": "4.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "447",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris True Match",
+ "price": 16.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e4e4827631b874f898d41a90ab3de5a6_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "True Match Blush flawlessly complements your skin's texture and tone and coordinates perfectly with True Match Makeup, Powder, and Concealer.Opti-Match technology creates uniquely true-to-life shades that flawlessly complement your skintone and undertone to perfection, leaving you with the most natural flush of colour imaginable.A unique Opti-BlendTM formula provides a skin-true texture that blends smoothly, never looks chalky or cakey.\u00a0 Stays fresh and natural looking hour after hour.Oil-free, vitamin-rich, and non-comedogenic.",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "446",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Happy Booster Glow & Mood Boosting Blush",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cd18303ddee33a8e03e0ad53f51e38f1_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Happy Booster\u2122 Glow & Mood Boosting Blush ultra-soft and blendable blushing powder features a fresh and vibrant mix of blushing tones infused with a pop of colour to create a healthy glow. Multi-reflective pearls provide a soft iridescence to highlight contour and add radiance to cheeks. Infused with our Happy Boost Blend, featuring Happy Skin and Euphoryl, natural plant extracts which have been shown to promote a feeling of happiness by mimicking the effect of Endorphins and helping protect the skin from environmental stress. The sweet scent of Violet provides a feeling of joy each time you apply!Directions for Use: Using a soft powder brush, sweep over entire palette to evenly blend colors. Tap excess powder from brush before applying. Brush over cheeks to define and contour or apply right below cheekbones for a more defined dramatic look.Ingredients: Talc. Zea Mays (Corn) Starch. Dimethicone. Octyldodecyl Stearoyl Stearate. Zinc Stearate. Pentaerythrityl Tetraisostearate. Astrocaryum Murumuru Seed Butter. Helianthus Annuus (Sunflower) Seed Oil. Lecithin. Phytosteryl Canolate. Plukenetia Volubilis Seed Oil. Rhodiola Rosea Root Extract. Rosmarinus Officinalis (Rosemary) Leaf Extract. Theobroma Grandiflorum Seed Butter. Schinus Terebinthifolius Seed Extract. Palm Alcohol. Phenoxyethanol. Potassium Sorbate. Fragrance. May Contain: Carmine. Iron Oxides. Manganese Violet. Mica. Red 6. Red 7 Lake. Red 28 Lake. Red 30 Lake. Titanium Dioxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Non-comedogenic. Paraben-free. Dermatologist approved.\u200b",
+ "rating": "4.7",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "445",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose Mineral Luminous Blush",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/187a238fb2afe03f3f7d0133305d845a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Impart a healthy glow, with a Pure Anada luminous mineral blush!Learn how to make your own custom lip balm using your favourite shade with our easy DIY Lip Balm recipe on our blog, The Well!Shade Range: Ingredients: Mica,\u00a0 Iron Oxides, Ultramarines, May contain: Titanium Dioxide",
+ "rating": "4.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "444",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Airbrushing Blush",
+ "price": 15.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e096eb4264561b76a90a9a2bfb6cfca2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Mineral Wear Airbrushing Blush is an ultra-fine mineral blush delivers a radiant pop of color with a flawless airbrushed finish.Directions: Buff on blush over cheekbones to define and contour or apply right below\n cheekbones for amore defined and dramatic look. For the most even \napplication, be sure to tap excess powder from brush before applying.Ingredients: Mica, Boron Nitride, Zinc Stearate, Lauroyl Lysine, Tricaprylin, \nMagnesium Silicate, Camellia Oleifera Leaf Extract, Chamomilla Recutita \n(Matricaria) Flower Extract, Ginkgo Biloba Leaf Extract, Panax Ginseng \nRoot Extract, Carthamus Tinctorius (Safflower) Seed Oil, Tocopheryl \nAcetate, Retinyl Palmitate, Ascorbyl Palmitate, Chlorphenesin, Potassium\n Sorbate, Sodium Dehydroacetate, May Contain: Iron Oxides, Titanium \nDioxide, Zinc OxideHypoallergenic. Fragrance-Free. Paraben-Free. Gluten Free. Dermatologist approved. Non-Comedogenic.",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "443",
+ "brand": "covergirl",
+ "name": "CoverGirl Instant Cheekbones Contouring Blush",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5361038d5de79bedaca6c64b48271161_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Want great bone structure? Instant Cheekbones Contouring Blush lets you \ncreate them instantly and easily. Each compact contains three expertly \ncoordinated shades that add natural-looking contour, so you can look \nlike you were born with great cheekbones, anytime!Features:\u200b3 Complementary skin-flushed shades contour your cheekbonesLightweightDermatologically testedBlendable",
+ "rating": "3.3",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "442",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Happy Booster Glow & Mood Boosting Powder",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f79082caeb5359d5927f1a4a0aecf3b8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Happy Booster\u2122 Glow & Mood Boosting Powder is an ultra-smooth, perfecting powder in a complementary palette of colour. It blends together to even out skin tone with a flawless radiance. Vibrant pink heart gives cheeks a healthy pop of colour. Infused with our Happy Boost Blend, featuring Happy Skin and Euphoryl, natural plant extracts which have been shown to promote a feeling of happiness by mimicking the effect of Endorphins and helping protect the skin from environmental stress. The sweet scent of Violet provides a feeling of joy each time you apply.Directions for Use: May be worn alone or over makeup. Blend all shades together and brush on powder evenly over face and neck to even out skin tone with a happy glow. For an extra pop of color, sweep brush over the pink heart and apply on cheeks. For best results on dry to very dry skin, apply moisturizer prior to using powder.Ingredients: Talc. Zea Mays (Corn) Starch. Dimethicone. Octyldodecyl Stearoyl Stearate. Pentaerythrityl Tetraisostearate. Astrocaryum Murumuru Seed Butter. Helianthus Annuus (Sunflower) Seed Oil. Lecithin. Phytosteryl Canolate. Plukenetia Volubilis Seed Oil. Rhodiola Rosea Root Extract. Rosmarinus Officinalis (Rosemary) Leaf Extract. Theobroma Grandiflorum Seed Butter. Schinus Terebinthifolius Seed Extract. Palm Alcohol. Phenoxyethanol. Potassium Sorbate. Fragrance. May Contain: Carmine. Iron Oxides. Manganese Violet. Mica. Red 6. Red 7 Lake. Red 28 Lake. Red 30 Lake. Titanium Dioxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Paraben free. Dermatologist approved. Non-Comedogenic.",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "441",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Blush Palette Light",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9afdb02a47f0a04fe1f7aa78c5a49f63_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This beautiful blush palette holds 4 gorgeous shades to mix and match \nthroughout the year for a custom blended color. Great for contouring, \nshading, sculpting, and highlighting, these silky smooth blushes create a\n beautiful pigmented glow. With a mixture of complimentary matte and \nshimmer finishes, you can achieve a professional look every time.Ingredients: Mica, Talc, Ethylhexyl Palmitate, Silica, Nylon-12, PTFE, Zince Stearate, Dimethicone, Tocopheryl Acetate (Ve).\nMAY CONTAIN: Titanium Dioxide (CI 77891), Iron OXides (CI 77491, \nCI 77492, CI 77499), Red 7 Lake (CI 15850), Ultramarines (CI 77007), Red\n 6 Lake (CI 15850), Red 28 Lake (CI 45410). ",
+ "rating": "4.7",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "440",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose Mineral Velvet Matte Blush ",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/47169d3a86232fa7eec3a0c43ed1ad06_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada Loose Mineral Velvet Matte Blush gives your cheeks a soft sweep of subtle color. Comes packaged in a 3 g sifter jar. Shade Range: Ingredients: Mica, Calcium Carbonate, Iron Oxides, Ultramarines, May contain: Titanium Dioxide",
+ "rating": "4.5",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "439",
+ "brand": "maybelline",
+ "name": "Maybelline Fit Me Blush",
+ "price": 10.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/53d5f825461117c0d96946e1029510b0_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Fit Me Blush has lightweight pigments blend easily and wear evenly. It provides a natural, fade-proof cheek color that leaves skin the way it was meant to be...fresh, breathing, and natural.\n\nFor Best Results: For soft, natural look, brush along cheekbone, sweeping upward.",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "438",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear Bronzer & Blush",
+ "price": 21.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/57664a83a5b141160e76968fe51b51a7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear 100% Natural Origin Bronzer and Blush is an easy-to-use 2-in-1 bronzer and blush that allows shades to be used individually or layered for the ultimate sunkissed, natural-looking finish.Bronzer adds warmth and depth for a naturally tan glow while blush naturally enhances and accentuates cheeks for a radiant glow.Directions for Use: May be worn alone or over makeup. Lightly brush bronzer over face and neck for a natural-looking tan glow. Sweep blush over cheekbones to define and contour or apply right below cheekbones for a more defined and dramatic look. Layer blush on top of bronzer for the ultimate effect. For the most even application, be sure to tap excess powder from brush before applying. For best results on dry to very dry skin, apply moisturizer prior to using powder.Ingredients: Mica, Zea Mays (Corn Starch)*, Octyldodecyl Stearoyl Stearate, Kaolin, Olea Europaea (Olive) Fruit Oil*, Simmondsia Chinensis (Jojoba) Seed Oil*, Glyceryl Caprylate, Glycine Soja (Soybean) Oil*, Vitis Vinifera (Grape) Seed Oil*, Oryza Sativa (Rice) Hull Powder, Bambusa Arundinacea Stem Powder, Cinnamic Acid, Tocopheryl Acetate. May Contain: Titanium Dioxide, Iron Oxides, Manganese Violet, Ultramarines.100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100% Free of Parabens. 100% Free of GMO's. 100% Free of Synthetic Colors. 100% Free of Synthetic Fragrances. 100% Cruelty Free.",
+ "rating": "4.9",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "437",
+ "brand": "pure anada",
+ "name": "Pure Anada Pressed Mineral Cheek Colour Pan",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/43071cd57ecffc55c1e0bff29278c3a7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada is pleased to bring you a lovely selection of convenient pressed mineral colors!\u00a0\u00a0\u00a0 You\u2019ll love the silky texture and longevity of these highly wearable cheek colors.Mineral pigments and organic Jojoba are pressed together to create a natural makeup product. You can have confidence that you are making a beautiful, healthy choice!Pure Anada pressed colors are designed to be inserted into customizable magnetic compacts like the Pure Ananda Reusable Magnetic Compact. Design your own palette! \u00a0Shades:Ingredients: Mica (CI 77019), Iron Oxides (CI 77492, CI 77499) Calcium Carbonate, Caprylic Triglyceride *Simmondsia Chinensis (Jojoba seed oil) Ultramarines (CI 77007), Titanium Dioxide (CI 77891) * Certified Organic IngredientVegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",
+ "rating": "4.4",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Non-GMO",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "436",
+ "brand": "milani",
+ "name": "Milani Rose Powder Blush",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4c9db52b5d1cf54fe74fc60b00ffdaa1_ra,w158,h184_pa,w158,h184.png",
+ "description": "Now this is a blush that deserves to be seen! Gorgeous in the compact, even prettier on cheeks, this petal soft, natural-finish powder shapes, contours and highlights. Streaks? Never. Easy to use? Always. In ultra-flattering shades that you just can\u2019t live without.Features:Real rose petals are crushed and micro-milled into the powder to naturally enhance every skin toneEasy to use, streak-free, shapes & contoursSuitable for all skin typesMade in ItalyStreak-freeApplication: Glide a brush through the color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow. Ingredients:\u00a0 Talc, Synthetic Wax, Aluminum Starch, Octenylsuccinate, Hydoxylated Lanolin, Isopropyl Lanoate, Petrolatum, Cyclomethicone,, Lanolin Alcohol, Cetyl Actate, Acetylated Lanolin Alcohol, Methylparabne, Proprylparaben. +/- May Contain: Synthetic Flourphlogopite, Mica, Tin Oxide, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Yellow 5 (CI 19140), Red 7 (CI 15850), Red 28 (CI 45410), Red 36 (CI 12085), Blue 1 (CI 42090), Carmine (CI 75470), Ultamarines (CI 77007), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742). ",
+ "rating": "4.6",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "435",
+ "brand": "milani",
+ "name": "Milani Baked Blush",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4ae353dcae46e9b97c4915566fc9190a_ra,w158,h184_pa,w158,h184.png",
+ "description": "This silky blush with benefits can be used so many ways. It shapes, it contours, it highlights. Sunbaked on Italian terracotta tiles, it\u2019s buildable from sheer to vibrant. Yes, it adds a cheeky pop of colour to your complexion. Radiance and warmth, too.Features:Multi-purpose: shapes, contours and highlights cheeksEasy to use for a perfect radiant finishMirror & brush applicator includedStreak-freeBuildable from sheer to vibrantApplication: Glide brush through color and lightly tap off excess powder. Lightly apply to cheeks, forehead, chin and/or nose and blend well for a soft glow.Ingredients: Talc, Mica, Glyceryl Ethylhexanoate/Stearate/Adipate, Dimethicone, Octyldodecyl Stearoyl Stearate, Isopropyl Myristate, Polyacrylamide, C13-14 Isoparaffin, Laureth-7, Sorbitan Stearate, Zea Mays (Corn) Starch, Lauroyl Lysine, Magnesium Aluminum Silicate, Cetearyl Ethylhexanoate, Sodium Dehydroacetate, Nylon-12, Imidazolidinyl Urea, Methylparaben, Silica, Ethylparaben, Propylparaben, Butylparaben, Titanium Dioxide (CI 77891), Iron Oxide (CI 77491). +/- May Contain: Iron Oxide (CI 77492, CI 77499), Yellow 5 (CI 19140), Red 7 (CI 15850), Yellow 6 (CI 15985), Carmine (CI 75470), Ultramarines (CI 77007). Shade Range: ",
+ "rating": "4.7",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "434",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Blush",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b684853d1ee1ffd6125cdbb0308cb9c7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "A favorite with make-up artists Cargo's blendable and easy to wear blush \noffers a stunning array of shades from ranging from delicate neutrals to\n vibrant corals and pinks. Cargo blush is created with a moist and sheer\n powder formulation that glides easily over the skin for a beautiful, \nnatural flush. The silky smooth texture layers well for added intensity \nas desired. The pro formulation also offers longwearing and stay true \ncolor. Generously packaged in Cargo's oversized signature tin allowing for \neasy access with professional brushes.\u00a0 \n\n\nFeatures:\nSilky smooth texture that layer well for added intensity as desiredLongwearing and stay true colorGenerously packaged in Cargo's oversized signature tin allowing for easy access with professional brushesShade Range: Cargo Cosmetics Blush is one of our 10 Makeup Must Haves.\u00a0 See the full list on The Well.\u00a0 Ingredients: Talc, Zinc Stearate, Boron Nitride, Octyldodecyl Stearate, Octyldodecyl \nStearoyl Stearate, Phenoxyethanol, Silica, Tocopheryl Acetate, Caprylyl \nGlycol, Carthamus Tinctorius Seed Oil, Sorbic Acid, Aloe Barbadensis \nLeaf Extract. May Contain (+/-): CI 77019 (Mica), CI 77891 \n(Titanium Dioxide), CI 15850 (Red 7 Lake), CI 15850 (Red 6 Lake), CI \n15985 (Yellow 6 Lake), CI 77491 (Iron Oxides), CI 77499 (Iron Oxides), \nCI 77492 (Iron Oxides), CI 77742 (Manganese Violet), CI 77007 \n(Ultramarines).\n\n",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "433",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Contour Palette ",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/006d1877c44b9f612c5a9805d02b1b02_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This Cargo Cosmetics Contour Palette is a \u200bsimple and easy system that can help you contour \nand highlight flawlessly.\nThe textures, colours and finishes were specially designed to be 'fool \nproof'. With ease of application top of mind and the embossed shades \ngive step by step directions. It's the closest thing to having a make-up \nartist in your make-up kit!\n\u00a0\nFeatures:\n Includes coordinated shades with a highlighter, blush and contour color, each embossed with their application stepThe embossed shades give step-by-step directions: the closest thing to having a make-up artist in your make-up kit!Textures, colors and finishes were specially designed to be 'fool-proof', with ease of application being top of mindSold in a stunning brushed silver compact with mirrorIngredients: Talc, Octyldodecyl Stearate, Octyldodecyl Stearoyl Stearate, Zinc \nStearate, Boron Nitride, Tocopheryl Acetate, \nPhenoxyethanol, Silica, Caprylyl Glycol, Carthamus Tinctorius \n(Safflower) Seed Oil, Sorbic Acid (A Preservative), Aloe Vera (Aloe \nBarbadensis) Extract. May Contain (+/-): Mica (CI 77019), \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491/CI 77492/CI 77499), \nRed 6 Lake (CI 15850), Red 7 Lake (CI 15850:1), Red 27 Lake (CI \n45410:2), Bismuth Oxychloride (CI 77163), Manganese Violet (CI 77742), \nUltramarines (CI 77007), Tin Oxide (CI 77861).",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "432",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics BeachBlush",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/87772297ba0794c272d7e9f751d3beac_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Imagine the perfect marriage of blush and bronzer!\u00a0\u00a0Four harmonious \nshades work together to provide perfectly flushed cheeks with a \nsun-drenched glow. Golden goddess effects in a flash! Cargo Cosmetics' BeachBlush\u2122 \nhas earned its status as one of Cargo's most iconic products and even \nappeared as a question on Jeopardy!\u00a0 Packaged in Cargo's signature tin with \ngenerous surface area for easy swirling.\u00a0\nThis BeachBlush in \u200bCoral Beach is a warm peach bronze color medley.Features:\n Four harmonious shades in one tin work together to provide the \nperfect balance of color for all skin tones, avoiding the yellow look of\n many bronzers Light reflective shimmer particles add a radiant glow to the skin and soften the appearance of fine linesGenerously packaged with in Cargo's signature tin this medley of four \ndistinct, multi-tonal bronzing and blush shades gives a beautiful and \ndistinctive look to the product, unique from Cargo\u2019s other blush and \nbronzing productsBeachBlush\u2122 is the perfect complement to both your bronzing powder and your blushHow to Use: Apply using a fluff brushTo optimize all four shades in BeachBlush swirl the brush over all \nfour color bars, combining the different tones to create one harmonious \nhueApply to the cheekbone area, dust lightly onto the apples of the \ncheeks as well as any areas of the face that would be naturally kissed \nby the sun\nIngredients: Mica, Dimethicone, Zinc Stearate, Ethylhexyl Palmitate, Octyldodecyl \nSteaoryl Stearate, Octyldodecanol, Potassium Sorbate, Sodium Benzoate, \nBenzyl Alcohol, BHT, Tin Oxide\nMay Contain (+/-): CI 77891 (Titanium Dioxide), CI 77491 / CI \n77492 / CI 77499 (Iron Oxides), CI 75470 (Carmine), CI 45410 (Red 27 \nLake), CI 19140 (Yellow 5 Lake), CI 15850 (Red 6 Lake).",
+ "rating": "",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "431",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Contouring Blush & Bronzing Powder",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/32d324c76a75429df71cd525d60318a8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tCreate a healthy and natural glow all year long with this e.l.f. Studio Contouring Blush & Bronzing Powder. The Blush highlights the cheeks to add a \nflush of color, while the Bronzer accents and contours cheekbones for \nbeautiful definition. This convenient compact has just what you need to \nachieve a gorgeous glow anytime, anywhere.St. Lucia Shade: How to Use: Brush on the \"bronze\" to the hollow of the cheeks for definition and \ndust around the face line to create a healthy glow. Use the \"blush\" on \nthe apple of the cheeks to create a subtle healthy glow.Ingredients: Talc, Mica, Magnesium Stearate, Ethylhexyl Methoxycinnamate, Paraffinium\n Liquidum (Mineral Oil), Hydrogenated Polyisobutene, Sodium \nDehydroacetate, Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium \nDioxide (CI 77981), Red No.40 Lake (CI 16035), Ultramarine Blue (CI \n77007",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "430",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics BeachBlush ",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/62507a6df269ba7ecba37157bc4bc3e9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Imagine the perfect marriage of blush and bronzer!\u00a0\u00a0Four harmonious \nshades work together to provide perfectly flushed cheeks with a \nsun-drenched glow. Golden goddess effects in a flash! Cargo Cosmetics' BeachBlush\u2122 \nhas earned its status as one of Cargo's most iconic products and even \nappeared as a question on Jeopardy!\u00a0 Packaged in Cargo's signature tin with \ngenerous surface area for easy swirling.\u00a0\nThis BeachBlush in Echo Beach is a warm berry bronze color medley.Features:\n Four harmonious shades in one tin work together to provide the \nperfect balance of color for all skin tones, avoiding the yellow look of\n many bronzers Light reflective shimmer particles add a radiant glow to the skin and soften the appearance of fine linesGenerously packaged with in Cargo's signature tin this medley of four \ndistinct, multi-tonal bronzing and blush shades gives a beautiful and \ndistinctive look to the product, unique from Cargo\u2019s other blush and \nbronzing productsBeachBlush\u2122 is the perfect complement to both your bronzing powder and your blushHow to Use: Apply using a fluff brushTo optimize all four shades in BeachBlush swirl the brush over all \nfour color bars, combining the different tones to create one harmonious \nhueApply to the cheekbone area, dust lightly onto the apples of the \ncheeks as well as any areas of the face that would be naturally kissed \nby the sun\nIngredients: Mica, Dimethicone, Zinc Stearate, Ethylhexyl Palmitate, Octyldodecyl \nSteaoryl Stearate, Octyldodecanol, Potassium Sorbate, Sodium Benzoate, \nBenzyl Alcohol, BHT, Tin Oxide\nMay Contain (+/-): CI 77891 (Titanium Dioxide), CI 77491 / CI \n77492 / CI 77499 (Iron Oxides), CI 75470 (Carmine), CI 45410 (Red 27 \nLake), CI 19140 (Yellow 5 Lake), CI 15850 (Red 6 Lake).",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": []
+ },
+ {
+ "id": "429",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Blush in Rose",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7c674b3490001af91546b73c5fc45f94_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Physicians Formula Argan Wear Ultra-Nourishing Argan Oil Blush is an exotic blush infused with 100% Pure Argan Oil.Features: Argan\n oil that help transform skin, smoothing fine lines, brightening dull \nskin and renewing suppleness, helping to enhance skin's youthful glowHypoallergenicGluten & Paraben freeNon-comedogenicDermatologist approvedDirections: Sweep\n brush over entire palette to evenly blend colors.\u00a0 Tap excess powder \nfrom brush before applying.\u00a0 Brush over cheekbones to define and contour\n or apply right below cheekbones for a more defined and dramatic look.Ingredients: Talc,\n Mica, Isostearyl Neopentanoate, Argania Spinosa (Argan) Kernel Oil, \nPolybutene, Ascorbyl Palmitate, C12-15 Alkyl Benzoate, Calcium Sodium \nBorosilicate, Citric Acid, Fragrance, Glyceryl Oleate, Glyceryl \nStearate, Isopropyl Isostearate, Lecithin, Tin Oxide, Tocopherol, \nCaprylyl Glycol, Hexylene Glycol, Phenoxyethanol. May Contain: Iron \nOxides, Titanium Dioxide, Red 6, Red 7, Ultramarines, Yellow 5 Lake.",
+ "rating": "5.0",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "428",
+ "brand": "stila",
+ "name": "Stila Convertible Colour Palette Sinrise Splendor",
+ "price": 51.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ad55adbfdae0bb8adfe72bcbc41893ac_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Stila Convertible Colour Palette is a fresh arrangement of Convertible Colour Dual Lip & Cheek Creams with five cool toned shades. They blend like a dream, leaving lips and cheeks petal soft with pretty pops of translucent colour. Sunrise Splendor Shades:English Rose (warm rose tone)Lillium (pinky nude)Cherry Blossom (pink)Fuchsia (bright pink)Tulip (deep plum)Application: For lips, apply with fingertips or lip brush. For cheeks, tap your ring finger into product and gently warm against your thumb. Then tap colour onto cheeks, blending outward and upward.\u00a0 Can also be applied with brush.Ingredients: Ricinus Communis (Castor) Seed Oil, Lanolin Oil, Beeswax (Cera Alba), Octyl Dodecanol, Microcrystalline Wax, Phenyl Trimethicone, Caprylic/Capric Triglyceride, Ozokerite, Hydrogenated Palm Kernel Glycerides, Octyl Palmitate, Isononyl Isononanoate, C-12-15 Alkyl Benzoate, Tocopheryl Acetate, Hydrogenated Palm Glycerides, BHT. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (Cl 15850), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Yellow 5 Lake (CI 19140).Red 22 Lake (CI 45380).",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "427",
+ "brand": "stila",
+ "name": "Stila Convertible Colour Palette Sunset Serenade",
+ "price": 51.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6bb8e9566e2b42bfaf85b9abe36e7cde_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Stila Convertible Colour Palette is a fresh arrangement of Convertible Colour Dual Lip & Cheek Creams with five warm toned shades. They blend like a dream, leaving lips and cheeks petal soft with pretty pops of translucent colour. Sunset Serenade Shades: Petunia (warm pink)Peach blossom (warm peach)Gerbera (peachy nude)Camellia (warm beige)Twilight Rose (deep rose)Application: For lips, apply with fingertips or lip brush. For cheeks, tap your ring finger into product and gently warm against your thumb. Then tap colour onto cheeks, blending outward and upward.\u00a0 Can also be applied with brush.Ingredients: Ricinus Communis (Castor) Seed Oil, Lanolin Oil, Beeswax (Cera Alba), Octyl Dodecanol, Microcrystalline Wax, Phenyl Trimethicone, Caprylic/Capric Triglyceride, Ozokerite, Hydrogenated Palm Kernel Glycerides, Octyl Palmitate, Isononyl Isononanoate, C-12-15 Alkyl Benzoate, Tocopheryl Acetate, Hydrogenated Palm Glycerides, BHT. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7 Lake (Cl 15850), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Yellow 5 Lake (CI 19140).Red 22 Lake (CI 45380).",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "421",
+ "brand": "anna sui",
+ "name": "Anna Sui Cream Cheek Colour",
+ "price": 27.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3fd71730443a4f57b798668c24d0ad19_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Cream Cheek Colour is an oil-based gel formula that blends colour into the skin while promoting radiance in the cheeks.\u00a0 Its pore smoothing powder creates a soft focus effect that leaves skin looking smooth and poreless.Directions: Apply with the unique sponge by dabbing the colour onto your cheeks and blending.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "420",
+ "brand": "nyx",
+ "name": "NYX Rouge Cream Blush",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7e559a82a8c8b56d75ae5f108d8449ba_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Rough Cream Blush is a long-lasting, sheer blusher color in a velvety smooth cream.Features:Provides radiant, long-lasting color and a fresh, dewy glowFormula is infused with minerals that hydrate and condition the skinLong-lasting color in the form of a velvety smooth cream",
+ "rating": "2.0",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "419",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Visible Lift Blur Blush ",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4099ce5656b195d2ec1b845d2b678e25_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Create an instantly just kissed glow with L'Oreal Paris Visible Lift Blur\u2122 Blush. The \ncushiony soft texture glides over skin to blur away dullness for \ninstantly radiant looking skin.Ingredients: CYCLOPENTASILOXANE / DIMETHICONE\nCROSSPOLYMER / ALUMINA / DISODIUM\nSTEAROYL GLUTAMATE / ALUMINUM\nHYDROXIDE [+/- MAY CONTAIN: MICA / CI 77891 - TITANIUM\nDIOXIDE / CI 45410 - RED 28 LAKE / CI\n73360 - RED 30 / CI 19140 - YELLOW 5\nLAKE / CI 77491, CI 77492, CI 77499 -\nIRON OXIDES] \n\n",
+ "rating": "",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "418",
+ "brand": "marcelle",
+ "name": "Marcelle Cream Blush",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8d1dc771f1dbdf2fe5e3cb378c44f1fb_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n Marcelle\u2019s Cream Blushes beautifully blend for \na\u00a0flawless application. The richly pigmented shades provide a veil\u00a0of \ncolour for a healthy glow.Compact includes a handy sponge applicator. ",
+ "rating": "5.0",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "417",
+ "brand": "revlon",
+ "name": "Revlon PhotoReady Cream Blush",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1b84cb453bc5527d4ecb11b5967cd135_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon PhotoReady\u2122 Cream Blush was \ncreated by Global Artistic Director Gucci Westman for the Spring 2012 \ncollection. Inspired by the glowing skin of a beach beauty, these silky \ncream blushes glide on smoothly provide a dewy flush of color for a \nhealthy, gorgeous glow.Features: Creamy blush provides buildable, beautiful flush of colorLightweight formula with silky soft feel on skinBlends evenly over cheeks for smooth applicationPhotochromatic pigments bend and reflect light to provide cheeks with a beautiful glow",
+ "rating": "5.0",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "416",
+ "brand": "",
+ "name": "DaLish Lip Cheek Balm",
+ "price": 15.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3a23201f66be485784f542c43a4b3569_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "A little goes a long way with this richly pigmented multi-use balm that can be used on cheeks and lips for a fresh, happy glow. Start with one dab of DaLish Lip Cheek Balm on the apples of cheeks and use your fingers to massage in colour where you want it. Pearl-like pigments means the pretty tint won\u2019t fall flat on lips. Directions: Apply directly on to lips for balm use and dab directly onto cheeks for blush use. Blend woth your fingers till you reach your desired look. Shade Range: BO1 - Dusty Rose \u2013 shade with a hint of bronzer. Perfect for fair to medium tones.\n \n \n \n \n BO2 - Coral \u2013 that has a real punch to it. Perfect for all skin tones.\n \n \n \n \n BO3 - Bubble Gum Pink \u2013 Has a great pop of colour and perfect for all skin tones.\n \n \n \n \n BO4 - Bronzer \u2013 Perfect for all colour tones and ideal for contouring.\n \n \n \n \n BO5 - Deep Plum \u2013 Perfect for all skin tones. - See more at: //www.dalishcosmetics.com/product/lipcheek-balms-75-natural#sthash.9DGfyyKW.dpufBO1 - Dusty Rose \u2013 shade with a hint of bronzer. Perfect for fair to medium tones.BO2 - Coral \u2013 that has a real punch to it. Perfect for all skin tones.BO3 - Bubble Gum Pink \u2013 Has a great pop of colour and perfect for all skin tones.BO4 - Bronzer \u2013 Perfect for all colour tones and ideal for contouring.BO5 - Deep Plum \u2013 Perfect for all skin tones.Ingredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglycerides, Copernicia Cerifera (Carnauba) Wax, Cetyl Alcohol, Hydrogenated Castor oil, Cetyl Palmitate, Beeswax, Sorbitan Palmitate, Sorbitan Olivate, Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus officinalis (Rosemary) Leaf Extract, Benzyl Alcohol, Benzoic Acid, Dehydroacetic Acid, Sorbic Acid, Tocopherol, Vanillin, May contain (+/-), Titanium Dioxide CI 77891, Iron Oxides CI 77491, Mica CI 77019, Red 7 Lake CI 15850, Yellow 5 Lake CI 19140, Red 27 Lake CI 45410, Red 30 Lake CI 73360, Blue 1 Lake CI 42090, Carmine CI 75470. *Contains natural Antioxidant Contains organic castor oil and Carnauba Wax\u00a0",
+ "rating": "2.3",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "415",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Super BB All-in-1 Beauty Balm Cheek & Lip in Berry Pink",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/468d19513d1f01f1e59806ccdd4222fe_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Physicians Formula Super BB All-in-1 Beauty Balm Cheek & Lip in Berry Pink is a great mulch-purpose product to pop into your purse. Features: HypoallergenicParaben, Gluten & Fragrance freeNon-comedogenicDermatologist approvedDirections: Apply desired amount to cheeks & lips and blend with fingertip or brush.\u00a0 Reapply as needed.Ingredients: Caprylic/Capric Triglyceride, Polyethylene, Silica, Dimethicone, Hydrogenated Polyisobutene, Phenylpropyldimethylsiloxysilicate, Octyldodecanol, Euphorbia Cerifera (Candelilla) Wax, Hydrogenated Coco-Glycerides, Propylene Glycol Ricinoleate, Copernicia Cerifera (Carnauba) Wax, Mica, Calcium Aluminum Borosilicate, Flavor, Perilla Ocymoides Seed Oil, Salix Alba (Willow) Bark Extract, BHT, Glycerin, Lysolecithin, Polysilicone-11, Tin Oxide, Tocopheryl Acetate, Triethoxycaprylylsilane, Water, Phenoxyethanol. May Contain: Titanium Dioxide, Orange 5 Lake, Red 6 Lake, Red 7 Lake, Red 28 Lake, Red 30 Lake.",
+ "rating": "4.0",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "414",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Bouncy Blush",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/51eacb9efebbaee39399e65ffe3d9416_ra,w158,h184_pa,w158,h184.png",
+ "description": "Now, blush has bounce! Freshest flush ever:\u2022 New bouncy texture is formulated with silicone elastomers\u2022 Lightweight like a powder, yet melts seamlessly into skin like a cream giving you a fresh flush\u2022 Dermatologist tested\u2022 Allergy tested\u2022 Non-comedogenic\n \n \n \n \n For best results: With your fingertips, blend a small amount of\n blush onto the apples of your cheeks, applying from your cheekbones to \nyour temples. To build colour intensity, apply more blush. \n ",
+ "rating": "4.5",
+ "category": "cream",
+ "product_type": "blush",
+ "tag_list": []
+ },
+ {
+ "id": "413",
+ "brand": "anna sui",
+ "name": "Anna Sui Lip Colour Stain",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1c87435efe0a260a66b3df7cd58aaed0_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Lip Colour Stain includes a tinting ingredient that achieves long-lasting colour and helps diminish vertical lines on the lips.\u00a0 Directions: Apply directly to your lips for a natural stain.",
+ "rating": "",
+ "category": "lip_stain",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "412",
+ "brand": "revlon",
+ "name": "Revlon Colorstay Moisture Stain",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/df00e1e6268dc7d208b993d5692c9772_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon Colorstay Moisture Stain offers a new level of glossy wet color!It gives you saturated lips with brilliant shine and vivid colorFeatures:Drenches lips in glossy wet colorUltra-light creamy lipstain with Vitamin E and Aloe\n88% of women felt lips were instantly moisturized without stickiness\n\n ",
+ "rating": "4.0",
+ "category": "lip_stain",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "411",
+ "brand": "revlon",
+ "name": "Revlon ColorBurst Balm Stain",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cf54199ffb803951bf6342b59e3c58a5_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon ColorBurst Balm Stain is a pampering balm fused with a \nlightweight lipstain in an adorable chubby crayon. Revlon ColorBurst Balm Stain gives softer, smoother lips with a perfect flush of color \nthat lasts hour after hour.\nThe gel formula comes in 12 vibrant shades that match any look or mood and the crayon is retractable so no sharpener is needed!\n\n Expert Tips: Step 1 - Apply Revlon ColorBurst Balm Stain evenly to clean, bare lips. Build color and coverage as desired. Step 2 - Reapply as desired for moisturizing shine throughout the day.Revlon Just Bitten Kissable Balm Stain is one of our 10 Makeup Must Haves.\u00a0 See the full list on The Well.\u00a0 ",
+ "rating": "4.0",
+ "category": "lip_stain",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "410",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Mega Slicks Lip Balm Stain",
+ "price": 3.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/be634f08e36f3a6f18feed1c68065596_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Now you can amp up your lips with one stick for a kissable pout in no \ntime.To keep you pucker-perfect, these all lip balm stains glide on\n smoothly while conditioning the lips. Enriched with Acai Palm Oil, this\n amazing formula forms a protective shield on the lips to prevent \nfeathering. Complete with six great shades and continuous moisture, the \nformula leaves the lips with a unique minty, cooling sensation. No \nmatter how long the kiss, this balm will last and last. ",
+ "rating": "4.2",
+ "category": "lip_stain",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "409",
+ "brand": "nyx",
+ "name": "NYX Ombre Lip Duo",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/58650edc46ff5ed6705f5dfdb0776b5d_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Dress your lips in two-toned style with the NYX Ombre Lip Duo.\u00a0 The 2-in-1 lip colours are inspired by the Ombre trend and each lip duo features two coordinating shades of lip liner and satiny matte lipstick to create the perfect Ombre colour.Featured Colours:True red lipstick with black lip liner",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "408",
+ "brand": "marcelle",
+ "name": "Marcelle Forever Sharp Waterproof Lip Liner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5ede5c35db258a2416472fe8f93c2d75_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Say goodbye to sharpeners forever with the Marcelle Forever Sharp Waterproof Lip Liner.The\n Forever Sharp Waterproof Lip Liner has a velvety-smooth tip that softly\n lines and corrects slight imperfections to create a perfect pout. The \nrich, matte colour blends easily to provide a natural finish.Hypoallergenic and perfume-free.",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "407",
+ "brand": "nyx",
+ "name": "NYX Ombre Lip Duo ",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a4e135cd10297f09958503e830d58124_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Dress your lips in two-toned style with the NYX Ombre Lip Duo.\u00a0 The 2-in-1 lip colours are inspired by the Ombre trend and each lip duo features two coordinating shades of lip liner and satiny matte lipstick to create the perfect Ombre colour.Featured Colours:Pink Nude lipstick with Bright Pink lip liner",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "406",
+ "brand": "covergirl",
+ "name": "CoverGirl Lip Perfection Lipliner ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9b00f1bed71b9d46399663a8ef364a9a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "High conditioning lip liner. Created to work perfectly with Lip \nPerfection Lipstick, CoverGirl's lip liner formula contains over 60% skin \nconditioners, so you can line and define with conditioning colour.Features: Shades pair perfectly with Lip Perfection LipstickContains Vitamin EPencil requires sharpener",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "405",
+ "brand": "marcelle",
+ "name": "Marcelle Waterproof Lip Definition Lip Liner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2daab464be400117104710b2d0a93246_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Marcelle Waterproof Lip Definition Lip Liner offers you waterproof and perfect line definition in a single lip liner.\nIts velvety smooth tip softly lines and corrects slight imperfections\n to create a perfect pout. Easy to blend for a more natural look. Its \nlong-lasting formula was designed to resist water, humidity and heat. \nThe rich, matte colour provides a most natural finish.\n\nHypo-allergenic and perfume free.Shade Range: ",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "404",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Reverse Lip Liner",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/41643c6b163f42085540373b8858196b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "A Cargo Innovation and the only liner for lip gloss!Use this nifty tool to line your lips from the outside in. This natural \ncoloured pencil adds definition and fullness to the lip line as it locks\n colour in place. It is applied around the outer edges of the lip line \nand blended up and out to create a highlight around the mouth for the \nlook of fuller lips.\u00a0 \n\n\nFeatures:\nUsing the Reverse Lip Liner around the mouth will clean up the lip \nline, remove redness from around the mouth and prevent the messy \nfeathering of lip colorThe smooth, wax based formula will also create a barrier around the \nmouth to prevent lipstick from bleeding and hold lip color on longer \u2013 \nlocks color in placeShade Range: How to Use: Using soft feathery application strokes, apply the Reverse Lip Liner to the otter edges of the lip lineBlend upwards and outwards to soften the look of the line and give a highlight and lift to the mouthIngredients: C10-18 Triglycerides, Talc, Hydrogenated Vegetable Oil, Caprylic/Capric \nTriglyceride, Rhus Succedanea Fruit Wax, Tocopherol, Ascorbyl Palmitat",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "403",
+ "brand": "marcelle",
+ "name": "Marcelle 2 in 1 Retractable Plumping Lip Liner ",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/12b80abdb096e4bd949309febf299e66_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n With Marcelle 2 in 1 Retractable Plumping Lip Liner, the lips have it!\nIt's the only lip liner you'll ever need! Its creamy formula and \ngel-like texture soften the contours of your lips and, thanks to the \nMaxi-Lip complex, replenish volume to create lovely, luscious lips! With\n ingredients like jojoba oil and vitamin E it also helps reduce the \neffects of fine lines.\nWhen you're in a hurry, you'll simply love its retractable mechanism,\n lip brush and built-in sharpener, ever so practical! \nHypo-allergenic and tested under dermatological control. Contains no talc, gluten or parabens.Shade Range: ",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "402",
+ "brand": "nyx",
+ "name": "NYX Lip Primer",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6762de575de61e3987070e2cde8009b7_ra,w158,h184_pa,w158,h184.png",
+ "description": "Use NYX Lip Primer to create the perfect canvas for lip colour with this texture and color enhancing primer. Ensures that lip product lasts and does not go outside the lines. Features:Creates a smooth, uniform canvasPreps and primes lips for smooth and long wearKeeps lip color from fading or featheringBoth color correcting and texture adjusting formula makes lip color look its bestHow to Use: Apply all over lips prior to lip pencil, lipstick and gloss.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "401",
+ "brand": "",
+ "name": "Bonne Bell Lip Liner",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4d5dae99dd3884292e941f95392201b9_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Create the perfect lip look Bonne Bell Lip Liners and add definition to your lips.The twist up tip glides on smooth and no sharpener is required. They're so easy to use!",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "400",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Lip Liner",
+ "price": 11.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0d3cb34004a3290519b914ceaa0d67c8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Colour Riche Creamy Anti-Feathering Lip Liners create definition and coordinate perfectly with Colour Riche Lipcolour.\u00a0 Colour Riche Lip Liner is formulated with ultra-hydrating Omega 3 and protective Vitamin E to keep lips moisturized, soft and supple.\u00a0 ",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "399",
+ "brand": "annabelle",
+ "name": "Annabelle Stay Sharp Waterproof Lipliner",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bc487b5ce253ed22f045302a4f0b051c_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Stop looking, you have just found the sharpest tool in the shed!\nAnnabelle introduces the very first to mass market \nself-sharpening lipliners with the Stay Sharp Waterproof Lipliner. \nAnnabelle\u2019s truly innovative concept will keep beautistas on point and \nsharpeners away.The Stay Sharp secret is in the cap! The Annabelle Stay Sharp twist-on \ncap includes a sharpener. Every time the cap is twisted back on the \npencil, the blades sharpen the tip to perfection and neatly keep the \nshavings. No fuss, no mess!Shade Range: Key Features: Shelf-sharpening pencilNo mess: lead shavings are kept inside the capFine tip for extra-precise applicationExtremely soft lead for a smooth, gliding applicationWaterproof formulaIntense pigmentation for best colour pay off and coverage\n\n ",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "398",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Lipliner",
+ "price": 8.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6607c1b7eb717dfbd3c228b61e4c5148_ra,w158,h184_pa,w158,h184.png",
+ "description": "Keep your Maybelline lip color beautiful with matching lip liners that won't smudge, smear or bleed for smooth, defined lips. For best results: Line your lips starting in the center of your upper lip. Work from the \ncenter to outer edges of your lips using small strokes, following the \ncontour of your mouth. Follow the same technique for your bottom lip. To\n extend the wear of your favorite lip color or lip gloss, first fill in \nyour lips completely with lip liner. ",
+ "rating": "3.5",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "397",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Never Fail Lip Liner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0b1191651b7aef22b11e96f8c7c548d4_ra,w158,h184_pa,w158,h184.png",
+ "description": "L'Oreal Paris Infallible Never Fail Lip Liner is the perfect long-lasting lip liner.No touch-ups. No feathering. No fading! Just a rich and creamy formula that goes on smooth and even, leaving your lips soft and comfortable for hours. ",
+ "rating": "4.2",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "396",
+ "brand": "nyx",
+ "name": "NYX Slim Lip Pencil ",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/aa363598f8a9d629d3ade5c140e373d0_ra,w158,h184_pa,w158,h184.png",
+ "description": "Slim trim but never prim NYX Slim Lip Pencils come in a variety of dashing shades to suit your look.Features:Buttery long-wearing lip liner formulaGoes on easily and resists bleeding High pigmentation for bold wear and great colour payoffIngredients: Sorbitan Isostearate, Isocetyl Stearate,Phenyl Trimethicone, Polyethylene, Euphorbia Cerifera (Candelilla) Wax,Butyrospermum Parkii (Shea Butter) Unsaponifiables, Beeswax, SimmondsiaChinensis (Jojoba) seed oil, Caprylic/Capri Triglyceride, Nylon-12,Octyldodecanol, Polyglyceryl-2 Diisostearate, Silica, CoperniciaCerifera (Carnauba) Wax, Hydrogenated, Coconut Oil, Tocopherol,VP/Hexadecene Copolymer, Stearalkonium Hectorite, StearylGlycyrrhetinate, Propylparaben, Prolylene Carbonate. ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "395",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Lip Primer & Plumper",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2220d3e4e86c537c59ea5f3cea99e2cc_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Achieve longer lasting lip color and sexy plumped lips with e.l.f. Studio Lip Primer & Plumper. The Primer \ncreates a base for lip color for no budge, no smudge pigment that lasts \nall day. The cinnamon scented Plumper enhances your lips with a subtle \nplumping tingle effect for fuller, larger looking lips.How to Use: \n\t\t\t\t\t\n\t\t\t\t\tApply the \"prime\" to bare lips and\n blend in to help hold color to the lips all day. Use the \"plump\" alone\n or on top of primer or color to achieve a naturally fuller lip. Ingredients: Ethylhexyl Palmitate, Talc, Ozokerite, Polyisobutene, Synthetic \nFluorphlogopite, Bis-Diglyceryl polyacyladipate-2, Euphorbia Cerifera \n(Candelilla) Wax, Ceresin, Copernicia Cerifera (Carnauba) Wax, \nMicrocrystalline Wax (Cera Microcristallina), Tricontanyl PVP \n \nMay Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI \n77492, CI 77499) \n \n\n",
+ "rating": "3.7",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "394",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Lip Liner",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/afcbc5e035eab277db61144a9a3de035_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Perfect any lip look with Colorstay Lipliner, now updated to include full-coverage, sheer, and clear shades. Exclusive Colorstay technology with SoftFlex provides longwearing definition, helps lipcolor last longer and prevents feathering and bleeding. ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "393",
+ "brand": "milani",
+ "name": "Milani Color Statement Lipliner",
+ "price": 3.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/386b5089c2fac40c4b01e0a17dc7a1f0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Inspired by the Milan Runway, two new shades to line and fill-in lips. Features:True instant colour in one stroke applicationLong wearing, easy-glide formulaNo dragSharpens with Milani\u2019s Duo SharpenerNon-feathering formulaApplication: To outline your lips, make an X on the center of your upper lip (lip cleavage). Following the contour of your mouth, start from the outer edges of your lips and work your way towards center of your upper lip (where the x is marked). This will prevent from making one arch higher, pointier or rounder than the other.\u00a0 Tip: Lipliner helps extend the wear & keeps your lipstick from feathering.\u00a0\u00a0 When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades.\u00a0\u00a0 Create a custom lipcolor by using a contrasting lipliner and lipstick shade.\u00a0\u00a0 Before applying your lipliner, pat your lips lightly with your foundation or pressed powder puff, which also helps keep you lipstick from feathering. Ingredients:\u00a0 Ethylhexyl Palmitate, Synthetic Wax, Zeolite, Stearyl Dimethicone, Bis-Diglyceryl Polyacyladipate-2, Hydrogenated Polydicyclopentadiene-2, Polyethylene, Diisostearyl Malate, Pentaerythrityl Tetra-di-t-Butyl Hydroxyhydrocinnamate, Mica, Titanium Dioxide (CI 77891). +/- May Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 28 (CI 45410), Yellow 5 (CI 19140), Carmine (CI 75470), Blue 1 (CI 42090).",
+ "rating": "4.7",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": []
+ },
+ {
+ "id": "392",
+ "brand": "sante",
+ "name": "Sante Lip Duo Contour and Gloss Pencil",
+ "price": 20.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d203321e1481ff3e90906b92c960c524_ra,w158,h184_pa,w158,h184.png",
+ "description": "Sante Lip Duo Pencils have two products in one. A lipliner for perfect contours \nand lipgloss for a sexy finish. They come in trendy colors and have a moisturizing texture. \nVegan and gluten-free. Not tested on animals.Colours:",
+ "rating": "4.4",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "391",
+ "brand": "marcelle",
+ "name": "Marcelle Flawless Compact Foundation",
+ "price": 17.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/00148ac1311be275b6653eec741b135a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The Marcelle Flawless Compact Foundation is inspired by the cutting-edge colour marching technology (adaptive pigments). This Flawless Skin-Fusion Foundation blends with skin for a natural finish without clogging pores. Based on popular demand, the Flawless Skin-Fusion Foundation is now available in a compact format! It instantly conceals dark circles, redness and all other imperfections.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "390",
+ "brand": "revlon",
+ "name": "Revlon PhotoReady Insta-Fix Makeup",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c4d5400687c823f37bf21301859c616d_ra,w158,h184_pa,w158,h184.png",
+ "description": "Look flawless anytime, anywhere with Revlon\n PhotoReady Insta-Fix\u2122 Makeup. This instant skin retoucher can be used\n all over the face to conceal flaws and is perfect for touch ups on the \ngo. Revlon PhotoReady Insta-Fix\u2122 Makeup provides Light to Medium coverage.",
+ "rating": "",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "389",
+ "brand": "marcelle",
+ "name": "Marcelle BB Cream-to-Powder Makeup",
+ "price": 22.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4ca356be704dce025868182946e52080_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "A perfect addition to Marcelle's best skin enhancing line, Marcelle BB Cream-to-Powder Makeup has a creamy texture at first touch, but transforms to a\n silky, powdery finish upon contact with the skin. Its practical compact\n with mirror and sponge built-in is ideal for all-day touch-ups to \nmaintain a perfect and even skin. Can be used alone or over the BB Cream\n for more coverage.\n\nHypo-allergenic and perfume-free. Paraben free, oil free, and non-comedogenic. Shade Range: ",
+ "rating": "5.0",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "388",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Super BB All-in-1 Beauty Balm Stick",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4d7d79376ed827d7e587d849e16f2136_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Physicians Formula Super BB All-in-1 Beauty Balm Stick is a concealer, and foundation touch up tool. It's ideal for perfecting, concealing, smoothing, brightening, moisturizing, protecting, firming, priming+filling and line softening.Features: HypoallergenicParaben, gluten and fragrance freeNon comedogenicDermatologist approvedDirections: Apply the stick directly onto face starting at the center and blending outward using fingertips.\u00a0 Layer for additional coverage.Ingredients: Phenyl Trimethicone, Dimethicone, Caprylic/Capric Triglyceride, Isocetyl Stearate, Euphorbia Cerifera (Candelilla) Wax, Mica, Microcrystalline Wax, Cetyl Ethylhexanoate, Polymethylsilsesquioxane, Copernicia Cerifera (Carnauba) Wax, Butyrospermum Parkii (Shea) Butter, Ethylhexyl Palmitate, Synthetic Beeswax, Calcium Aluminum Borosilicate, Phenoxyethanol, Salix Alba (Willow) Bark Extract, Perilla Ocymoides Seed Oil, Ascorbyl Palmitate, Tetrahexyldecyl Ascorbate, Tocopheryl Acetate, Arachidyl Alcohol, BHT, Castor Oil Phosphate, Cetyl PEG/PPG-101-10/1 Dimethicone, Glycerin, HDI/Trimethylol Hexyllactone Crosspolymer, Hexyl Laurate, Lysolecithin, Ozokerite, Palmitic Acid, Polyglyceryl-2 Isostearate, Silica, Stearic Acid, Triethoxycaprylylsilane, Water. May Contain: Iron Oxides, Titanium Dioxide.",
+ "rating": "2.5",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "387",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Nude Wear Touch of Glow Stick in Nude Glow",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2f58780bf027e35f8f354a8f9b7acc3e_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\nPhysicians Formula Nude Wear Touch of Glow Stick is an all-around concealer, foundation, and highlighter touch up tool. The lightweight, glide on formula helps erase the appearance of imperfections and restore the glow of natural, naked skin.Features: Vanishes dark circles, fine lines, shadows and signs of fatigueHypoallergenicGluten, Fragrance, Paraben & Oil freeDermatologist approvedDirections: Apply all over face or to any imperfection and gently blend with fingertip to even out skin tone.Ingredients: Phenyl Trimethicone, Dimethicone, Caprylic/Capric Triglyceride, Isocetyl Stearate, Euphorbia Cerifera (Candelilla) Wax/Cire de Candelilla, Mica, Microcrystalline Wax/Cire Microcristalline, Ceryl Ethylhexanoate, Polymethylsilsesquioxane, Butryospermum Parkii (Shea) Butter, Copernicia Cerifera (Carnauba) Wax/Cire de Carnauba, Synthetic Beeswax, Ethylhexyl Palmitate, Calcium Aluminum Borosilicate, Phenoxyethanol, Lactic Acid, Nylon-12, HDI/Trimethylol Hexyllactone Crosspolymer, Lauroyl Lysine, Synthetic Fluorphlogopite, Boron Nitride, Silica, Arachidyl Alcohol, Cetyl PEG/PPG-10/1 Dimethicone, Hexyl Laurate, Ozokerite, Palmitic Acid, Polyglyceryl-2 Isostearate, Stearic Acid, BHT, Ascorbyl Palmitate, Tetrahexyldecyl Ascorbate,\u00a0 Tocopherol Acetate. May Contain/Peut Contenir: Iron Oxides, Titanium Dioxide.",
+ "rating": "4.0",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "386",
+ "brand": "covergirl",
+ "name": "CoverGirl & Olay Simply Ageless Foundation ",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fd47eaa9241a010e48fc32cf4611d772_ra,w158,h184_pa,w158,h184.png",
+ "description": "This breakthrough formula with Olay Regenerist Serum and SPF 22 stays \nsuspended over fine lines and wrinkles, unlike the leading anti-aging \ndepartment store foundation that can gather in wrinkles and make skin \nlook older. Clinically shown to provide significant improvement in skin \ncondition in just four weeks.Features: SPF 22Stays suspended over fine lines and wrinklesEven coverageDermatologically-tested",
+ "rating": "5.0",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "385",
+ "brand": "sante",
+ "name": "Sante Soft Cream Foundation",
+ "price": 27.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e468ef6f9534484e1f21e0f971d92c48_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Sante soft cream foundation has precious mineral pigments for a \nvelvety, especially flawless complexion. Gives your skin a fresh, \npleasant feel with cupuacu butter, pomegranate extract and valuable \norganic jojoba oil. Free of paraffin and silicone oils. Colours: Ingredients: AQUA (WATER), HYDROGENATED VEGETABLE OIL, GLYCINE SOJA (SOYBEAN) OIL*, GLYCERIN, SIMMONDSIA CHINENSIS (JOJOBA) SEED OIL*, SQUALANE, TALC, POTASSIUM CETYL PHOSPHATE, PALMITIC ACID, STEARIC ACID, PARFUM (ESSENTIAL OILS), HYDROGENATED PALM GLYCERIDES, THEOBROMA GRANDIFLORUM SEED BUTTER*, PUNICA GRANATUM SEED EXTRACT*, SORBITOL, GALACTOARABINAN, XANTHAN DUM, HYDROGENATED LECITHIN, SODIUM CITRATE, ASCORBYL PALMITATE, LECITHIN, CITRIC ACID, TOCOPHEROL, HYDROGENATED PALM GLYCERIDES CITRATE, FARNESOL, [+/- CI 77891 (TITANIUM DIOXIDE), CI 77492 (IRON OXIDES), CI 77491 (IRON OXIDES)] * organically grown",
+ "rating": "3.8",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "384",
+ "brand": "covergirl",
+ "name": "CoverGirl Ultimate Finish Liquid Powder Makeup ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1aa7e9e399d24c2a747137df51026ed2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get the beauty of a liquid, a powder and concealer in one makeup! \nUltimate Finish glides on weightlessly to cover and conceal where you \nneed it, then dries to the soft finish of a powder. For an ultimate \nnatural look\u2014beautiful and wondrous. It's all you need\u2014all in one!Features: Oil and fragrance freeHypoallergenicDermatologically-tested",
+ "rating": "5.0",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "383",
+ "brand": "revlon",
+ "name": "Revlon Colorstay Whipped Creme Makeup",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/037b446c36900da96e12fde1be625a76_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Finally, truly decadent makeup offers \nultimate performance. The mousse-like texture of Revlon Colorstay Whipped Creme Makeup feels like silk on your \nskin. And, the time release formula balances skin for a flawless look. \nAll day flexible wear without flaking, caking or feeling heavy.Features: Buildable to full coverage for flawless skin\nSoft, matte finish all day long\nWithstands heat and humidity \u2013 great for summer",
+ "rating": "4.4",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "382",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Smooth Mousse Foundation",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fb79e7facf701176d4113527c284613f_ra,w158,h184_pa,w158,h184.png",
+ "description": "Why You'll Love ItUnique cream-whipped foundation provides 100% baby-smooth perfection.\n\nSkin looks and feels hydrated for 14 hours - never rough or dry\nLightweight formula provides perfectly moisturizing coverage\nBlends seamlessly and feels fresh all-day\nOil-free, Fragrance-free, Dermatologist Tested, Allergy Tested, Non-comedogenic \u2013 won\u2019t clog pores.\nSafe for sensitive skin\n\n\u00a0",
+ "rating": "3.8",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "381",
+ "brand": "revlon",
+ "name": "Revlon New Complexion One-Step Makeup",
+ "price": 18.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3b9b3cd1bce690e330f335cd696bb098_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Give your skin a bright, natural looking finish in one easy step! This creamy formula combines the coverage of a liquid with the finish of a powder for a natural, even finish. Formulated with a special mineral complex to naturally brighten your skin it offers perfect, long-lasting coverage with SPF 15 protection.",
+ "rating": "4.2",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "380",
+ "brand": "maybelline",
+ "name": "Maybelline Fit Me Shine-Free Foundation Stick",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d04e7c2ed65dabe1dca4eed9aa268e95_ra,w158,h184_pa,w158,h184.png",
+ "description": "Get flawless, shine-free skin instantly and on-the-go for tailor-made \nmattifying coverage. The anti-shine core has ultra-lightweight powders \nbuilt in to the stick foundation to instantly dissolve excess oil. Features: Maybelline's first gel stick foundation with an anti-shine core\nFresh gel foundation blends to a flawless matte finish\nLightweight powders in the anti-shine core instantly dissolve excess oil",
+ "rating": "4.7",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "379",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Matte Mousse Foundation",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/029889b345c76a70e8bb978b73ed1a87_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Dream Matte Mouse Foundation is a revolutionary air-soft mousse that provides perfecting coverage for 100% velvet-matte complexion. It's non-comedogenic, fragrance-free, dermatologist-tested, allergy-tested and ideal for normal to oily skin.For best results: Apply smoothly and evenly to your face and blend with your fingertips.\ufeff\n\n\u00a0",
+ "rating": "4.4",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "378",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio HD Mattifying Cream Foundation",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b9a2310c06b11611ab850051c90d06b0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This high-definition, oil-free, lightweight foundation is perfect for \nnormal to oily skin types. The cream-to-powder formula minimizes fine \nlines and leaves a natural, long-lasting, matte finish. Includes a \ncompact sponge for easy application and portable beauty.Shade Range: Ingredients: Ethylhexl Palmitate, Octyldodecanol, Synthetic Wax, Copernicia Cerifera \n(Carnauba) Wax, Caprylic/Capric Triglyceride, Tridecyl Trimellitate, \nMica, Nylon-12, Silica, Triacontanyl PVP, Polyglyceryl-4 Isostearate, \nPropylparaben, Tocopheryl Acetate MAY CONTAIN: Iron Oxides (CI \n77491, CI 77492, CI 77499), Manganese Violet (CI 77492), Red No. 33 Lake\n (CI 17200), Blue No. 1(CI 42090), Yellow No. 5 Lake (CI 19140), \nTitanium Dioxide (CI 77891), Red No.40 Lake (CI 16035), Chromium \nHydroxide Green (CI 77289). ",
+ "rating": "4.8",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "377",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Sheer Tint Foundation",
+ "price": 37.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ad193b9a7696d646f5d398e1550f2f04_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Mineral Fusion Sheer Tint Foundation is a lightweight, hydrating foundation with a dewy finish that provides sheer coverage for a perfectly even skin tone.\u00a0 The blend of Pomegranate, Red Tea, White Tea and Sea Kelp offer age-defying antioxidant protection to defend against free radical damage and give skin a healthy radiance.\u00a0 This foundation is formulated with only the safest, most gentle ingredients plus the natural UV protection of minerals and skin soothing botanicals. Great for use on all skin types.Features:Sheer coverage for neutral skinFlawless CoverageAge-DefyingSkin SoothingFree of artificial colour or fragranceTalc freeHypo-allergenicCruelty FreeParaben FreePhthalate FreeIngredients: Water, Squalane (Olive), Tridecyl Neopentanoate, Titanium Dioxide, Propylene Glycol Dicaprylate/Dicaprate, Vegetable Glycerin, Cetearyl Alcohol, Polysorbate 80, Glyceryl Stearate SE, Cyclomethicone, Hydrogenated Polyisobutene, Dimethicone Crosspolymer-3, Sorbitol, Triethanolamine, Stearic Acid, Sorbitan Sesquioleate, Cetyl Alcohol, Dimethicone, Laureth-7, Magnesium Aluminum Silicate, Cyclopentasiloxane, Xanthan Gum, Hydroxyethyl Acrylate/Sodium Acryloyldimethyl Taurate Copolymer, Polysorbate 60, Cellulose Gum, PEG-12 Dimethicone, Carthamus Tinctorius (Safflower) Seed Oil, Vitis Vinifera (Grape) Seed Extract, Camellia Sinensis (White Tea) Leaf Extract, Aspalathus Linearis (Rooibos Red Tea) Leaf Extract, Punica Granatum (Pomegranate) Extract, Caprylic/Capric Triglyceride, Laminaria Ochroleuca (Sea Kelp) Extract, Gluconolactone, Sodium Benzoate. MAY CONTAIN (+/-): Iron Oxides.Vegan, Gluten Free",
+ "rating": "",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "376",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose mineral foundation",
+ "price": 25.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ffcc22368c1a34e5478730e6cba8790d_ra,w158,h184_pa,w158,h184.png",
+ "description": "Pure Anada mineral foundation has the ability to provide full coverage, \nwhile still feeling light and natural. No more silicone based \nfoundations that can stifle your pores. With Pure Anada your skin can \n\u201cbreathe\u201d. This results in a healthier, younger looking complexion.You\n can be assured that when you use Pure Anada, you are using a truly \nnatural product. Pure Anada has done the research, and are committed to \nusing the safest, purest ingredients available. It is not necessary to \nadd preservatives to this loose mineral products. The raw minerals used \nin Pure Anada are inert, and do not support the growth of bacteria, mold\n or fungi.Pure Ananda boasts an extensive array of mineral \ncolors to suit all skin tones, and personal preferences. With the proper\n application techniques, Pure Anada mineral cosmetics can be used by all\n women! Mature skin types enjoy the light, luminous texture, while \nproblematic skin types take advantage of the full, soothing coverage. \nThese products are concentrated; a little goes a long way!\u00a0 This makes \nPure Anada very affordable. We want The mineral ingredients in \nPure Anada have properties that are beneficial to your skin! For \nexample: Titanium Dioxide reflects the sun\u2019s harsh rays away from your \nskin. Zinc Oxide soothes irritation, and Silica blurs fine lines and \nwrinkles.Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron Oxides, Ultramarines Note: Deeper, global foundation shades do not contain Titanium Dioxide.Brush not included.",
+ "rating": "",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "375",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Translucent Face Powder Compact",
+ "price": 35.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/85f0104f060f5f6e76dc18f5c8e728e6_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Dr. Hauschka Translucent Face Powder Compact contains a nourishing combination of rose, anthyllis, witch hazel, black tea and silk that mattifies the skin and keeps your make-up in place.",
+ "rating": "",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "374",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Talc-Free All-In-One ABC Cushion Foundation",
+ "price": 20.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3c711478d1b8a9f1c7d9f2c1cdffdb41_ra,w158,h184_pa,w158,h184.png",
+ "description": "1st Ever Mineral ABC Cushion Foundation! Weightless mineral formula provides the multi-tasking benefits of an alphabet cream with the gentle, flawless, skin-perfecting effects of minerals. Revolutionary cushion foundation instantly corrects visible imperfections, blurs fine lines and pores with a perfected airbrushed finish.ABC Cushion Technology: Ultra-fluid, lightweight formula delivers an instantly smoothing & firming effect, while hydrating skin for effortless perfection. Unique cushion sponge delivery system dispenses the perfect dose. Each tap delivers customizable light to medium coverage.Features:Featuring a proprietary ABC blend of complexion enhancing minerals, soothing plant extracts, smoothing antioxidants and skin nourishing vitamins for moisturizing & brightening benefits that leave skin with a luminous finishLuxurious puff applicator provides a cooling & skin refreshing finish upon applicationUltra-convenient for on-the-go!Directions: Apply pressure onto cushion with puff applicator to release the perfect dose of foundation for customizable light to medium coverage. Gently pat puff onto skin. Flip cushion for extended foundation usage. Close inner lid tightly to prevent product from drying out. Ingredients: Mineral Water, Ethyl Macadamiate, Cyclopentasiloxane, Dimethicone, Zinc Oxide, Cyclohexasiloxane, Cetyl PEG/PPG-10/1 Dimethicone, Butylene Glycol, Mica, Calcium Aluminum Borosilicate, Polyethylene, Polyglyceryl-4 Isostearate, Water/Eau, PEG/PPG-18/18 Dimethicone, Smithsonite Extract, Malachite Extract, Rhodochrosite Extract, Glycyrrhiza Glabra (Licorice) Root Extract, Retinyl Palmitate, Alpha-Arbutin, Helianthus Annuus (Sunflower) Seed Oil, Glycerin, Ethylhexylglycerin, Tocopheryl Acetate, Tetrahexyldecyl Ascorbate, Tocopherol, Aluminum Hydroxide, Alumina, Dimethicone/Methicone Copolymer, Dimethicone/PEG-10/15 Crosspolymer, Disodium Cocoyl Glutamate, Disodium EDTA, Dimethicone/Polyglycerin-3 Crosspolymer, Hexyl Laurate, Magnesium Sulfate, Malic Acid, Polysorbate 20, Sodium Chloride, Sodium Cocoyl Glutamate, Synthetic Fluorphlogopite, Sodium Citrate, Trimethylsiloxysilicate, Triethoxycaprylylsilane, PEG-32, PEG-10 Dimethicone, Silica, Hexylene Glycol, Dipropylene Glycol, Caprylyl Glycol, Phenoxyethanol ",
+ "rating": "4.0",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "373",
+ "brand": "nyx",
+ "name": "NYX Mineral Stick Foundation",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f502dbd04258fd8b613887935f0daa53_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Mineral Stick Foundation is a luxurious formula that is easy to apply and blend. Use on the entire face or isolated areas that need a little extra attention. Can be blended with fingertips, sponge or foundation brush.Features:Creamy stick foundation that gives a matte satin finishGlides on effortlessly providing medium to full coverage with a natural finishYou can wear as little or as much as you want to get the desired coverage Easy to blend and comfortable to wear at the same timeHow to Use: Apply directly to face from stick or apply using fingers, sponge or brush. Layer and blend for desired result. Set with powder.",
+ "rating": "5.0",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "372",
+ "brand": "nyx",
+ "name": "NYX Stay Matte But Not Flat Powder Foundation",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ae8ef30ce1bbfbc56d28f98343d54f4d_ra,w158,h184_pa,w158,h184.png",
+ "description": "Want a matte finish to help you achieve a flawless complexion? The NYX Stay Matte Not Flat Powder Foundation is the perfect finish to flatter all skin tones! Features:Get a naturally flawless look with minimal effortComes in a variety of shades to suit your skin toneProvides the perfect shine-free finish that lasts all dayMineral enriched, talc and oil freeWater & sweat resistantFeels like silk on skinIngredients: Nylon-12, Hydrogenated Polyisobutene, Magnesium Stearate, Silica, Phenyl Trimethicone, Bis-Diglyceryl Polyacyladipate-2, Cyclopentasiloxane, Dimethiconol, Zinc Stearate, Boron Nitride, Methylparaben, Propylparaben, Tocopheryl Acetate. MAY CONTAIN / PEUT CONTENIR (+/-): Mica,Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, 77492, 77499). ",
+ "rating": "",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "371",
+ "brand": "milani",
+ "name": "Milani Cream-To-Powder Makeup",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/296c3f69ab7abdc797d6f0f7092f7a58_ra,w158,h184_pa,w158,h184.png",
+ "description": "Meet your new photo-opp BFF. This oil-free, not-quite-foundation - a complexion perfector if ever there was one - glides on as a cream and magically morphs into a powder. Laced with light diffusers for minimizing imperfections, it yields a soft matte, camera-ready finish.Features:Silky, creamy-smooth easy application, blends to a natural matte powder finishOptical light diffusers minimize imperfectionsMirror & sponge applicator includedStreak-freeEasy to useApplication: Apply cream to powder foundation evenly all over face with provided flocked sponge, beginning at the center of the face and blending outward.\u00a0 Tips: Can be used as a corrector to cover up dark circles and blemishes. For light to medium coverage, apply in circular motions. For more full coverage, use a patting or stippling motion. Ingredients: Dimethicone, Isopropyl Isostearate, Neopentyl Glycol Diethylhexanoate, Tribehenin, Isostearyl Behenate, Silica, Nylon-12, Tridecyl Trimellitate, Talc, Euphorbia Cerifera Cera (Candelilla Wax), Myristyl Myristate, Polyethylene, Trimethylsiloxysilicate, Sorbitan Trioleate, Tocopheryl Acetate, Isopropyl Titanium Triisostearate, Ethylene/Methacrylate Copolymer, Lauroyl Lysine, Myristyl Laurate, Fragrance (Parfum), Propylparaben, Retinyl Palmitate, Glycine Soja (Soybean) Oil, Myristyl Alcohol, Camellia Sinensis Leaf Extract, Benzyl Alcohol, Coumarin, Limonene, Benzyl Salicylate, Linalool, Citronellol, Benzyl Benzoate, Geraniol. +/- May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Ultamarines (CI 77007). ",
+ "rating": "4.4",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "370",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Flawless Complexion Kit ",
+ "price": 29.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c150e6cb030d8b4c8c63a12e6e599332_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Mineral Wear Flawless Complexion Kit is ideal for extra sensitive or breakout-prone skin! The ultra-gentle, minimalist formulations help reduce irritation and breakout.Kit Includes: Physicians Formula Mineral Wear Talc-Free Mineral Blush (5.5 g) Mineral Wear Talc-Free Mineral Face Powder \t\t\t\t(9 g)Mineral Wear Talc-Free Matte Finishing Veil (16.5 g) - Translucent",
+ "rating": "4.8",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "369",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Correcting Kit ",
+ "price": 29.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/83eaa459937a099c51594ef9578b3821_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Mineral Wear Flawless Complexion Kit is ideal for \nextra sensitive or breakout-prone skin! The ultra-gentle, minimalist \nformulations help reduce irritation and breakout.Kit Includes: Mineral Wear Talc-Free Mineral Correcting Concealer (11.6 g) - Cover + HighlightMineral Wear Talc-Free Mineral Correcting Powder \t\t\t\t(8.2 g)Mineral Wear Talc-Free Mineral Loose Powder (10 g) ",
+ "rating": "4.7",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "368",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Airbrushing Pressed Powder ",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cca454e907546544ca9b5b183bb8a96c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Mineral Wear Airbrushing Pressed Powder's ultra-fine mineral powder delivers impeccable coverage for a flawless airbrushed finish. Visibly reduces the appearance of fine lines, wrinkles, pores and sun damage.Directions for Use: Apply liberally 15 minutes before sun exposure. Use water resistant \nsunscreen if swimming or sweating. Reapply at least every 2 hours. \nChildren under 6 months: Ask a doctor. Sun Protection Measures. \nSpending time in the sun increases your risk of skin cancer and early \nskin aging. To decrease this risk, regularly use a sunscreen with a \nbroad spectrum SPF of 15 or higher and other sun protection measures \nincluding: limit time in the sun, especially 10 a.m. - 2 p.m. Wear \nlong-sleeve shirts, pants, hats, and sunglasses.Ingredients: Titanium Dioxide, Zinc Oxide. Inactive Ingredients: Mica, Zinc Stearate,\n Tricaprylin, Boron Nitride, Lauroyl Lysine, Camellia Oleifera Leaf \nExtract, Chamomilla Recutita (Matricaria) Flower Extract, Ginkgo Biloba \nLeaf Extract, Panax Ginseng Root Extract, Carthamus Tinctorius \n(Safflower) Seed Oil, Tocopheryl Acetate, Retinyl Palmitate, Ascorbyl \nPalmitate, Magnesium Silicate, Chlorphenesin, Potassium Sorbate, Sodium \nDehydroacetate, May Contain: Iron Oxides, Titanium Dioxide.Hypoallergenic. Fragrance free. Paraben free. Non-Comedogenic. Dermatologist approved. ",
+ "rating": "4.7",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "367",
+ "brand": "pure anada",
+ "name": "Pure Anada Pressed Sheer Matte Foundation Pan",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e604b3ea443d37f002b6e74d12733427_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada Pressed Sheer Matte Foundation Pan is sheer, and matte and comes in a convenient pan form. Perfect to pop into your own magnetic compact like the Pure Ananda Reusable Magnetic Compact. Design your own palette! Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron \nOxides, Ultramarines, *Simmondsia Chinensis ( Jojoba) Seed \nOil,\u00a0\u00a0Caprylic/capric triglyceride\n*Certified Organic Ingredients",
+ "rating": "4.3",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "366",
+ "brand": "maybelline",
+ "name": "Maybelline Mineral Power Natural Perfecting Powder Foundation",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c77ad2da76259cfd67a9a9432f635bfb_ra,w158,h184_pa,w158,h184.png",
+ "description": "Why You'll Love ItMineral Power Powder Foundation with micro-minerals provides a more natural, healthier, luminous look.\nDiscover the natural power of micro-minerals:\n100% natural mica creates a more natural luminosity Complete, yet refined coverage Provides buildable, even coverage Preservative-free, talc-free, oil-free, fragrance-free Medium to Full Coverage",
+ "rating": "3.9",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "365",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Mineral Wear Airbrushing Loose Powder ",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9ad93ab35e838c5a1669cc934c6d93b6_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Talc-Free Mineral Wear Airbrushing Loose Powder is an ultra-fine mineral powder delivers impeccable coverage for a flawless airbrushed finish. Visibly reduces the appearance of fine lines, wrinkles, pores and sun damage. Formulated with soothing plant extracts, protective antioxidants, nourishing Vitamins C and E. The result is a visibly firm, smooth, healthy and youthful complexion.Directions for Use: May be worn alone or over makeup. Invert jar and gently tap to allow \npowder to gather in tray. Open the sifter lid and lightly buff powder \nover face and neck to even out complexion. For the most even \napplication, be sure to tap excess powder from brush before applying. \nFor best results on dry to very dry skin, apply moisturizer prior to \nusing powder.Ingredients: Mica. Boron Nitride. Zinc Stearate. Lauroyl Lysine. Tricaprylin. \nMagnesium Silicate. Carthamus Tinctorius (Safflower) Seed Oil. \nChamomilla Recutita (Matricaria) Flower Extract. Panax Ginseng Root \nExtract. Ginkgo Biloba Leaf Extract. Camellia Oleifera Leaf Extract. \nAscorbyl Palmitate. Tocopheryl Acetate. Retinyl Palmitate. \nChlorphenesin. Potassium Sorbate. Sodium Dehydroacetate. May Contain: \nIron Oxides. Titanium Dioxide.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Non-Comedogenic.",
+ "rating": "4.6",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "364",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose Mineral Foundation ",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5d746a1619119260de309df7396e5d7c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada mineral foundation has the ability to provide full coverage, \nwhile still feeling light and natural. No more silicone based \nfoundations that can stifle your pores. With Pure Anada your skin can \n\u201cbreathe\u201d. This results in a healthier, younger looking complexion.You can be assured that when you use Pure Anada, you are using a truly natural product. Pure Anada has done the research, and are committed to using the safest, purest ingredients available. It is not necessary to add preservatives to this loose mineral products. The raw minerals used in Pure Anada are inert, and do not support the growth of bacteria, mold or fungi.Pure Ananda boasts an extensive array of mineral colors to suit all skin tones, and personal preferences. With the proper application techniques, Pure Anada mineral cosmetics can be used by all women! Mature skin types enjoy the light, luminous texture, while problematic skin types take advantage of the full, soothing coverage. These products are concentrated; a little goes a long way!\u00a0 This makes Pure Anada very affordable. We want The mineral ingredients in Pure Anada have properties that are beneficial to your skin! For example: Titanium Dioxide reflects the sun\u2019s harsh rays away from your skin. Zinc Oxide soothes irritation, and Silica blurs fine lines and wrinkles.Shade Range: Ingredients: Mica, Titanium Dioxide, Zinc Oxide, Silica, Boron Nitride, Iron Oxides, Ultramarines Note: Deeper, global foundation shades do not contain Titanium Dioxide.Brush not included.",
+ "rating": "3.9",
+ "category": "mineral",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "362",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Stay Luminous Foundation Creamy Natural (820) ",
+ "price": 12.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b074403f4a1c12a7920199e4d8fabe78_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "CoverGirl Outlast Stay Luminous Foundation is perfect for achieving\na dewy finish and a subtle glow. It is oil-free, with a non-greasy formula gives \nyour skin a natural luminosity that lasts all day! This all day foundation hydrates skin while providing \nflawless coverage.Features: Oil-freeLong lastingGive your skin a natural glowing lookDirections: Apply primer first to help your look last all day.Dot foundation on forehead, cheeks and chin. Blend using fingertips, or a makeup sponge if desired.Use a Pressed Powder to finish and voila! Your look is ready to last.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "356",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Liquid Foundation",
+ "price": 37.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/28f3263536f9d9650997790baf329bbe_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Mineral Fusion Liquid Foundation is a luxurious, full-coverage mineral foundation that blends easily for naturally flawless skin.\u00a0 With a unique fusion of antioxidant-rich Rosehip Oil, Pomegranate, and Vitamin C plus the collagen-boosting Peptide help firm skin and prevent signs of aging without a heavy or greasy feeling.\u00a0 Formulated with only the safest, most gentle ingredients, the natural UV protection of minerals, plus skin-soothing Licorice Root, Aloe Vera, and Lavender and nourishing Shea Butter. Great for use on all skin types.Features:Flawless, Full CoverageAge-DefyingSkin-SoothingFree of artificial colour or fragranceParaben FreeCruelty FreePhthalate FreeHypo-allergenicIngredients: Aqua, Caprylic/capric triglyceride, Cera alba, Stearic acid, Glycerol caprylate, Glycol palmitate, Glyceryl stearate, Silica, Oryza Sativa (Rice) starch, Mica, Dimethicone, Butyrospermum Parkii (Shea Butter) Fruit, Palmitoyl Tripeptide-5, Aloe Barbadensis (Aloe) Leaf extract, Roman Anthemis Nobilis (Chamomile) extract, Lavandula Angustifolia (Lavender) extract, Punica Granatum (Pomegranate) extract, Glycyrrhiza glabra (Licorice) Root Powder, L-ascorbic-acid (Vitamin C), Tocopherol (Vitamin E), Phenoxyethanol. MAY CONTAIN (+/-): Titanium dioxide, Black Iron oxide, Red Iron Oxide, Yellow Iron Oxide.",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "354",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Velvet Foundation",
+ "price": 18.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/24517c6c81c92eda31cd32b6327c1298_ra,w158,h184_pa,w158,h184.png",
+ "description": "This Maybelline Dream Velvet Foundation is a refreshing gel-whipped foundation that leaves complexion perfected and smooth with a velvety, soft-matte finish. Skin stays hydrated for 12 hours. Features:Maybelline\u2019s first hydrating matte foundation for 100% velvet-smooth perfectionUnique gel-whipped formulaIdeal for normal to combination skin, medium coverage For best results apply Maybelline Dream Velvet Foundation using Maybelline Dream Blender",
+ "rating": "2.5",
+ "category": "cream",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "353",
+ "brand": "maybelline",
+ "name": "Maybelline Superstay Better Skin Foundation ",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c7d967ef502ecd79ab7ab466c4952d82_ra,w158,h184_pa,w158,h184.png",
+ "description": "The Maybelline Superstay Better Skin Foundation reduces the appearance of spots, bumps, dullness and redness to give you brighter, smoother and more even skin. Features:Longwear that improves skin every minute you're in it: brighter, smoother and more even.With micro-flex technology and the antioxidant power of Actyl-C.Ideal for sensitive skin. Good for all skin types. Medium to full coverageHow to Apply: Apply evenly to your face and blend with your fingers. ",
+ "rating": "3.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "352",
+ "brand": "nyx",
+ "name": "NYX Stay Matte But Not Flat Liquid Foundation",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b5a40b7f3a55feb97f7b16987f1fe8c7_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Stay Matte But Not Flat Liquid Foundation provides full coverage with a mineral enriched matte finish. The oil-free and water-based formula is perfect whether you are in the studio or out and about all day! Features:Oil freeWater basedFull coverageMineral enrichedMatte finishIngredients: Water / Aqua / Eau, Cyclopentasiloxane, Cyclohexasiloxane, Cetyl Ethylhexanoate, Beeswax / Cera Alba / Cire d\u2019Abeille, Disteardimonium Hectorite Propylene Carbonate, Polyglyceryl-4 Isostearate, Cetyl PEG/PPG-10/1 Dimethicone, Hexyl Laurate, Glyceryl Laurate, Stearyl Dimethicone, Polyglyceryl-4 Oleate, Phenoxyethanol,Methylparaben, Tocopheryl Acetate, Ascorbyl Palmitate, Butylparaben, Ethylparaben, Propylparaben. MAY CONTAIN / PEUT CONTENIR (+/-): Titanium Dioxide ( CI 77891 ), Iron Oxides ( CI 77491, 77492, 77499 ).",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "350",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris True Match Lumi Glow Liquid Foundation",
+ "price": 16.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2a38b2c75a247fe6d1038431964dd24c_ra,w158,h184_pa,w158,h184.png",
+ "description": "The ultimate in luminosity. L\u2019Or\u00e9al Paris introduces its first liquid highlighter specifically crafted to highlight key features or illuminate all-over. Designed in Golden, Rose, and Ice shades that flatter every skintone from warm to neutral to cool. Features:Golden Illuminator enhances peachy or yellow tones in warm skintonesRose Illuminator enhances yellow, peachy, pink or blue tones in neutral skintonesIce Illuminator enhances pink or blue tones in cool skintonesHighlight key features or illuminate all-overLightweight formulaFor every skintone & undertoneINGREDIENTS: AQUA/WATER/EAU, DIMETHICONE, GLYCERIN, ALCOHOL DENAT, SYNTHETIC FLUORPHLOGOPITE, DIMETHICONE/POLYGLYCERIN-3, CROSSPOLYMER, ACRYLAMIDE/SODIUM, ACRYLOYLDIMETHYLTAURATE COPOLYMER, PHENOXYETHANOL, ISOHEXADECANE, CAPRYLYL GLYCOL, POLYSORBATE 80, DIPROPYLENE, GLYCOL TIN OXIDE ",
+ "rating": "3.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "349",
+ "brand": "covergirl",
+ "name": "CoverGirl Ready, Set Gorgeous Liquid Makeup 105",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/414eb9180f66dd8a75ddd34b307e3a36_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "CoverGirl Ready, Set Gorgeous foundation provides a flawless, natural look that lasts all day in one simple step!Features:Blends easily to even skin tone for a flawless lookShine free look lasts all dayOil free, won't clog poresApplication Tips: Dot foundation on forehead, cheeks and chin. Blend using fingertips or a makeup sponge. Use with any COVERGIRL Pressed Powder to help your look last.",
+ "rating": "2.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "348",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Stay Fabulous 3-in-1 Foundation",
+ "price": 12.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5b6bdfe942b6ffccbd2ca3f37e500744_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "CoverGirl Outlast Stay Fabulous 3-in-1 foundation is an all-in-one foundation with a long-lasting formula that fuses primer, \nconcealer, and foundation in one easy step! The 3-in-1 formula provides a\n flawless look that lasts all day long.Features: All day, longwear formulaPrimer, concealer, and foundation in oneSmooth, flawless finishFoundation + Sunscreen SPF 20",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "347",
+ "brand": "",
+ "name": "DaLish Silk to Matte Foundation",
+ "price": 44.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e98af12555201b5d34a30e3029191c6d_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This long-wear DaLish foundation starts out silky smooth\u2014best applied using your fingers\u2014and dries to a radiant matte finish. Light coverage ensures a natural-looking result, yet the buildable formula evens tone where you need it, for a perfect, cake-free base. Sunflower seed oil, rich in Vitamins A, D, and E, moisturizes, calms and protects skin without clogging pores. Shade Range: F01 - light \u2013 for very fair skin tones.FO2 - medium \u2013 DaLish's most popular shade. Fair to medium tones.FO3 - dark \u2013 for darker tone skin.Ingredients: Water, Coconut Alkanes, Coco-Caprylare/Caprate, Glycerin, Sorbitan Olivate, Polyglyceryl-3 Diisostearate, Caprylic/Capric Triglycerides, Carthamus Tinctoriur (Safflower) Oleosomes, Cetyl Palmitate, Sorbitan Palmitate, Sorbitan Olivate, Zinc Stearate, Sodium Benzoate, Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus Officinals (Rosemary) Leaf Extract, Benzyl Alcohol, Dehydroacetic Acid, Benzoic Acid, Sorbic Acid, Tocopherol, Jojoba Ester May contain (+/-), Titanium Dioxide CI 77891, Mica CI 77019, Iron Oxide CI 77491, Iron Oxide CI 77492, Iron Oxide CI 77499. *Contains natural antioxidant* PEG free * ",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "345",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Visible Lift Blur Foundation ",
+ "price": 18.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c207687e567547445338321ae28c9b96_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Discover instantly ageless skin. L'Oreal Paris Visible Lift Blur\u2122 features Opti-Blur\u2122 \ntechnology with a cushiony soft texture that glides on to blur the look \nof lines, wrinkles and uneven skin tone in seconds. Skin looks \nflawlessly smooth, instantly perfected.Ingredients: CYCLOPENTASILOXANE,\nAQUA, ETHYLHEXYL\nMETHOXYCINNAMATE,\nDIMETHICONE\nCROSSPOLYMER,\nGLYCERIN, ISOTRIDECYL\nISONONANOATE, PEG-9\nPOLYDIMETHYLSILOXYETHYL\nDIMETHICONE,\nDISTEARDIMONIUM\nHECTORITE,\nPHENOXYETHANOL,\nPEG-10 DIMETHICONE,\nHYDROLYZED WHEAT\nPROTEIN/PVP\nCROSSPOLYMER,\nDISODIUM STEAROYL\nGLUTAMATE,\nCHLORPHENESIN,\nMETHYLPARABEN,\nLYCIUM BARBARUM\nFRUIT EXTRACT,\nACRYLATES\nCOPOLYMER,\nPOTASSIUM SORBATE,\nETHYLPARABEN,\nTOCOPHEROL,\nASCORBYL PALMITATE,\nPANTHENOL, PEG-9,\nALUMINUM HYDROXIDE,\nCITRIC ACID, SODIUM\nPCA, UREA, TREHALOSE,\nPOLYQUATERNIUM-51,\nSOLUBLE COLLAGEN,\nSODIUM HYALURONATE.\n[+/- : CI 77891, MICA,\nCI 77492, CI 77491,\nCI 77499]\n\n\n",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "344",
+ "brand": "covergirl",
+ "name": "CoverGirl Clean Liquid Makeup Normal Skin ",
+ "price": 9.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/19422d63bf6e51c128bc2fa457fa61dc_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Clean Makeup\u2019s formula lets your skin breathe, goes on easily and blends\n perfectly, so the world doesn't see makeup, just the look of great \nskin. The sensitive skin formula is fragrance and oil free, and is \nsuitable for sensitive skin. Features: Light coverage, not heavy or cakeyNon-comedogenic (won't clog pores)Dermatologically tested",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "343",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Liquid Foundation",
+ "price": 42.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/369c6a7dc5ce002dd66b2271256b84c9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Cargo Cosmetics Liquid Foundation is a smooth-as-silk, liquid foundation for sheer coverage that can be \nbuilt as required for professional coverage. It offers a long-wearing \nfinish without the need for heavy powder. The blend-able, lightweight \nand oil-free formulation, makes it ideal for oily skin types, while \ninnovative skin conditioners hydrate dry skin types without adding oil. \nThe sleek, recyclable plastic pouch package is so smart \u2013 it allows you \nto squeeze out just the right amount, using every drop of your purchase.\n It is cleaner and more hygienic than any traditional screw-top or pump \nbottle.\u00a0 \n\n\nFeatures:\nOil-free Anti-oxidants to nourish the skinExcellent cover yet feels weightlessAll skin typesSleek, silver-colored plastic pouch package is so smart \u2013 it allows you to squeeze out just the right amount, use every drop of their \npurchase, and is cleaner and more hygienic than any traditional \nscrew-top or pump bottle.Key Ingredients: Vitamin E is a powerful anti-oxidant, helping the skin to fight the damaging effects of the environmentVitamin C augments the skin\u2019s ability to fight free radicals \nthat are caused by UV rays and an effective treatment of fine lines as \nwell as helping to heal minor woundsGlycerin maintains and boost the skin\u2019s natural water content by acting to draw moisture to the skinShade Range: Ingredients: Water (Aqua), Cyclopentasiloxane, Butylene Glycol, Dimethicone \nCrosspolymer, Octyldodecyl Neopentanoate, Glycerin, Hexyl Laurate, \nPolyglyceryl-4-Isostearate, Cetyl Peg/Ppg 10/1 Dimethicone, Dimethicone,\n Tocopherol, Tetrahexyldecyl Ascorbate, Glycyrrhiza Glabra (Licorice) \nRoot Extract, Peg/Ppg-18 /18 Dimethicone, Nylon-12 Fluorescent \nBrightener 230 Salt, Polyvinylalcohol Crosspolymer, Acetyl Glucosamine, \nPhytantriol, Silica, Lysine, Potassium Chloride, Zinc Chloride, Sodium \nChloride, Magnesium Chloride, Sodium Dehydroacetate, \nTriethoxycaprylylsilane, Disodium Edta, Sodium Hyaluronate, Hexylene \nGlycol, Caprylyl Glycol, May Contain (+/-): Mica, Iron Oxides (Ci 77491,\n Ci 77492, Ci 77499), Titanium Dioxide (Ci 77891) \n\n\n\n\n\u00a0\n",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "342",
+ "brand": "covergirl",
+ "name": "CoverGirl Smoothers All-Day Hydrating Makeup ",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/edd3139c31a9f0561b93d1b68b21a442_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Smooth, even coverage makes imperfections virtually vanish before your \neyes, while the vitamin-enriched formula helps direct moisture to your \nskin\u2019s surface, improving your skin\u2019s condition over time. \nThis liquid foundation glides on effortlessly for lightweight coverage \nthat lasts for hours.Features:HypoallergenicFragrance FreeOil-FreeWon't clog pores",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "341",
+ "brand": "covergirl",
+ "name": "CoverGirl Clean Oil Control Makeup ",
+ "price": 9.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/700e432a504f4784792e84d498c982b7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "With CoverGirl's Clean Oil Control Makeup, you'll get all the shine control you \nwant \u2013 without the drying coverage you don't. The Clean foundation with \ngentle oil absorbing powders and skin conditioners, help prevent \ndryness. Best of all, it won't clog pores, for a clean, shine-free face,\n hour after hour!Features: Oil and fragrance freeNon-comedogenic (won\u2019't clog pores)Dermatologically-testedWon\u2019't clog pores",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "340",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Nude Wear Touch of Glow Foundation",
+ "price": 18.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b94e7fe160e5564b9a8282938d3dabae_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\nPhysicians Formula Nude Wear Touch of Glow Foundation is a weightless fluid foundation that dresses your skin in an illuminating veil of radiance.\u00a0 This airy foundation is formulated with translucent, 100% perfecting nude pigments.Features: HypoallergenicFragrance, Paraben, Gluten & Oil freeNon-ComedogenicDermatologist ApprovedDirections: Shake bottle before each use. Apply foundation directly onto enclosed Perfecting Foundation brush and blend with brush until desired coverage is achieved.Ingredients: Cyclopentasiloxane, Water, Cyclohexasiloxane, Butylene Glycol, Dimethicone, Cetyl PEG/PPG-10/1 Dimethicone, Mica, Silica, Polyglyceryl-4 Isostearate, PEG/PPG-18/18 Dimethicone, Tropaeolum Majus Flower/Leaf/Stem Extract, Lactic Acid, Dimethicone/PEG-10/15 Crosspolymer, PEG-10 Dimethicone, Glycerin, Calcium Aluminum Borosilicate, Sodium Chloride, Nylon-12, Dimethicone/Polyglycerin-3 Crosspolymer, Hexyl Laurate, Tribehenin, Magnesium Sulfate, Polysorbate 20, Synthetic Fluorphlogopite, Disodium Cocoyl Glutamate, Caprylyl Glycol, Ethylhexylglycerin, Hexylene Glycol, Tocopheryl Acetate, Triethoxycaprylylsilane, Sodium Cocoyl Glutamate, Tetrahexyldecyl Ascorbate, Lauroyl Lysine, Dipropylene Glycol, Sodium Citrate, Tocopherol, Phenoxyethanol. May Contain: Iron Oxides, Titanium Dioxide.",
+ "rating": "4.5",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "339",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Wonder Liquid Touch Foundation",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ccb99ad6ac7f31a2a73454bdbda01d99_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Maybelline Dream Wonder Liquid Touch Foundation's breakthrough texture fuses with skin. A finish so impeccable, yet undetectable.Features:Exclusive dropperMedium to full coverage, ideal for normal skinFor Best Results: Shake well. Unscrew cap. Holding dropper vertically, allow foundation to drop onto fingertip. Apply to face as usual.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "338",
+ "brand": "covergirl",
+ "name": "CoverGirl Advanced Radiance Age Defying Liquid Makeup ",
+ "price": 12.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9b13eee88cc626be90db443abb6e8bb9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Take 5 years off the look of your skin.* This smooth liquid foundation \nwith Olay ingredients blends into the skin, covering fine lines and \nwrinkles, for radiant, beautiful coverage that actually helps give you a\n youthful looking appearance. \n * Tested among women 35-65.Features:Protects with SPF 10Suitable for sensitive skinDermatologically-testedNon-comedogenic (won't clog pores)Oil-free\n\n\n\t\n\t\n\t\t\t\n\t\n\t\n\t\n\t\t\n\t\n\t\t\n\t\n\t\n\t \t\t\n",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "337",
+ "brand": "revlon",
+ "name": "Revlon Photoready Airbrush Effect Makeup",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b0d39978c1aeee0d1dd0dfe186e25c75_ra,w158,h184_pa,w158,h184.png",
+ "description": "Revlon Photoready Airbrush Effect Makeup has a revolutionary formula with Light-Filtering\nTechnology delivers a poreless, airbrushed look.\nSoft-focus pigments create a luminous finish.\nyour skin has never looked so flawless.\n Features: High Resolution Shades SPF 20 Medium to Full Coverage\n",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "336",
+ "brand": "revlon",
+ "name": "Revlon Age Defying Firming + Lifting Makeup",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0215f4c5565bd4e8215969c6aa93e89c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon Age Defying Firming + Lifting Makeup is an advanced anti-aging multi-benefit makeup. Firm. Lift. Hydrate. Cover.\n93% of women saw noticeably improved skin.*\nThis all-in-one formula combines hyaluronic acid, a potent dose of \nmoisturizing ingredients and our exclusive Triple Lift Complex\u2122. Relax \nthe look of expression lines, give skin a smooth, tightened feel and \nboost hydration 3X. For a radiant, rejuvenated look.** \n\n*after 8 weeks **skin feels tighter after 4 weeks, rejuvenated after 1Directions: Apply with fingertips, \nsponge or brush, blend foundation onto skin, starting in the center of \nyour face, forehead, nose and chin blending outward\n",
+ "rating": "4.5",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "335",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris True Match Lumi Cushion Foundation",
+ "price": 26.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0350aac08c86bccd97c2a5ca26b15ae9_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Liquid foundation revolutionized \u2013 a fresh luminous glow in a tap. Introducing the new L'Oreal Paris True Match Lumi Cushion, an innovative cushion drenched in liquid foundation. Tap a little for a fresh natural glow, tap on more to build a new level of luminous coverage.Features:Effortless applicationCompletely buildableOn-the-go coverageFormulated with Precise Match Technology to match your skin\u2019s tone and textureAvailable in 8 true-to-skin shadesFinish: fresh & luminousCoverage: sheer to medium, buildable coverageFor all skin types",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "334",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics OneBase for Face",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/04c6f1353fdaf82d48a9d3ecf0d619f4_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Many women don\u2019t need foundation everywhere. \nOneBase\u2122 allows you to cover areas around the eyes, nose and mouth to \nconceal imperfections. It then blends out perfectly to natural skin. Cargo's OneBase combines superior coverage and precision application in the ease of a \nsleek tube and wand combination. It is the perfect product for those who\n do not want full-face foundation coverage \u2013 designed for natural \ncoverage in key facial areas. Nourishing ingredients and conditioning \nproperties provide moisture to the skin. Fragrance free and excellent \nfor delicate, sensitive skin with essential essences that condition the \nskin and will not clog the pores.\u00a0\n\n\nFeatures:\nNourishing ingredients and conditioning properties provide moisture to the skinFragrance -free and excellent for delicate, sensitive skin Sold in a sleek, malleable metal tube with a touch wand that is both easy and practical ALL SKIN TYPESKey Ingredients: Vitamin E helps the skin to fight the damaging effects of the\n environment and helps to moisturize the skin and repair minor damage \nfound on the surface of the skinChamomile Extract is a natural essential essence that is \nideal for dry and sensitive skin types. Its naturally soothing and \nrelaxing properties make it an exceptional ingredient for skin care \nproductsAvocado Extract is rich in natural vitamins that help to nourish the skinShade Range:\u00a0Application: Using enclosed touch wand, dab OneBase to key areas of the face blend out with finger tipsUse under the eyes and on eyelids to brighten the eye area and prime the lids for shadowIf desired, OneBase can be used alone as a foundation replacement for\n key facial areas, or under liquid foundation for full-face coverageIngredients: Water (Aqua), Cyclomethicone, Propylene Glycol, Talc, Triethanolamine, \nPolyglyceryl-3 Diisostearate, Dimethicone Copolyol, Sodium Chloride, \nMethylparaben, Methicone, Propylparaben, Tribehenin, Tocopheryl Acetate,\n Anthemis Nobilis Flower Extract, Aloe Barbadensis Extract, Persea \nGratissima (Avocado) Oil, Retinyl Palmitate, Glycosaminoglycans, Sodium \nChondroitin Sulfate. May Contain (+/-): Titanium Dioxide (CI 77891), \nIron Oxides (CI 77491, CI 77492, CI 77499), Carmine (CI 75470), Chromium\n Oxide Green (CI 77288), Manganese Violet (CI 77742), Ultramarines (CI \n77007).",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "333",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Youthful Wear Spotless Foundation",
+ "price": 18.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/99d879544d3e44842f2437e17c9ef52a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Youthful Wear Spotless Foundation is the 1st-to-Market ultra-fluid foundation delivers skin-perfecting coverage, an incredible sensorial experience and a finish so natural, it looks invisible on the skin.The 35% silicone formula creates a revolutionary, weightless liquid veil texture, combining the best of both worlds: flawless, spotless coverage + the feeling you have no makeup on at all.With just one drop, skin is immediately brighter, smoother and more even!Hypoallergenic. Paraben-Free. Gluten Free. Dermatologist approved. Non-Comedogenic. Clinically Tested. ",
+ "rating": "4.7",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "332",
+ "brand": "annabelle",
+ "name": "Annabelle SkinTrue Foundation",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c1b6c4f04c4f2c43ec1331049e65c280_ra,w158,h184_pa,w158,h184.png",
+ "description": "\n Truly flawless, natural-looking skin is what you can expect \nfrom Annabelle SkinTrue Foundation. Its oil-Free, soft and matte finish makes you feel\n like you're wearing nothing at all, just beautiful skin. It blends \neasily to even out the skin tone yet feels extremely light and natural. \nOil-Free. Shade Range: ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "331",
+ "brand": "almay",
+ "name": "Almay Smart Shade Skintone Matching Makeup ",
+ "price": 17.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/afcbd92c05ea8b6452eabc80e2b9d549_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Almay Smart Shade\u2122 makeup makes it easy to find \u201cthe one\u201d with just three skintone-adjusting shades to choose from, not hundreds! It adjusts to the natural tones and nuances of your skin with breakthrough new Almay ToneMimic\u2122 shade-sensing bead technology which intuitively transforms to your skintone for all day natural looking coverage in your perfect shade. Contains broad spectrum SPF 15. HYPOALLERGENIC. DERMATOLOGIST TESTED. MADE FOR SENSITIVE SKIN.Shade Range: ",
+ "rating": "4.5",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "330",
+ "brand": "l'oreal",
+ "name": "L'Oreal Visible Lift Serum Absolute",
+ "price": 20.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/39be9facd53cf124ff38e9a25de09e10_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Introducing a breakthrough in age minimizing makeup.Only Visible Lift Serum Absolute features an age reversing serum of 5 ingredients in 1 luminous makeup. This new makeup instantly evens skin tone with a luxuriously lightweight formula that doesn't settle into lines and wrinkles.In 4 weeks, the potent formula addresses 5 sighs of aging to visibly transform skin to smoother, firmer, brighter, even, flawless.5 proven results :\n\n45% more even skin tone\n72% saw more youthful skin\n75% reduction inf ine lines and wrinkles\n79% saw fewer imperfections\n90% saw smoother skin\n\nFinish : LuminousCoverage : MediumSkin Type : All skin types",
+ "rating": "4.3",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "329",
+ "brand": "almay",
+ "name": "Almay Smart Shade Anti-Aging Skintone Matching Makeup",
+ "price": 17.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/39ef46015c299f19fad898e6ce14f131_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Almay Smart Shade\u2122 anti-aging makeup makes it easy to find \u201cthe one\u201d with just three skintone-adjusting shades to choose from, not hundreds! It adjusts to the natural tones and nuances of your skin with breakthrough new Almay ToneMimic\u2122 shade-sensing bead technology which intuitively transforms to your skintone for your perfect shade while helping to erase flaws and imperfections. 4 out of 5 women saw an instant reduction in the appearance of fine lines and wrinkles. Helps protect against sun damage with broad spectrum SPF 20. HYPOALLERGENIC. DERMATOLOGIST TESTED. MADE FOR SENSITIVE SKIN. Shade Range: ",
+ "rating": "4.2",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "328",
+ "brand": "almay",
+ "name": "Almay Truly Lasting Color Makeup",
+ "price": 17.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f080c72085d7746687375cdcfdf62a94_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Longwear meets skincare.tlc truly lasting color makeup delivers up to 16 hours of flawless coverage that won't rub off - even in heat and humidity. Plus, it nourishes skin with antioxidant green tea to protect, vitamin E to help smooth and lemon extract to brighten... for all day, natural radiance. Now, that's tlc.hypoallergenic \u2022 oil-free \u2022 won't clog pores \u2022 dermatologist tested",
+ "rating": "4.5",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "327",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Stay Fabulous 3-in-1 Foundation ",
+ "price": 12.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f047b24948adf8c9d5f6b795db107920_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "CoverGirl Outlast Stay Fabulous 3-in-1 foundation is an all-in-one foundation with a long-lasting formula that fuses primer, \nconcealer, and foundation in one easy step! The 3-in-1 formula provides a\n flawless look that lasts all day long.Features: All day, longwear formulaPrimer, concealer, and foundation in oneSmooth, flawless finishFoundation + Sunscreen SPF 20",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "326",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris True Match Lumi Healthy Luminous Foundation",
+ "price": 20.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7d8276b94863d7cff212d0161b5c632e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Finally, makeup that creates skin so healthy - it's luminous.True Match Lumi Healthy Luminous Makeup combines 3 powerful ingredients that work to improve your complexion the more you wear them. 40% pure water for all-day hydration;Antioxidants and Vitamins C and E for improved clarity and skin tone and;Liquid Light Technology for an instant, luminous glowIsn't it time your met your match?Additional Features:\u00a0SPF 20Lightweight, buildable coverage that lasts up to 8 hoursFor all skin typesSafe for sensitive skinNon-Comedogenic. Dermatologist tested. Allergy tested. ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "325",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Pro-Matte Foundation",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/268da4d7967fad9c153af24ee8d2e026_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Longwear foundation without the compromise. Never masky, never cakey, never dull \u2013 Infallible Pro-Matte\u2122 is L\u2019Or\u00e9al\u2019s next generation of longwearing makeup.The micro-sponge technology absorbs excess oil and shine to create a dimensional matte finish without the need for a heavy or caked-on look. Use a sponge to buff it out for a sheer and natural look or apply in layers for more complete coverage. ",
+ "rating": "4.3",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "324",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Makeup for Normal / Dry Skin",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/197e268a36cdc0b05fc8758a2d959485_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon ColorStay Makeup provides longwearing coverage with a lightweight \nformula that won\u2019t cake, fade, or rub off. With Time Release \nTechnology, this oil-free, moisture-balance formula is especially \nformulated for normal or dry skin to continuously provide hydration.Features: Makeup feels comfortable and wears for up to 24 hours\nMedium to full coverage\nComes in a range of beautiful shades\n\n\t ",
+ "rating": "4.6",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "323",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Foundation",
+ "price": 39.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/965ec1b8b64ab44496aa44f6b4a1ea01_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Dr. Hauschka Foundation features pomegranate essence, macadamia and coconut oil that preserve the moisture \ncontent of the skin and offer it protection. Available in five shades, \nthe foundation does not cover the skin but instead balances out \nunevenness, giving the complexion a smooth, vibrant look.Features: Truly natural and/or organic cosmetics, certified to NATRUE and/or BDIH standardsFree from synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGVeganDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients: Water (Aqua), Alcohol, Simmondsia Chinensis (Jojoba) Seed Oil, Anthyllis Vulneraria Extract, Cocos Nucifera (Coconut) Oil, Caprylic/Capric Triglyceride, Glycerin, Cetearyl Alcohol, Punica Granatum Fruit Extract, Prunus Armeniaca (Apricot) Kernel Oil, Butyrospermum Parkii (Shea) Butter, Macadamia Ternifolia Seed Oil, Daucus Carota Sativa (Carrot) Root Extract, Euphorbia Cerifera (Candelilla) Wax, Fragrance (Parfum), Limonene*, Linalool*, Geraniol*, Citronellol*, Benzyl Benzoate*, Benzyl Salicylate*, Farnesol*, Coumarin*, Citral*, Eugenol*, Benzyl Alcohol*, Bentonite, Xanthan Gum, Sodium Cetearyl Sulfate, Silica. [May contain (+/-) Mica, Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007)].*from natural essential oils ",
+ "rating": "4.7",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "322",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Flawless Finish Foundation",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f930f8fcd14f31ce1700faf24c4606f5_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Achieve a flawless complexion with the silky smooth e.l.f. Studio \nFlawless Finish Foundation. The lightweight and oil-free formula blends \nin naturally for a beautiful semi-matte finish. This liquid foundation \napplies easily and lasts all day for visibly brighter and radiant \nlooking skin. Using e.l.f.'s Flawless Finish Foundation not only restores \nuneven skin textures and tones, but most importantly, the SPF 15 \nprotects your skin against harmful sun damage!Shade Range: \n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tACTIVE INGREDIENTS: Octyl Salicylate 2%, Titanium Dioxide 5.5% INACTIVE INGREDIENTS:\n Water (Aqua), Cyclopentasiloxane, Isododecane, Hydrogenated \nPolyisobutene, Cetyl PEG/PPG-10/1 Dimethicone, Polyglyceryl-4 \nIsostearate, Polymethyl Methacrylate, Sorbitan Sesquiisostearate, \nButylene Glycol, Talc, Dimethicone, Disteardimonium Hectorite, Magnesium\n Sulfate, Glycerin, Phenoxyethanol, Synthetic Beeswax, Potassium \nSorbate, Propylene Carbonate, Boron Nitride, Barium Sulfate, Caprylyl \nGlycol\nMay Contain: Iron Oxides (CI 77491, CI 77492, CI 77499)\n\n\t\t\t\t\t\n\t\t\t\t",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "321",
+ "brand": "maybelline",
+ "name": "Maybelline Dream Liquid Mousse",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1ca6a4a442b9aa6b5f3d94da77d8846c_ra,w158,h184_pa,w158,h184.png",
+ "description": "Airbrushed perfection made possible:Air-whipped liquid makeup for 100% poreless skin\n\nBreakthrough finish cushions and smooths for the most flawless, luminous coverage\nLightweight air-whipped formula blends to virtually eliminate pores and imperfections\nInnovative shade-match pump makes finding your perfect shade a dream \n",
+ "rating": "4.4",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "320",
+ "brand": "maybelline",
+ "name": "Maybelline FIT ME! Matte + Poreless Foundation",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/257993e12625cc45a72ec03636ffa5c5_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Maybelline FIT ME! Matte + Poreless Foundation goes beyond skin tone\n matching to fit the unique texture issues of normal to oily skin for \nthe ultimate natural skin fit.\n\nWhile some foundations can exaggerate pores and oily skin, only Maybelline's \npore-minimizing foundation contains their genius blurring micro-powders \nthat erase pores and absorb oil for a naturally matte and \nporeless-looking finish.Dermatologist and allergy tested. Does not clog pores. Oil-free.\n\n \n",
+ "rating": "4.4",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "319",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Makeup for Combination / Oily Skin",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/844f8a41bfd962e75295db3b75ad3167_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon ColorStay Makeup\u00a0 provides longwearing coverage with a lightweight \nformula that won\u2019t cake, fade, or rub off. With Time Release Technology\n specifically formulated for combination or oily skin to control oil \nabsorption and shine. Your look stays flawless throughout the day. Features: Makeup feels comfortable and wears up to 24 hours.Medium to full coverage.Comes in a great range of beautiful shades. \n",
+ "rating": "3.8",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "318",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris True Match Super Blendable Makeup ",
+ "price": 18.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c71a2c6a4f7d41ceb60f068780bcfba5_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "True Match Super-Blendable Makeup precisely matches your skin\u2019s tone \nand texture and coordinates perfectly with True Match Powder, Blush and \nConcealer. Formulated with Precise Match Technology so you can control \ncoverage and fine-tune it.The ultra-pure formula contains no oils, \nfragrances, or pore-clogging fillers, so all you see is beautiful, \nradiant, flawless skin.\nFeatures:Finish: NaturalCoverage: Light to mediumSkin Type: For all skin types",
+ "rating": "4.1",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "317",
+ "brand": "maybelline",
+ "name": "Maybelline Fit Me Foundation with SPF",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/eccb88d484b8c929fd349b0995a5dba2_ra,w158,h184_pa,w158,h184.png",
+ "description": "It\u2019s face makeup that fits you!Features: No oils, no waxes, no nonsenseNatural, Light to medium coverage that leaves skin the way it was meant to be. Fresh, breathing, flawless.Exclusive transluscent base and lightweight pigments allow skin\u2019s natural highs and lows to show through.New shades formulated specifically for women of color contain \nrevolutionary 5-D pigment technology to balance your skin\u2019s authentic \ntones and highlights.SPF 18",
+ "rating": "3.8",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": []
+ },
+ {
+ "id": "316",
+ "brand": "pure anada",
+ "name": "Pure Anada Smooth & Conceal Liquid Foundation",
+ "price": 25.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/066dd839fc77495347ecfe44a4636e57_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Smooth and conceal fine lines and imperfections with this \nmoisturizing, full coverage formula from Pure Anada. A non-greasy texture with the \nskin-loving benefits of virgin, organic coconut oil. Infused with Argan\n & Sea Buckthorn, this truly is superfood for your skin!\nApply directly to clean, moisturized skin, making sure to blend well.\nFor less coverage, you may mix the foundation with your favorite moisturizer.Shade Range: Arctic Alabaster -\u00a0 A porcelain shade of foundation for the\u00a0very lightest of\u00a0skin tones.\u00a0A white shade of foundation slight\u00a0pink undertones, Arctic Alabaster is perfect for people who can never find a foundation light enough for their complexion.Beige in Banff - This is a medium shade of foundation for a lady who has a deep pink complexion.\u00a0 It also blends well on tanned Caucasian skin with beige, (as opposed to gold) undertones.Prairie Rose - This is a cool beige shade in the light range. It suites the fair complexion that has obvious pink undertones.Atlantic Bisque - A popular fair shade of foundation due to its balanced beige undertones.Sunkissed Canadian - This shade is perfect for a fair complexion with a bit of a \"pink\" tan! It has warm rose, rather than gold undertones. Our most popular shade!Pacific Tan - A neutral shade that exudes more bronze than golden tones for women with tanned complexions.Ivory Chinook - This is a warm neutral shade that looks very natural on a variety of light skin types. It helps tone down redness and even skin tone. Soft Wheat - This is a warm neutral shade that is darker than Ivory Chinook. Its warm undertones help tone down redness and even skin tone.Amber Honey - This foundation suits Caucasian women with very dark, golden tanned skin. Because of it's high concentration of yellow pigment, it can also be worn by certain ethnic groups.Flaxen Field - A cool, olive shade of foundation for light to medium skin tones. It is perfect for people who find other shades too \"orange\". Suitable for some Asian complexions.Niagara Fawn - A cool olive shade of foundation for medium to deep skin tones.\u00a0 For deep olive, tanned complexions and many other ethnicities.Cappuccino - A deep, warm olive foundation.Swiss Chocolate - A neutral chocolate brown that suits many deep skin tonesEbony - A deep brown/black shade of foundation for the darkest of skin tones.Ingredients: Water (Aqua), Caprylic / Capric \nTriglyceride, (Derived from Coconut), Cetearyl Olivate, Sorbitan \nOlivate, Simmondsia Chinensis (Organic Jojoba) Seed Oil, Cocos Nucifera \n(Virgin Organic Coconut Oil), Ricinus Communis (Castor Seed Oil), \nArgania Spinosa (Argan Oil), Hippophae Rhamnoides (Sea Buckthorn), Cetyl\n Alcohol, Mica, Titanium Dioxide, Zinc Oxide, Iron Oxides, Ultramarines,\n Sorbitol, Leuconostoc/Radish Root Ferment Filtrate",
+ "rating": "4.1",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "315",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Tinted Moisturizer",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fa4c4e189875760b7d75f327706096f9_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Achieve even skin tone \nand naturally radiant skin with this moisturizing sheer tint of color. \nThe smooth formula enhances your complexion with the nourishing key \ningredients Aloe, Cucumber and Vitamins A, C & E.Shades: \n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tACTIVE: Benzophenone-3, Ethylhexyl Isopalmitate, Titanium Dioxide. \nINACTIVE: Water, Mineral Oil, Cyclomethicone, C12-15 Alkyl Benzoate, \nPropylene Glycol, Dimethicone, Steareth-21 Cetearyl Alcohol, \nCeteareth-2, Glyceryl Stearate, Xanthan Gum, Methylparaben, \nPropylparabem, Tocopherol(VE), Retinyl Acetate(VA), Ascorbyk \nPalmitate(VC), Aloe Barbadensis (Aloe Vera) Leaf Juice, Cucumis Sativus \n(Cucumber) Fruit Extract, MAY CONTAIN: Iron Oxides (CI 77491, CI 77492, \nCI 77499), Titanium Dioxide (CI 77891)\n\t\t\t\t\t\n\t\t\t\t",
+ "rating": "3.8",
+ "category": "liquid",
+ "product_type": "foundation",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "314",
+ "brand": "almay",
+ "name": "Almay Intense i-Color Everyday Neutrals for Blue Eyes",
+ "price": 10.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d9b88855df583049fa9f995c88781338_ra,w158,h184_pa,w158,h184.png",
+ "description": "Almay Intense i-Color Everyday Neutrals are expertly coordinated palettes to make your eyes look brighter, bolder and more beautiful.Features:Perfectly enhances your eye color for every occasionEye-shaped palette allows for easy applicationCrease-resistant for all-day wearOphthalmologist testedSuitable for sensitive eyesHow to Apply:Apply bottom shade all over lidBlend the center shade into the creaseSweep top shade on to brow bone to highlight",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "313",
+ "brand": "covergirl",
+ "name": "CoverGirl Trunaked Eyeshadow Palettes in Roses",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e8be715d17f0bcc25ffe81f4286ffac0_ra,w158,h184_pa,w158,h184.png",
+ "description": "CoverGirl Trunaked Eyeshadow Palettes feature universally flattering, neutral shades that are made to be blended together, so you can mix and match colors and always look flawless. Features:Each eye shadow palette comes with 8 shadesEach shade is highly pigmentedEndless possibilities for neutral daytime to dramatic nighttime looks",
+ "rating": "5.0",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "312",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Baked Eyeshadow Trio ",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/302303dd9945c08bc0334544602599be_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Three gorgeously coordinated colors come together to create a stunning \nlook. Baked in an oven, these eyeshadows offer rich pigmentation for a \nbeautiful effect. Infused with active key ingredients Jojoba, Rose, \nSunflower, Apricot and Grape to nourish and hydrate the skin. The \nlong-lasting and shimmering color can be worn wet for a vibrant effect \nor dry for sheer pigmentation, offering a variety of gorgeous eye looks!Ingredients: Mica, Talc, Bismuth Oxychloride, \nEthylhexyl Palmitate, Paraffinum Liquidum (mineral oil), Dimethicone, \nMagnesium Aluminum Silicate, Tocopheryl Acetate, Simmondsia Chinensis \n(Jojoba) Seed Oil, Rosa Canina (Rose Hip) Fruit Oil, Helianthus Annuus \n(Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Vitis \nVinifera (Grape) Seed Oil, Phenoxyethanol, Methylparaben. May Contain: \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491 , CI 77492 , CI \n77499), Ultramarine Violet (CI 77077), Manganese Violet (CI 77742), \nFerric Ferrocyanide (CI 77510), Tin Oxide (CI 77861), Yellow No.5 Lake \n(CI 19140), Red No.40 Lake (CI 16035), Blue No.1 Lake (CI 42090). ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "311",
+ "brand": "l'oreal",
+ "name": "L'Oreal Colour Riche La Palette Nude in Nude 02",
+ "price": 29.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d6bf791aee472d5cc9d402a4227b10b8_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Inspired by makeup designers 'Must Have' palettes, the L'Oreal La Palette Nude \noffers everything you need to master the art of nude eyeshadow. Get Makeup \nDesigner Nude looks curated exclusively for each palette with step by \nstep instructions and live tutorials!Features: 10 highly pigmented shades range \nfrom light to dark to flatter every skin tone in 3 shadow finishes: \nshimmery satin, buttery matte & lustrous sheenEye-designer brush & mirror for effortless application\n\n\n\t\t",
+ "rating": "4.0",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "310",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Eye Shadow ",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0a001646e27fecf93ffd46d731ae0d1f_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Dr. Hauschka Eyeshadow Solos incorporate the finest mineral pigments\u00a0with real silk to create make-up that is kind to the delicate skin\u00a0on your eyes.\u00a0 Nine gentle tones enhance the natural beauty of\u00a0your eyes.\u00a0 Added medicinal plant extracts nurture the sensitive\u00a0skin around your eyes for added radiance and shine.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "309",
+ "brand": "maybelline",
+ "name": "Maybelline Expert Wear Eye Shadow Quad ",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c924006882e8e313d445a3a5394e4729_ra,w158,h184_pa,w158,h184.png",
+ "description": "Easy to use, lots to choose!Maybelline Expert Wear Eye Shadow \nQuads have 4 coordinating shades with step by step application guide \nmakes shadow easier than ever. The eyeshadows glide on effortlessly with\n superior smoothness and the velvet-tip applicator blends without \ntugging or pulling. Safe for sensitive eyes and contact lens wearers, \nophthalmologist-tested.For best results sweep the brush 4 times:Apply base color. Sweep shade on lid. Contour crease and blend. Line around eye. ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "308",
+ "brand": "sante",
+ "name": "Sante Eyeshadow Trio",
+ "price": 24.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a7bde92c185b56ec210838dea41d9bec_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Sante Eyeshadow Trios each have three complementary shades for your lid,\n crease and highlight. Plus they are formulated with organic jojoba and \nchamomile. Vegan and gluten-free. Not \ntested on animals. \t\t\t\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "307",
+ "brand": "maybelline",
+ "name": "Maybelline Eyestudio Color Tattoo Concentrated Crayon",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3f9f894b56e0616e44c5ee01dea45217_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Eyestudio Color Tattoo Concentrated Crayons give you high-intensity color that looks vibrant all-day long.Features:Smooth, soft creamy finishPlayful intense colorsAll day tattoo tenacity. Playful color intensity. In an easy glide on crayon.",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "306",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Extreme Shimmer Shadow & Liner Palette ",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cefc37500e17a39af22b2be42ac00abf_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Physicians Formula Shimmer Strips Extreme Shimmer Shadow & Liner Palette gives you 6 shades to enhance and illuminate your eyes for the perfect look!Features: Wet & Dry application for 2 finishesLong wearing, blendable formula for up to 24hr wearHypoallergenicParaben & gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearerDirections: Sweep medium shade over lid as base.\u00a0 Apply darkest shade to upper and lower lash line with pointed tip of applicator to line eyes. For added definition, apply darkest shade in the contour of upper eyelid.\u00a0 To intensify color wet applicator, use lightest shade to highlight brow bone.Ingredients: Mica, Bis-Diglyceryl Polyacyladipate-2, Calcium Aluminum Borosilicate, Caprylic/Capric Triglyceride, Diisostearyl Malate, Silica, Talc, Phenyl Trimethicone, Calcium Sodium Borosilicate, Dimethicone, Boron Nitride, Caprylyl Glycol, Dimethicone/Vinyl Dimethicone Crosspolymer, Ethylhexylglycerin, Magnesium Stearate, Nylon-12, Sodium Dehydroacetate, Synthetic Fluorphlogopite, Tin Oxide, VP/Hexadecene Copolymer. May Contain/Peut Contenir: Iron Oxides, Manganese Violet, Titanium Dioxide.",
+ "rating": "4.5",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "305",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Color Icon Eyeshadow Trio ",
+ "price": 4.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/07ea2b4f18a9b6e9d174352220462bd8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This coordinating trio of shades takes the guesswork out of creating the perfect \neye look. These \"how to\" palettes are created to highlight, define, and accentuate specific eye colors to create unique looks.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "304",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Essential Little Black Beauty Book Eye Edition",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/19b83ad09d00473a3258b74f69dfbb20_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This convenient 48-piece makeup collection for your eyes allows you to \nhave your Little Black Beauty Book readily available anytime, anywhere! \nKeep the Beauty Book in your purse, at home or in the office so you can \nbe your own makeup artist whenever, wherever. This full assortment of 48\n eyeshadow colors allows you to create a look that reflects your \npersonal style for any occasion. The small, sleek design is great for \non-the-go beauty touch ups. Each book includes: 48 gorgeous eyeshadow \nshades, a built-in mirror, and 1 dual-ended applicator.Ingredients: Talc, Mica, Zinc Stearate, Kaolin,\n Paraffinium Liquidum(Mineral Oil), Petrolatum, Bis-Diglyceryl \nPolyacyladipate-2, Methylparaben, Propylparaben. May Contain: Iron \nOxides (CI 77491 , CI 77492 , CI 77499), Manganese Violet (CI 77742), \nMica (CI 77019), Titanium Dioxide (CI 77891), Yellow No.5 Lake (CI \n19140), Red No.40 Lake (CI 16035), Ultramarine Violet (CI 77077), Blue \nNo.1 Lake (CI 42090) \n\t\t\t\t\t\n\t\t\t\t",
+ "rating": "4.0",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "303",
+ "brand": "milani",
+ "name": "Milani Everyday Eyes Powder Eyeshadow Collection",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8a7832489e0792cb0a1e4d4d24bf3efd_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "With Milani Everyday Eyes Powder Eyeshadow Collection you can contour, \ncolor and create endless looks with a first-of-its-kind eye contouring \nand highlighting collection.\u00a0 Each Everyday Eyes eyeshadow palette comes\n with six richly pigmented shades and a step-by-step guide for \nprofessional-looking results. Each shade is expertly coordinated to work\n well in any order to create brilliantly beautiful, one-of-a-kind \nstyles.\u00a0 Dual-ended, pro-artistry brush included. Application: Step 1:HIGHLIGHT-Sweep BASE color across lid from lash line to brow boneStep 2:CONTOUR-Apply CONTOUR shade under the brow bone, blending from inner to outer cornerStep 3:COLOR-Tap LID color onto center of lid, blending wellStep 4:DEPTH-Apply CREASE color to outer corner blending through creaseStep 5:BRIGHTEN-Tap SPECIALTY shade lightly on inner corner of eyeStep 6:DEFINE-Apply LINER color close to upper and lower lash lines\u00a0Ingredients: Mica\n (CI 77019), Talc, Cetearyl Isononanoate, Dimethicone, Boron Nitride, \nZinc Stearate, Sodium Dehydroacetate, Phenoxyethanol, Sorbic Acid, Tin \nOxide, Ethylene/Acrylic Acid Copolymer, Poloxamer 338, Silica. +/- May \nContain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, \nCI 77499).",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "302",
+ "brand": "almay",
+ "name": "Almay Intense i-Color Liquid Shadow + Color Primer",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/757cf4197fe84ed9c1e2c21ed63d1be3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "One innovative product, two ways to double the impact of your unique eye \ncolor! Simply smooth the silky, weightless liquid over lids for a \nshimmering splash of eye-enhancing color, or top with powder shadow for \nan even bolder, longer lasting look. Either way, feel confident knowing \nthat the built-in primer ensures that the multi-dimensional finish won\u2019t\n crease, fade, or smudge all day!How to Use: Apply to the inner corner of the lid and blend outwards using fingers. \nApply more for a bolder pop of color, or layer under your favorite \nintense i-color shadow kit for an even more intense look.\n ",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "301",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Custom Shadow & Liner ",
+ "price": 15.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9cd3466b7ce77448e4fd11338f0d7f20_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Shimmer Strips Custom Shadow & Liner Nude \nCollection: Classic Nude is a modern and versatile palette for nude \nshades. Modern, \"greige\" shades create a nude look with a classic, cool appeal. \n Wet & Dry application for two finishes: wet for dramatic, intense \ncolor with ultra long-lasting wear. Transforms shadow into a liner. Dry \nfor a softer result.Directions: To Create the Classic Nude Eye: Sweep medium shade over lid as base. Apply darkest shade to upper & lower lash line with pointed tip \nof applicator to line eyes. For added definition, apply darkest shade \nin the contour of upper eyelid. To intensify color, wet applicator.Use lightest shade to highlight brow bone.Ingredients: Mica, Polybutene, Ethylhexyl Palmitate, Butyrospermum Parkii (Shea) Oil,\n Pentaerythrityl Tetraisostearate, Synthetic Wax, Silica, Dimethicone, \nLauroyl Lysine, Beeswax, Dimethicone/Methicone Copolymer, \nEthylhexylglycerin, Kaolin, Tocopheryl Acetate, Phenoxyethanol May \nContain: Carmine, Ferric Ferrocyanide, Iron Oxides, Manganese Violet, \nSynthetic Fluorphlogopite, Tin Oxide, Titanium Dioxide, Ultramarines, \nBlue 1 Lake, Red 40, Yellow 5 LakeHypoallergenic. Fragrance-free. Paraben-Free. Gluten Free. \nDermatologist approved. Safe for sensitive eyes and contact lens \nwearers.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "300",
+ "brand": "covergirl",
+ "name": "CoverGirl Eye Enhancers 1-Kit Shadow ",
+ "price": 4.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e1e4b13a264fe9a7cbccaea373c24d9d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "A simple, single shade with an advanced, stay-put formula!Mix and match \nall the CoverGirl Eye Enhancers 1-Kit Shadows the way you want to create your own combos with matte, pearly or \nsparkly shades! They blend easily to let the natural beauty of your eyes\n come through.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "299",
+ "brand": "covergirl",
+ "name": "CoverGirl Eye Enhancers 3-Kit Shadows ",
+ "price": 6.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e48da5acde28bd3b1bcc2bff5b9d4a56_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This collection of great shades is handpicked by CoverGirl's makeup pros and \ndesigned to make your eye look go from day to night. They blend \neffortlessly to bring your eyes out beautifully, without overshadowing. \nExperiment using them together or as single shades.Features:Matte, pearl, and sparkle shadesHandpicked by CoverGirl's makeup pros to make your eye look go from day to nightBlends easily without overshadowingTips for Use:\n \n \n \n \n \n Dust the most neutral shadow in your 3-Kit palette from your lash line to brow line. Blend the second-darkest shade along the crease of your eyes. Run the darkest shade along your upper and lower lash lines. Finish the look with two coats of mascara. \n \n \n \n ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "298",
+ "brand": "revlon",
+ "name": "Revlon PhotoReady Primer, Shadow + Sparkle Palette",
+ "price": 14.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b35505ef545ea7e478d0da882d8e93d8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Easily create limitless looks with this one Revlon PhotoReady Primer, Shadow + Sparkle Palette.\nThe palette features a primer, 3 highly pigmented shadows, and a \nsparkle top coat. You can use wet for more colour intensity and add the sparkle top \ncoat for a multi-dimensional, intensely shimmering effect.Shadow Shades:",
+ "rating": "5.0",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "297",
+ "brand": "nyx",
+ "name": "NYX Hot Singles Eye Shadow ",
+ "price": 5.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/355a8d67acc1b30be6be8dce5b1c8ef0_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX\u2019s Hot Singles are intense! Powerfully loaded with pigments, this versatile formula lets you make a statement for any occasion. \u00a0Features:Stunning range of highly-pigmented shadows in shimmer, matte, metallic and iridescent finishesCreates a variety of eye makeup looksNYX\u2019s unique formulation is easy to blend and build onHow to Use: Use with eye shadow base. Apply choice of colors to create edgy, natural and artistic eye looks.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "296",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips All-in-1 Custom Nude Palette ",
+ "price": 16.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/62ffaaf4299a6b30dc048c689bd064d0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Shimmer Strips All-in-1 Custom Nude Palette is the must-have nude essentials kit for face and eyes with 12 shades of nude.\u00a0 Flawless blending, pure color and micro-smooth pearlescent formula makes skin look glowing, radiant and perfected.Directions: Sweep brush over entire palette for an all-over glow. Use each shade individually as eye shadow & eyeliner. See inside compact for endless application possibilities! Hypoallergenic. Paraben-Free. Gluten Free. Non-Comedogenic. Dermatologist approved. Ingredients: Ingredients: Mica, Diisostearyl Malate, Silica, Dimethicone, Dimethicone / Methicone Copolymer, Ethylhexyl Palmitate, Lauroyl Lysine, Methicone, Polybutene, Synthetic Wax, Tin Oxide, Ethylhexylglycerin, Phenoxyethanol. May Contain: Carmine, Iron Oxides, Red 40 Lake, Titanium Dioxide - Sweep\n brush over entire palette for an all-over glow. Use each shade \nindiviually as eye shadow & eyeliner. See inside compact for endless\n application possibilities! - See more at: \n//www.physiciansformula.com/en-us/productdetail/product-lines/shimmer-strips/06240.html#sthash.U35jHbM7.dpuf",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "295",
+ "brand": "maybelline",
+ "name": "Maybelline The Nudes Eye Shadow Palette",
+ "price": 17.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/201350fd3e173307ade44520dc87d8fb_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline The Nudes Eye Shadow Palette let's you create looks from day to night. Deep to light. So try it out and create your ideal eye look today!Features: \n\t\t\n\t\t\t\n\t\t\t\t13 looks in one Expert Wear eyeshadow palette\nExtraordinary Colour, from soft highlights, to medium bronze, to rich black\nFrom Maybelline's ultra-blendable pigments\nLong Wear\n\t\t\n\t\t\t\n\t\t\t\t",
+ "rating": "2.0",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "294",
+ "brand": "pacifica",
+ "name": "Pacifica Super Powder Supernatural Eye Shadow Trio",
+ "price": 14.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7fb45dded4fbe7603a9aa9f56a65eeca_ra,w158,h184_pa,w158,h184.png",
+ "description": "Pacifica Super Powder Supernatural Eye Shadow Trio Breathless, Glowing, Sunset is an innovative natural eye shadow that applies like a cream and sets to a powder, allowing for a smooth, velvety application that blends easy and provides a long-lasting, creaseless, flawless finish. Anti-aging ingredients including jojoba and argan oils.Features:100% veganCruelty-freeFormulated witout carmine, FD&C color, parabens and petroleumIngredients: Simmondsia chinensis (jojoba) seed oil, euphoriba cerifera (candelill) wax, copernicia prunifera (carnauba) wax, butyrospermum parkii (shea butter), oryza sativa (rice starch), helianthus annuus (sunflower) seed oil, argania spinosa (argan) kernal oil, tocopherol (vitamin e), kaolin. May contain: titanium dioxides (ci 77492, ci 77491, ci 77499), ultramarines, manganese violet.",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "293",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Mad for Matte Eyeshadow Palette ",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fa63b99f27bbcb78998db3f2436b4764_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Achieve both beautifully bold or subtle everyday eye looks with these perfectly curated 10 matte eyeshadow shades. This collection of hues is ideal for shading, highlighting, and defining the eyes. The satin matte shadows can be used as a liner, on the lid, and in the crease of the eye for an expertly contoured and blended look. How To Use: Apply dry all over the eyelid with a brush for a subtle wash of colour or apply wet for a vibrant effect.\u00a0 Start with a light color and apply the shade all over your eyelid as a base.\u00a0 Next, apply a medium shade over the eyelid and the eye crease using the crease brush.\u00a0 Finally, apply the darkest shade over your eyelid. Ingredients: Talc, Mica, Silica, Magnesium Stearate, Nylon-12, Ethylhexyl Palmitate, Dimethicone, Phenoxyethanol, Caprylyl Glycol. May Contain:Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Manganese Violet (CI 77742), Red 40 Lake (CI 16035), Ultramarines (CI 77007) ",
+ "rating": "4.4",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "292",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Baked Eyeshadow Trio",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1b860dc0654fdc410beea95c6ba89b8d_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Three gorgeously coordinated colors come together to create a stunning \nlook. Baked in an oven, these eyeshadows offer rich pigmentation for a \nbeautiful effect. Infused with active key ingredients Jojoba, Rose, \nSunflower, Apricot and Grape to nourish and hydrate the skin. The \nlong-lasting and shimmering color can be worn wet for a vibrant effect \nor dry for sheer pigmentation, offering a variety of gorgeous eye looks!Ingredients: Mica, Talc, Bismuth Oxychloride, \nEthylhexyl Palmitate, Paraffinum Liquidum (mineral oil), Dimethicone, \nMagnesium Aluminum Silicate, Tocopheryl Acetate, Simmondsia Chinensis \n(Jojoba) Seed Oil, Rosa Canina (Rose Hip) Fruit Oil, Helianthus Annuus \n(Sunflower) Seed Oil, Prunus Armeniaca (Apricot) Kernel Oil, Vitis \nVinifera (Grape) Seed Oil, Phenoxyethanol, Methylparaben. May Contain: \nTitanium Dioxide (CI 77891), Iron Oxides (CI 77491 , CI 77492 , CI \n77499), Ultramarine Violet (CI 77077), Manganese Violet (CI 77742), \nFerric Ferrocyanide (CI 77510), Tin Oxide (CI 77861), Yellow No.5 Lake \n(CI 19140), Red No.40 Lake (CI 16035), Blue No.1 Lake (CI 42090). \n\t\t\t\t\t\n\t\t\t\t",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "291",
+ "brand": "maybelline",
+ "name": "Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow Leather",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cf21d194ab14ee3c527d02682c358a7a_ra,w158,h184_pa,w158,h184.png",
+ "description": "\n \n\tSo rich. So creamy. Only Maybelline's cream gel eye shadow formula gets the look of couture leather so right!\n\t\t\n\t\t\t\n\t\t\t\tDare to wear Maybelline Color Tattoo leather 24HR long wear eye shadow.Features: Ink technology creates 24HR wear shadow for our most intense, long-lasting color saturationCream eye shadow formula glides on without creasing and keeps color vibrantOphthalmologist-tested. Safe for sensitive eyes and contact lens wearers\n\t\tShade Range: \n\t\n\n \n ",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "290",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Eye Shadow Palette",
+ "price": 43.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/be56826f6ed902203a0616930c4de5ea_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Four matte shades enhance the natural beauty of your eyes, allowing for a combination of elegant looks that take eyes from day to night.\u00a0 Silk powder offers pH balancing and protective qualities.\u00a0 Apply eyeshadow to the eyelid using the applicator, starting at the inside corner and working outwards. When using two colours, apply the darker shade to the outer corner and the lighter shade to the inner corner of the eye, or use as a highlighter under the eyebrow arch.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditions",
+ "rating": "4.8",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "289",
+ "brand": "covergirl",
+ "name": "CoverGirl Eye Enhancers 4-Kit Shadows",
+ "price": 6.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7d13530ed0a2ec9edc3736dcc0944a6b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This collection of great shades is handpicked by CoverGirl's makeup pros and \ndesigned to make your eye look go from day to night. They blend \neffortlessly to bring your eyes out beautifully, without overshadowing. \nExperiment using them together or as single shades.Features:Matte, pearl, and sparkle shadesHandpicked by CoverGirl's makeup pros to make your eye look go from day to nightBlends easily without overshadowingTips for Use:\n \n \n Dust the second-lightest shadow in your 4-Kit palette from your lash line to brow line Blend the second-darkest shade along the crease of your eyes Run the darkest shade along your upper and lower lash lines Blend and highlight the lid and brow bone with the lightest shade \n \n ",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "288",
+ "brand": "pacifica",
+ "name": "Pacifica Mystical Supernatural Eye Shadow Palette",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8b25aa939044e24c7de93036977901d8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "An incredibly innovative formula that pushes mineral makeup color to new\n bounds.\u00a0 Rich, lasting, ceaseless eye shadows are infused with coconut \nwater for a velvety, cream-like finish.\u00a0 These four highly pigmented \nmineral satin makeup and iridescent shades are specially curated are \ndesigned to brighten the eyes and make you look gorgeous and awake.\u00a0 \n(Even when you did not get a good night's sleep!) Includes 4 Beautiful Shades:Opal - Opalescent pinkish-white perfect for highlighting and creating a natural look.\u00a0 Use on brow bones, inner eye and even as a linerMoonbeam - Pearlescent greyish moody violet to use on lids or create a subtle smoky eyeCelestial - Creamy dreamy beige with a little bright pearl ideal for lids and highlightsStargazer - Heavenly hot blue-violet to smudge, smoke or line your eyesFeatures: Coconut infused long lasting eye shadows that apply easy with a velvety finishNatural mineral colorsRecyclable packaging100% vegan, No animal ingredients or testingFREE OF PARABENS, PHTHALATES, PETROLEUM, TALC, FD&C COLORS and other ingredients you don't want on your skinIngredients:Opal Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide\u00a0 CI77510, Iron Oxides C1 77491,\u00a0 CI 77742, C177499.Moonbeam Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide\u00a0 CI77510, Iron Oxides C1 77491,\u00a0 CI 77742, C177499.\u00a0Celestial Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide\u00a0 CI77510, Iron Oxides C1 77491,\u00a0 CI 77742, C177499.Stargazer Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide\u00a0 CI77510, Iron Oxides C1 77491,\u00a0 CI 77742, C177499.",
+ "rating": "4.9",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "287",
+ "brand": "mistura",
+ "name": "Mistura 6-in-1 Beauty Solution",
+ "price": 56.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d45c12626255b3ebd4d674060e1a38b3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Mistura\u2019s incredible 6-in-1 Beauty Solution powder provides a natural luminosity and pearl-like finish to all skin types and colours. Blend this illuminating powder into your cheeks, forehead, eyes and lips for an instant full-coverage glow.\u00a0 This amazing formula will hide blemishes, mute rosacea, glide over fine lines and wrinkles and bring an instant brilliance to pale skin tones. On darker skin tones, the 6-in-1 Beauty Solution creates a pearl-like shimmer and gives an instant air-brushed finish. A simply sensational beauty solution.Included:\n\nMistura\u2019s 6-in-1 Beauty Solution Powder (12 g)\nMirrored Compact\nEye Applicator \nLip Applicator\nLuxury Retractable Brush\nLuxury Drawstring Pouch\n\nFeatures:\n\nReduces the appearance of fine lines and wrinkles\nWill not settle into pores\nLeaves behind an ultra-light silky finish\nHypo-allergenic, fragrance free, anti-inflammatory\nWipes off easily with water - no chemicals required\nLong lasting mineral base\nOne shade for ALL skin tones\nOne easy step\nInstant results\n\n\nApplication InstructionsBuff the 6-in-1 Beauty Solution\u00ae into the skin in a circular motion, starting on the outside of your face near your cheekbone and swirling as you go. Buff around your face and then your forehead, cheeks, and nose. Use over Mistura\u2019s Luminada\u00ae illuminating moisturizer, as an eye shadow with the applicator provided or as a lip colour over Mistura\u2019s Vitamin E moisture base. A little goes a long way so please be careful!Ingredients:\u00a0 Talc, Triethylhexanoin, Zinc Stearate, Tocopherol Acetate, Methylparaben, Propylparaben, Imidazolidinyl Urea, +/- (May Contain): Mica (77019), Titanium Dioxide (77891), Iron Oxides (77491, 77492, 77499), Ultramarines (77007), Yellow 5 Lake (19140:1), Blue 1 Lake (42090:2)",
+ "rating": "2.6",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "286",
+ "brand": "maybelline",
+ "name": "Maybelline The Nudes Eyeshadow Palette in The Blushed Nudes",
+ "price": 17.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/49d98e112e77d2a9a0c8fad28df89a1e_ra,w158,h184_pa,w158,h184.png",
+ "description": "Create looks from day to night and deep to light with Maybelline's The Blushed Nudes Eyeshadow Palette.Features:13 looks in one eyeshadow paletteExtraordinary colour from ultra-blendable pigmentsLong wear with sensual finish that lasts up to 12 hours",
+ "rating": "4.5",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "285",
+ "brand": "covergirl",
+ "name": "CoverGirl Eye Enhancers 3-Kit Shadows",
+ "price": 6.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/197ae5defd213aa7967e20756d370be8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Created with advanced, stay-put formulas, these collections of great shades are hand-picked by our make-up pros. Each one lets you mix and mingle, or just use a single shadow. They blend effortlessly to bring your eyes out beautifully, without overshadowing.",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "284",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Prism Eyeshadow",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7282990c0ae826129a437ff3cb823cab_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "These ultra-silky and lustrous eyeshadows look like a powder but feel like a cream, allowing for a smooth and flawless application. Use to contour, line, and highlight for a radiant finish. The luminous, shimmery formula creates a gorgeous range of looks for both day and night. ",
+ "rating": "4.8",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "283",
+ "brand": "pacifica",
+ "name": "Pacifica Enlighten Eye Brightening Shadow Palette",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/eea39137208ea1ea7754c6c6e95689c5_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "An incredibly innovative formula that pushes mineral makeup color to new bounds.\u00a0 Rich, lasting, ceaseless eye shadows are infused with coconut water for a velvety, cream-like finish.\u00a0 These four highly pigmented mineral satin makeup and iridescent shades are specially curated are designed to brighten the eyes and make you look gorgeous and awake.\u00a0 (Even when you did not get a good night's sleep!) Includes 4 Beautiful Shades:Urchin - An iridescent jeweled purple with gold tones.\u00a0 Use dry as a shadow, wet as a liner.\u00a0 Perfect for smudging and a great substitute for black.Golden - A perfect gold with just the right amount of shimmer.\u00a0 Use on the lids or line the eyes.Coral Sand - A satin lid base or highlighter.\u00a0Skinny Dip - Matte nude base, a universal brightener.\u00a0 Perfect for using on the inner eye to add brightness.Formulated without: Phthalates, parabens, carmine, beeswax, lanolin, mineral oils, propylene glycol, petroleum and FD& C colors (along with other nasties you do not want on your skin).\u00a0 No animal testing. Gluten-free, 100% vegan and cruelty-free.Ingredients: Coral Sand Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Skinny Dip Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Urchin Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.Golden Ingredients: Mica, Zinc Stearate, Ethylhexyl Stearate(Plant Source), , Cocos Nucifera (Coconut) Oil, Carthamus Tinctorius(Safflower) Seed Oil, Macrocystis, Pyrifera (Brown Kelp) Extract, Panax (Ginseng) Root Extract. May Contain: Silica, Dimethicone, Calcium Sodium Borosilicate, Tin Oxide, Titanium Dioxide, CI 7789, Ferric Ferrocyanide CI77510, Iron Oxides C1 77491, CI 77742, C177499.",
+ "rating": "4.6",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "282",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Color Icon Eye Shadow Collection",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9c602a66c3a2d8492389d48adbf2c7fe_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Eight dynamic, perfectly color-coordinated shades with high pigment and \npearl for ultra-impact color. Shades can be used together or \nindividually to create an endless variety of looks. ",
+ "rating": "4.2",
+ "category": "palette",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "281",
+ "brand": "pure anada",
+ "name": "Pure Anada Loose Luminous Eye Colour ",
+ "price": 8.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4daf84bee451c265ec04f7cc1b8bb7c3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada Loose Luminous Eye Colours are made with finely milled micas that impart an illuminating glow.\u00a0 Apply them dry for soft, subtle color, or wet for more vibrant intensity. \u00a0Learn how you can use your favourite shade to make customized lip balm with our easy DIY Lip Balm recipe on our blog, The Well!About Shade Tones: Warm Shades (W) if you have yellow undertones in your skinCool Shades (C) if you have blue undertones in your skinNeutral Shades (N) to accent any skin tone or eye colorApplication Tips: Dip your shadow brush into the loose minerals and tap off any excess \npowder.\u00a0 Gently stipple the minerals on your eye lids.\u00a0\u00a0 Make sure your \nskin is well hydrated so the minerals will adhere.\u00a0 Try misting your \nskin with Pure Anada Marine Mineral Toner, prior to applying your \nmakeup.If your shadow is prone to creasing, make sure your lids are free \nfrom excess oils before applying shadow.\u00a0 If the problem is persistant, \ntry priming your lids with Pure Anada Matte Minerals Finishing Powder or\n a coordinating Velvet Matte Shadow.\nDeep shades of loose mineral shadow can be used as eyeliner.\u00a0 To \ncreate a soft dry line, dip an angled liner brush into the powder, tap \nit off and line your eyes.\u00a0 Or to create a liquid liner,\u00a0wet your brush \nand dip it into the powder.\u00a0 The minerals will stick to the brush.\u00a0 Make\n a paste on the back of your hand, or in the lid of the jar.\u00a0 Apply to \nyour eyes!Ingredients: Mica,\u00a0 Iron Oxides, Ultramarines, May contain: Titanium Dioxide",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "280",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Color Icon Eyeshadow Single",
+ "price": 1.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7d6da9fa070a3d82c6a8e8fc4c8110c2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "High-pigmentation and pearl-density create a unique, satiny texture that lasts and lasts. A versatile collection\nof classic and trend shades can be easily worn alone or playfully combined for a variety of looks.",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "279",
+ "brand": "maybelline",
+ "name": "Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c2ddacc79f4fdd3d23664581c76546bc_ra,w158,h184_pa,w158,h184.png",
+ "description": "Dare to wear 24HR shadow!Maybelline's Color Tattoo Cream Gel Shadow uses ink technology for their most intense, long-lasting colour saturation. The cream formula glides on without creasing and keeps colour vibrant.Ophthalmologist-tested. Safe for sensitive eyes and contact lens wearers.\n \n \n \n \n For best results: With \nfingertips, sweep all over eye from inner corner and work outwards. For\n added drama, darken as desired.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "278",
+ "brand": "pacifica",
+ "name": "Pacifica Radiant Shimmer Highlighting Creams For Eyes Lips Face",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4395f2c09aebd1b8d8f183168bc5d00f_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "You will absolutely LOVE these Radiant Shimmer Coconut Multiples! Coconut infused multi-use creamy colors for cheeks, eyes, lips and even your body are housed in a magically decorated palette. Create shimmering highlights, glowing illumination and beautiful contours. Natural mineral makeup formula blends effortlessly and can be used sheer, layered or built-up for more drama. Go ahead and play all you want, these mineral makeup colors are full of skin-loving naturals.Includes 3 Shimmering Shades:Bronzed: Perfectly glowing sun-kissed color with golden shimmer shadowIsland Rose: shimmering, radiant dewy pink shadowMoonlit: Iridescent pale shades of moon-kissed shimmerFeatures:No animal testingGluten-free100% vegan and cruelty-freeFormulated without: Phthalates, parabens, carmine, beeswax, lanolin, mineral oils, propylene glycol, petroleum and FD& C colors (along with other nasties you do not want on your skin). Ingredients: Ethylhexyl Palmitate, Silica, Mica, \u00a0Caprylic/Capric Triglyceride,Helianthus Annuus (Sunflower) Seed Oil, Ozokerite, Copernicia Cerifera(Carnauba) Wax, Euphorbia Cerifera (Candelilla) Wax, Cetyl Palmitate, Carthamus Tinctorius (Safflower) Seedoil, Parfum (All Natural), Tocopheryl Acetate (Vitamin E), Macrocystis Pyrifera (Brown Kelp) Extract,Cocos Nucifera (Coconut) Fruit Extract, Tin Oxide. Titanium Dioxide Ci 77891, Iron Oxides Ci 77941",
+ "rating": "3.6",
+ "category": "powder",
+ "product_type": "blush",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "277",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Matte Collection Quad Eye Shadow",
+ "price": 10.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/66d22b6cffd1cc8b2394e41b1c60501f_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Matte Collection Quad Eye Shadow has a silky smooth formula, is easy to blend and is safe for \nsensitive eyes and contact lens wearers.Directions for Use: These\n natural looking shades can be used independently or combined for a \ntotal eye focus. Use lighter shades on eyelid and brow bone, medium \nshades on eyelid and\n darker shade in the crease as a contour for a more dramatic effect. \n Ingredients: TALC,ZINC STEARATE, DIMETHICONE, CAPRYLIC/CAPRIC TRIGLYCERIDE,KAOLIN, \nSILICA, TRISODIUM EDTA, IMIDAZOLIDINYL UREA, \nMETHYHLPARABEN,PROPYLPARABEN.MAY CONTAIN: MICA,TITANIUM DIOXIDE,IRON \nOXIDES,CARMINE,MANGANESE VIOLET,BISMUTH OXYCHLORIDE, FERRIC \nFERROCYANIDE, CHROMIUM OXIDE GREENS, ULTRAMARINES, BLUE 1 LAKE, YELLOW 5\n LAKE, SILK POWDER.Hypoallergenic. Fragrance-free. Safe for sensitive eyes and contact lens wearers. Dermatologist Approved. Easy to blend.",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "276",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Eye Shadow Single",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/12b1caa07e20c2e9535fc67120f4abb1_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Cargo Eye Shadow singles are packaged in their signature tin. This \nsoft and velvety formula has a smooth feel and delivers a long-lasting, \neven application. Rich pigments adhere to skin to give long wearing, \nsaturated color. Colors adhere to the skin and blend effortlessly and \nare buildable for added intensity. May also be used wet or dry as an \neye liner.\n Eyes are enhanced in a wide variety of colors that offer the ultimate in makeup expression. Paraben free.\n\u00a0\nFeatures:\nSilica helps with the blendability of the product and gives a velvety smooth texture. Allows for shadow to be used wet.Jet Milled Talc provides smooth feel and application.Vitamin E is an antioxidant helps to keep the skin supple and smooth.Aloe Barbadensis Leaf Extract hydrates and nourishes the skin.Paraben-freeShade Range: Ingredients: Talc, Octyldodecyl Stearoyl Stearate, Octyldodecyl Stearate, Zinc \nStearate, Silica, Boron Nitride, Tocopheryl Acetate, Phenoxyethanol, \nCaprylyl Glycol, Alumina, Carthamus Tinctoris (Safflower) Seed Oil, Aloe\n Barbadensis Leaf Extract, Sorbic Acid. May Contain (+/-): Mica \n(CI 77019), Iron Oxides (CI 77491, CI 77492, CI 77499), FD&C Yellow \n#5 Lake (CI 19140:1), FD&C Blue #1 Lake (CI 42090), FD&C Red #40\n Lake (CI 16035:1), Titanium Dioxide (CI 77891), Bismuth Oxychloride (CI\n 77163), Chromium Oxide Green (CI 77288), Chromium Hydroxide Green (CI \n77289), Ferric Ferrocyanide (CI 77510), Manganese Violet (CI 77742), \nUltramarines (CI 77007), Bronze Powder (CI 77400), Tin Oxide (CI 77861).",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "275",
+ "brand": "pure anada",
+ "name": "Pure Anada Pressed Mineral Eye Color Pan",
+ "price": 8.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9b489f80495f5d059d0f49ef38c36664_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada is pleased to bring you a lovely selection of convenient pressed mineral colors!\u00a0\u00a0 You\u2019ll love the silky texture and longevity of these very wearable shades.Mineral pigments and organic Jojoba are pressed together to create a natural makeup product. You can have confidence that you are making a beautiful, healthy choice!Pure Anada pressed colors are designed to be inserted into customizable magnetic compacts like the Pure Ananda Reusable Magnetic Compact. Design your own palette! What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Shadow Finishes: Demi-Matte shadows are a combination of opaque matte minerals and luminous satin mica.\u00a0 This provides both true color and a light-reflecting finish.Matte shadows are soft, silky shadows that do not exude any sheen whatsoever.Shades: Ingredients: Mica (CI 77019), Iron Oxides (CI 77492, CI 77499) Calcium Carbonate, Caprylic Triglyceride *Simmondsia Chinensis (Jojoba seed oil) Ultramarines (CI 77007), Titanium Dioxide (CI 77891) * Certified Organic IngredientVegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Non-GMO",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "274",
+ "brand": "pacifica",
+ "name": "Pacifica Natural Minerals Solar Complete Color Mineral Palette",
+ "price": 60.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/baf991d5944d310d8c337423486b77ea_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "All you need to look naturally gorgeous!\u00a0 The Solar Complete Mineral Palette is a full set of eye shadows, blush, bronzer and coconut highlighters all in one beautiful, recyclable palette.\u00a0 Each natural mineral shadow is highly pigmented and so smooth it applies like a cream.\u00a0 Plus the new blush and bronzer are infused with coconut, apply easily and can be layered to build color.\u00a0 The coconut highlighters are in two new shades as well as the popular Island Rose and can be used on cheekbones, eye brow bones, and even the lips to provide the perfect amount of natural brightness.\u00a0 With a variety of colors, many looks are achievable so you can be natural by day or smokin' hot by night.Colours Included:Eye shades: Neptune, Glow, Treasure, Coral, Mermaid Aqua, SandalwoodCheek shades: Flushed, BronzedHighlighter shades: Gold Dust, Island Rose, Pink Opal",
+ "rating": "4.9",
+ "category": "",
+ "product_type": "bronzer",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "273",
+ "brand": "maybelline",
+ "name": "Maybelline Eye Studio Color Tattoo 24HR Cream Gel Shadow ",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/58d07d24e39142e0c5a178b00b6b31f1_ra,w158,h184_pa,w158,h184.png",
+ "description": "Dare to wear 24HR shadow!Maybelline's Color Tattoo Cream Gel \nShadow uses ink technology for their most intense, long-lasting shimmery metallic shades\ufeff. The cream formula glides on without creasing and keeps \ncolour vibrant.Ophthalmologist-tested. Safe for sensitive eyes and contact lens wearers.\n \n \n \n \n Shade Range: For best results: With \nfingertips, sweep all over eye from inner corner and work outwards. For\n added drama, darken as desired.\u00a0\u00a0\u00a0\u00a0\u00a0 ",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": []
+ },
+ {
+ "id": "271",
+ "brand": "covergirl",
+ "name": "CoverGirl Trunaked Waterproof Eyeliner Duo in Mocha/Ebony",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d21a214b11528337f27647cbbd93de6b_ra,w158,h184_pa,w158,h184.png",
+ "description": "CoverGirl Trunaked Waterproof Eyeliner Duo takes eyes from subtle to smokey in no time! Features:Creamy waterproof formula Blends just as beautifully as it stays put Partner this twin tip eyeliner pencil with the gorgeous neutrals in the trunaked palettes to create endless easy, breezy, beautiful possibilitiesHow to Apply: Apply liner along your top and bottom lashes for the full trunaked effect.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "270",
+ "brand": "anna sui",
+ "name": "Anna Sui Eye Brightener",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5e2dd70493281c257ad9e77b8840d570_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Eye Brightener is an eye makeup primer that evens, tones and provides a brightened 3D effect, designed specifically for delicate eye areas.\u00a0 Features:Combined with polarized pearls in red, blue, and silver for a naturally brightened 3D effectSmooths skin tones, allowing eye makeup to spread smoothly onto the skinGentle enough to protect delicate eye areasDirections: Apply before or after makeup.\u00a0 Can be used to highlight when applied around eye area before makeup or used as a light concealer under eyes and brow bone after makeup.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "268",
+ "brand": "anna sui",
+ "name": "Anna Sui Sharpener",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/269abb578dd790ab8379025f81fcbfae_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Sharpener for eyeliner pencils features two sharpener sizes and a mess free cover to catch the eyeliner shavings. ",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "267",
+ "brand": "covergirl",
+ "name": "CoverGirl Bombshell Powder Brow & Liner in Dark Brown",
+ "price": 9.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a7598160bc46504c98c26a241e3047e2_ra,w158,h184_pa,w158,h184.png",
+ "description": "Bring sexy smolder to eyes & brows.\u00a0 Soft powder adheres to brows and defines eyes.Features:2-in-1 brow & liner powderVelvety powder fills in browsUse also to softly line & define eyesDirections: Twist open and pull applicator up and tap lightly on tube side to remove excess powder. Lightly brush over eyebrows until desired effect is reached. Also use to softly line & define eyesIngredients: Boron Nitride, Dimethicone, Silica, Polyethylene, Pentylene Glycol, Pumice, Kaolin, Dimethiconol, Phenoxyethanol, Ethylhexylglycerin, Dehydroacetic Acid, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, May Contain/Peut Contenir: Titanium Dioxide, Iron Oxides, Mica",
+ "rating": "3.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "266",
+ "brand": "anna sui",
+ "name": "Anna Sui Pencil Eyeliner WP",
+ "price": 26.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/88d74b22173b3f912b2263c4fd505a2b_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Pencil Eyeliner is a soft, waterproof eyeliner that glides on effortlessly for a long lasting finish. Used to create intense colour definition.Features:Waterproof formula reduces smudging allowing colours to stay fresh Minimal amount of waxes and oils allow for a smooth application5 essential on-trend colours produced by a combination of pearl and colourants",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "265",
+ "brand": "covergirl",
+ "name": "CoverGirl Trunaked Waterproof Eyeliner Duo in Cashmere/Espresso",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/92d2bd2c93f465c5565009f3f604fae6_ra,w158,h184_pa,w158,h184.png",
+ "description": "CoverGirl Trunaked Waterproof Eyeliner Duo takes eyes from subtle to smokey in no time! Features:Creamy waterproof formula Blends just as beautifully as it stays put Partner this twin tip eyeliner pencil with the gorgeous neutrals in the trunaked palettes to create endless easy, breezy, beautiful possibilitiesHow to Apply: Apply liner along your top and bottom lashes for the full trunaked effect.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "264",
+ "brand": "revlon",
+ "name": "Revlon PhotoReady Kajal Matte Eye Pencil",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/117b7491bce3c01899a12df69d4629e1_ra,w158,h184_pa,w158,h184.png",
+ "description": "NEW Revlon PhotoReady Kajal Matte Eye Pencil is a highly pigmented colour with matte finish that glides on effortlessly.Features:Use the built in smudger to take it from precise to smokySoft kajal can be used to line the inner rimAll day wearOphthalmologist tested ",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "262",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Extreme Shimmer Pencil + Smudger Trio",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a08c2b2466bf97e899cfc1445cd6cd9f_ra,w158,h184_pa,w158,h184.png",
+ "description": "\nUltra-shimmery & versatile glitter eyeliner pencils create precise definition or smudged out glamour instantly!Features:Highly-pigmented, creamy color Packed with illuminating shimmer for eyes that sparkleThree Shades: Natural (Bronze), Playful (Gold), Dramatic (Black)Directions: Apply eyeliner at the base of upper and lower lashes.Layer shades together for endless looks. For more defined eyes, apply along lower lash line as well.Ingredients: Ingredients: Hydrogenated Polyisobutene, Calcium Sodium Borosilicate, Calcium Aluminum Borosilicate, Polyethylene Terephthalate, Dipentaerythrityl Hexahydroxystearate/Hexastearate/Hexarosinate, Synthetic Wax, Ethylhexyl Palmitate, Beeswax/Cire d'abeille, Copernicia Cerifera (Carnauba) Wax/Cire de Carnauba, Synthetic Fluorphlogopite, Silica, Ozokerite, Ascorbyl Palmitate, Citric Acid, Lecithin, Polymethyl Methacrylate, Polyurethane-11, Tin Oxide, Tocopherol",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "261",
+ "brand": "covergirl",
+ "name": "CoverGirl Full Lash Bloom Mascara + Perfect Point Plus Eye Liner",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/72bab061829b3185368d8dcb24a6a630_ra,w158,h184_pa,w158,h184.png",
+ "description": "This value pack contains a mascara that gives exceptional lash fullness that is soft - even to the touch and a self-sharpening eye liner for a perfect point every time.Features:Full Lash Bloom Mascara - very blackPerfect Point Plus Eye Liner - black onyx Soft, full lashes that are never stiff or brittleEye liner has soft smudger tip for expert blendingSuitable for contact lens wearersDirections: Apply liner along bottom and top lash lines, smudge using soft tip tool. Finish by brushing upper and lower lashes generously with up to 2 coats of mascara.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "260",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Smokissime Powder Eyeliner Pen",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/08f663a61b796cb57fd6aef86dbb5cc1_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Master the smoky eye in one step - really! Every makeup artist knows: \nthe perfect smoky eye is about the perfect pairing of eyeliner and \nshadow. Now, L\u2019Or\u00e9al Paris introduces the first smoky eye powder liner, \nblending the best of eyeliner and shadow into a single product. Its \nInfallible powder formula lasts up to 14 hours while the suede-like \napplicator is soft enough to expertly blend, with a pointed tip for \noptimal control.",
+ "rating": "2.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "259",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Extreme Shimmer Eyeliner Trio in Nude ",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d64ebc772679cbca5c93fd10cc2f3c56_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Physicians Formula Shimmer Strips Extreme Shimmer Eyeliner Trio gives you highly pigmented color and bold shimmer for a glamorous customized look. Features: Long wearing, water resistant and smudge resistant formula for 24hr wearHypoallergenicParaben & gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearerDirections: Apply eyeliner at the base of upper shade, layer shades for endless looks.Ingredients: Dimethicone, Calcium Aluminum Borosilicate, Polyethylene, Trimethylsiloxysilicate, Synthetic Wax, Squalane, Polybutene, Silica, Disteardimonium Hectorite, Propylene Carbonate, Tin Oxide, Lecithin, Tocopherol, Ascorbyl Palmitate, Citric Acid. May Contain/Peut Contenir: Bismuth Oxychloride, Black 2, Blue 1 Lake, Chromium Hydroxide Green, Chromium Oxide Greens, Carmine, Ferric Ammonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese Violet, Mica, Titanium Dioxide, Ultramarines, Yellow 5 Lake.",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "258",
+ "brand": "milani",
+ "name": "Milani Supreme Kohl Kajal Eyeliner",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0e085149c3fbedd0aa6661c6b3d143cf_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Milani Supreme Kohl Kajal Eyeliner is perfect for tightlining, waterlining or adding definition to the upper lid - there\u2019s nothing this one-stroke wonder can\u2019t do.\u00a0 With this sleek gold multi-tasker, you can achieve three distinct looks: 1.To keep it natural, line the upper lid and inner rim.\u00a0 2. For added drama, thicken the line and extend the tip.\u00a0 3. Feeling bold? Ring the entire eye. Available in a single stellar shade (Blackest Black), the waterproof formula is laced with hydrating, nourishing ingredients. Features:Smooth-glide application creates three looks from precise to boldSuper long-wear & smudge-proofRetractable tip, no sharpening requiredIdeal for use in waterlineWaterproofApplication: One Product Three Looks: Supremely Natural Supremely Dramatic Supremely Bold (will provide eye images for this section) Apply to upper lashline and inner rim for a natural, precise look. For added intensity, slightly thicken the line and extend the tip. For supreme drama, connect through the lower lashline.Ingredients: Cyclopentasiloxane, Hydrogenated Olive Oil Stearyl Esters, Polyethylene, Polybutene, Silica Silylate, Euphorbia Cerifera (Candelilla) Wax, Octyldodecanol, Cera Microcristallina (Microcrystalline Wax) , Theobroma Grandiflorum (Cocoa) Seed Butter, Sodium Ascorbyl Phosphate, Pentaerythrityl Tetra-di-t-Butyl Hydroxyhydrocinnamate, Tocopherol, Sodium Hyaluronate, Zinc Gluconate, Magnesium Aspartate, Water (Aqua), Copper Gluconate, Mica, Iron Oxide (CI 77499), Black 2 (CI 77266), Ferric Ferrocyanide (CI 77510). ",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "257",
+ "brand": "annabelle",
+ "name": "Annabelle Retractable Eyeliner",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d579558b853bc13b92292106cfc2ed15_ra,w158,h184_pa,w158,h184.png",
+ "description": "This Annabelle Retractable Eyeliner with integrated sharpener comes in rich, intense colours and \na creamy texture that glides easily. Waterproof and long-lasting formula. \n \n \nOphthalmologist Tested. Waterproof. 12h wear. \n A \nmust have for a decadent dose of resistant colour!Shade Range: ",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "256",
+ "brand": "marcelle",
+ "name": "Marcelle Lux Cream Eye Shadow + Liner",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4448f8a937851a10afe049b1c374f448_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Marcelle Lux Cream Eye Shadow + Liner gives you waterproof color that lasts all day!\n\nA jumbo pencil in a creamy, non-sticky luxurious formula. The \nultra-silky texture glides on evenly for a quick and easy application \nand color that lasts up to 9 + hours. Waterproof, the color will not \nsmudge, transfer or crease once it sets.Use each pencil alone as a \nshadow or as a liner, or mix and match shades to create your own looks. \nThe sponge-end makes smoky-eye looks easy to achieve. Simply use the \nsmudge tip to extend the color onto your lid for the perfect smoky eye.\n\nHypo-allergenic and perfume free.Shade Range: ",
+ "rating": "",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "255",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Swimmables Eye Pencil",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/edee76f18bae96a69164f4058e6b3c32_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Stay in line!\nCargo Cosmetics Swimmables Eye Pencil is an ultra creamy, extreme wear, waterproof eyeliner with the feel of a \nliquid and versatility of a pencil. Locks comfortably into place for up \nto 14 hours. Creamy, transfer-resistant formula glides on effortlessly \nto create a variety of looks. Allows for ample blending time before \nsetting. Concentrated pigments provide rich color payoff. Stays put \nthrough sun, sweat, swim and tears. \n\nFeatures:\n Moisturizing Waterproof PigmentsAvocado and sunflower oil provide a creamy, cushiony texture Durable, budge-proof waxes lock pigments into place for up to 14 hoursLiner tip offers versatile application\u2014from delicate lines to thicker, fuller Ingredients: Isododecane, Synthetic Wax, Hydrogenated Polydicycolpentadiene, \nPEG/PPG-18/18 Dimethicone, Polybutene, Glyceryl \nTribehenate/Isostearate/Eicosandioate, Nylon-12, Polyethylene, \nPerfluorononyl Dimethicone, Polyglyceryl-4 \nDiisostearate/Polyhydroxystearate, Sebacate, Synthetic Beeswax, \nTocopherol, Pentaerythrityl Tetra-Di-T-Butyl, Hydroxyhydrocinnamate, \nPersea Gratissima (Avocado) Oil, Copernicia Cerifera (Carnauba) Wax, \nHelianthus Annuus (Sunflower) Seed Oil, Phytosterols, Olea Europaea \nFruit Oil, Sorbitan Oleat, Ascorbyl Palmitate, Tocopheryl Acetate. May Contain (+/-):\n Iron Oxides (CI 77491, CI 77492, CI 77499), Mica (CI 77019), Titanium \nDioxide (CI 77891), Ferric Ferrocyanide (CI 77510), Carmine (CI 75470)",
+ "rating": "4.7",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "254",
+ "brand": "pacifica",
+ "name": "Pacifica Magical Multi-Pencil Prime & Line",
+ "price": 16.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4f99def0f8d14a1a498118d7fca9fa89_ra,w158,h184_pa,w158,h184.png",
+ "description": "The Pacifica Magical Multi-Pencil Prime & Line Lips, Eyes & Face is a multi-use pencil for priming, lining and covering. Use as a natural eyeliner to brighten, over blemishes as a primer (before applying your concealer), or on your lips as a line and prime to make any color pop! Our Magical Multi-Pencil is waterproof and made with rich mineral color to give you natural results that last.Features:Jojoba Oil - Helps keep skin around the lips and eyes moisturizedShea Butter - Helps protects and moisturizes skinVitamin E - Provides anti-aging benefits in addition to helping reduce the appearance of fine linesVitamin C Antioxidant - natural preservative that helps fight free radicals Ingredients: titanium dioxide CI 77891, hydrogenated simmondsia chinensis seed oil, simmondsia chinensis seed oil, caprylic / capric triglycerides, hydrogenated vegetable oil, mica, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, iron oxide CI 77492, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, iron oxide CI 77491, iron oxide CI 77499, tocopherol, ascorbyl palmitate",
+ "rating": "",
+ "category": "",
+ "product_type": "lip_liner",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "253",
+ "brand": "annabelle",
+ "name": "Annabelle Smudgeliner ",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/541b71a4d119bdae25eb1c3690bacf68_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The new definition of smokey eye: edgy, soft, smudgeable! Annabelle Smudgeliners \nhave a superior long-lasting formula offering rich colour pay-off that \nglides on smoothly to create a defined line, or can be easily blended \nwith the built-in smudger tip to achieve a smokey, sultry look.\nIts excellent coverage means you can really get creative!\nContains natural oxidants and Vitamin E. Mineral-oil free. \nOphthalmologist tested.Shade Range: ",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "252",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Eye Pencil",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3691e75a871b476e86f1e240ce784e70_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Exceptionally rich, the mineral color of Mineral Fusion Eye Pencils glide on smoothly to line, define and enhance eyes. Formulated with Chamomile, Meadowfoam and Vitamin E to soothe delicate skin around eyes. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.Ingredients: Simmondsia Chinensis (Jojoba) Butter, Caprylic/Capric Triglyceride, Limnanthes Alba (Meadowfoam) Seed Oil, Hydrogenated Cottonseed Oil, Mangifera Indica (Mango) Seed Oil, Euphorbia Cerifera (Candelilla) Wax, Glyceryl Caprylate, Copernicia Cerifera (Carnauba) Wax, Macadamia Ternifolia Seed Oil, Tocopherol (Vitamin E), Chamomilla Recutita (Matricaria) Flower Extract, Ascorbyl Palmitate (Vitamin C), Iron Oxides (77491, 77492, 77499), Titanium Dioxide (77891), Mica (77019). Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypo-allergenic.",
+ "rating": "4.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "251",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Sharpen Up! Dual Pencil Sharpener",
+ "price": 1.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/52cb90513c65303b9ac96b0bb8f5e74c_ra,w158,h184_pa,w158,h184.png",
+ "description": "Specially-designed dual pencil sharpener includes razor-sharp blades to keep pencils of all sizes perfectly-shaped.Features:Dual-purpose sharpener for pencils of all sizesRazor-sharp bladesCompact for easy traveling Directions: Insert pencil into appropriate hole depending on size of pencil and twist.",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "250",
+ "brand": "covergirl",
+ "name": "CoverGirl Ink it! By Perfect Point Plus Eyeliner ",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/db7299d1c75f3e217b911e9a7be8783c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get inked \u2014 without the commitment! Ink It! colors glide on smoothly and\n easily without skipping, dragging, or pulling. The bright, bold shades \nlast all day long.Features: Bright, bold colors for new looks Lasts all day long \u00ad\u00ad\u2014 no smudging or creasingExpert precision applicationTwist up design",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "249",
+ "brand": "annabelle",
+ "name": "Annabelle Stay Sharp Waterproof Kohl Eyeliner",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e1b909a32d2c8a8075ac11972511e936_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Stop looking, you have just found the sharpest tool in the shed!Annabelle introduces the very first to mass market \nself-sharpening eyeliners with the Stay Sharp Waterproof Eyeliner. \nAnnabelle\u2019s truly innovative concept will keep beautistas on point and \nsharpeners away.The Stay Sharp secret is in the cap! The Annabelle Stay Sharp twist-on \ncap includes a sharpener. Every time the cap is twisted back on the \npencil, the blades sharpen the tip to perfection and neatly keep the \nshavings. No fuss, no mess!Shade Range: Features:Shelf-sharpening pencilNo mess: lead shavings are kept inside the capFine tip for extra-precise applicationExtremely soft lead for a smooth, gliding applicationWaterproof formulaIntense pigmentation for best colour pay off and coverage",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "248",
+ "brand": "pacifica",
+ "name": "Pacifica Natural Eye Pencil",
+ "price": 16.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b2c0bdd88398baadd69b710d27893ca2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pacifica Natural Eye Pencil is a waterproof, buttery smooth eye pencil that glides on easily to avoid pulling on the delicate eye area. Color glides on and stays put for those perfectly defined eyes. Whether it be a very fine line or the ever glamorous cat-eye, these pencils provide the right amount of saturated color to make your eyes pop.Formulated without: Animal ingredients (including carmine, beeswax and \nlanolin), animal testing, FD&C colors, mineral oil, parabens, \nphthalates, petroleum, propylene glycol, SLS, gluten, peanut oil and \nother ingredients you don\u2019t want on your skin.Ingredients: Gun Metal (pewter) - hydrogenated simmondsia chinensis seed oil, mica, caprylic / capric triglycerides, hydrogenated vegetable oil, simmondsia chinensis seed oil, butyrospermum parkii butter, titanium dioxide CI 77891, canola oil, sclerocarya birrea seed oil, iron oxide CI 77499, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitateBare (Nude) - titanium dioxide CI 77891, hydrogenated simmondsia chinensis seed oil, simmondsia chinensis seed oil, caprylic / capric triglycerides, hydrogenated vegetable oil, mica, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, iron oxide CI 77492, euphorbia cerifera cera, glyceryl caprylate, copernicia cerifera cera, iron oxide CI 77491, iron oxide CI 77499, tocopherol, ascorbyl palmitate.Fringe (brown) - hydrogenated simmondsia chinensis seed oil, iron oxide CI 77499, mica, iron oxide CI 77491, iron oxide CI 77492, hydrogenated vegetable oil, caprylic / capric triglyceride, simmondsia chinensis seed oil, butyrospermum parkii butter, canola oil, sclerocarya birrea seed oil, candelilla cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitate.Jet (black) - iron oxide CI 77499, hydrogenated simmondsia chinenesis seed oil, caprylic / capric triglyceride, simmondsia chinenesis seed oil, hydrogenated vegetable oil, butyrospermum parkii butter, sclerocarya birrea seed oil, mica, candelilla cerifera cera, glyceryl caprylate, copernicia cerifera cera, tocopherol, helianthus annuus seed oil, ascorbyl palmitate",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "247",
+ "brand": "covergirl",
+ "name": "CoverGirl Liquiline Blast Eyeliner ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0e4882c00b6639844d9168d71f43c3ed_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "With liquiline blast, you'll get all the intensity and staying power of a\n liquid with ease and blendability of a pencil. Use the \nliner as-is for intense definition or smoke-it-out with the built-in \nsmudger end for a subtle, smoky look.Features: Liquid-like formula + the ease of a pencil applicatorSmudger tip lets you customize your intensity",
+ "rating": "4.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "246",
+ "brand": "annabelle",
+ "name": "Annabelle Smoothliner ",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/25372c697046520c10607be4c235d3ba_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "So creamy and smooth it feels like silk on your skin!Annabelle\u00a0 Smoothliners are \navailable in a matte or metallic finish and allow for a clean line, \nadding depth and elegance to your eyes. Lovely and alluring eyes, all \nday long! Waterproof. Long-lasting. Hypo-Allergenic.Shade Range:",
+ "rating": "4.8",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "244",
+ "brand": "marcelle",
+ "name": "Marcelle Waterproof Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/268575c4edd3108568af16e39ad69517_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Use Marcelle Waterproof Eyeliner for impeccably lined eyes anywhere, anytime!\nPerfectly blendable, its creamy formula allows for a precise and \nintensely coloured line. The smooth texture of this waterproof eyeliner \nvirtually glides on the skin and stays put all day long, resisting to \nwater, humidity and heat. Long-lasting, it is nonetheless easily removed\n with any Marcelle eye make-up remover. Available in a matte or \npearlized finish.\n\nHypo-allergenic and perfume free.Shade Range: ",
+ "rating": "3.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Canadian"
+ ]
+ },
+ {
+ "id": "243",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Eye Enhancing Eyeliner Trio ",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b5c7acadc4e472a567e428979d68357c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Warm Nude Eyeliner Trio! The perfect set of earth tone eyeliners to create a Warm Nude look for ANY eye color! Long-wearing, water-resistant and smudge-resistant formula for 24-Hour wear.Tips and Tricks for a Smoky Eye: Apply Eyeliner at the base of upper and lower lash line. Layer shades together for endless looks!Ingredients: Cyclopentasiloxane. Trimethylsiloxysilicate. Polyethylene. Ozokerite. \nLauroyl Lysine. Synthetic Beeswax. Octyldodecanol. Disteardimonium \nHectorite. Propylene Carbonate. Lecithin. Ascorbyl Palmitate. Citric \nAcid. Tocopherol. May Contain: Iron Oxides. Titanium Dioxide. Mica. \nAluminum Powder. Bismuth Oxychloride. Black 2. Blue 1 Lake. Carmine. \nChromium Hydroxide Green. Chromium Oxide Greens. Ferric Ammonium \nFerrocyanide. Ferric Ferrocyanide. Manganese Violet. Silica. Tin Oxide. \nUltramarines. Yellow 5 Lake.Hypoallergenic. Fragrance-free. Paraben-Free. Gluten Free. \nDermatologist approved. Safe for sensitive eyes and contact lens \nwearers.",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "242",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Silkissime Eyeliner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a132f78e0b9e4aa4cca37c9f05267897_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n L'Or\u00e9al Paris introduces Silkissime\u2122 by \nInfallible\u00ae Eyeliner. The formula glides on like silk for a soft and \nluxurious line with up to 16H of intensity.Features:\n\nRich, silky formulaSmudge-resistant, up to 16H wearOphthalmologist testedSuitable for sensitive eyes and contact lens wearers\n ",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "240",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Extra-Intense Liquid Pencil Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cf225e409760daf4dea62290990008a6_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Now get the intense look and luxurious feel of a liquid liner with the easy application and precision of a pencil.\u00a0 Extra-Intense Liquid Pencil Eyeliner glides on smoothly and evenly for beautiful definition in a single stroke.\u00a0 The smudge-resistant formula provides 16 hours of non-stop wear.\u00a0",
+ "rating": "4.3",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "239",
+ "brand": "covergirl",
+ "name": "CoverGirl Ink it! By Perfect Point Plus Eyeliner",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e4763257a2290da070bd300212d16db8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get inked \u2014 without the commitment! Ink It! colors glide on smoothly and\n easily without skipping, dragging, or pulling. The bright, bold shades \nlast all day long.Features: Bright, bold colors for new looks Lasts all day long \u00ad\u00ad\u2014 no smudging or creasingExpert precision applicationTwist up design",
+ "rating": "2.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "238",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Eye Enhancing Eyeliner Trio",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4ce7e1ce460841dfc5f42c29221cf5c1_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Shimmer Strips Custom Eye Enhancing Eyeliner Trio is the perfect set of three eyeliners to enhance your eye colour and provide glamorous definition! Long-wearing, water-resistant and smudge-resistant formula for 24-Hour wear.Directions for Use: Apply eyeliner at the base of upper lashes. Layer shades together for endless looks. For more defined eyes, apply along lower lash line as well.Ingredients: Cyclopentasiloxane. Trimethylsiloxysilicate. Polyethylene. Ozokerite. Lauroyl Lysine. Synthetic Beeswax. Octyldodecanol. Disteardimonium Hectorite. Propylene Carbonate. Lecithin. Ascorbyl Palmitate. Citric Acid. Tocopherol. May Contain: Iron Oxides. Titanium Dioxide. Mica. Aluminum Powder. Bismuth Oxychloride. Black 2. Blue 1 Lake. Carmine. Chromium Hydroxide Green. Chromium Oxide Greens. Ferric Ammonium Ferrocyanide. Ferric Ferrocyanide. Manganese Violet. Silica. Tin Oxide. Ultramarines. Yellow 5 Lake.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Safe for sensitive eyes and contact lens wearers.",
+ "rating": "5.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "237",
+ "brand": "covergirl",
+ "name": "CoverGirl Perfect Point Plus Eyeliner Pencil ",
+ "price": 7.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/74749bda64dcfe89dfdbf3f2f248cd3a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The pencil gives you control and versatility. Want a precise line? It \nglides on easily. Want to soften a bit? There's a soft smudger tip. Best\n of all? No sharpening necessary, it's got a specially designed \nself-sharpener inside. So you always get the point\u2014perfectly.Features: Specially-designed self-sharpenerSoft smudger tip for great blendingGlides on easilyOphthalmologically-tested",
+ "rating": "4.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "236",
+ "brand": "milani",
+ "name": "Milani Brow & Eye Highlighter Duo Pencil",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4c7b17775d8a73cf4585e20761098b79_ra,w158,h184_pa,w158,h184.png",
+ "description": "A versatile two-in-one, this double-ended pencil performs an almost endless array of tasks. Depending on which of our three shade duos you pick, the matte side can be used as an eye shadow base (or shadow itself) and brow highlighter, while the pearl side can brighten up the inner corners of the eyes, and lift and define the brows. Vanilla/Natural Taupe brightens, shapes, and fills in brows. So much brow bang for your buck.Features:Matte side can be used as an eye shadow base and brow highlighterPearl side can brighten up the inner corners of the eyes, and lift and define the browsVanilla/Natural Taupe brightens, shapes and fills browsEasy to useApplication: Use the matte side to enhance and shape the brows, use the pearl side as an instant brow lift and eye brightener. 01 Matte Beige/High Glow:\u00a0 Both sides can be used underneath the brow bone as a highlighter. Matte Beige can be used as an eyeshadow or eyeshadow base. High Glow can be used in the inner corners of the eyes to brighten. 02 Matte Cream/Luminous Lift:\u00a0 Both sides can be used underneath the brow bone as a highlighter. Matte Beige can be used as an eyeshadow or eyeshadow base. High Glow can be used in the inner corners of the eyes to brighten. 03 Vanilla/Natural Taupe:\u00a0 Both sides are matte. Vanilla can be used underneath the brow bone as a highlighter. It can also be used as an eyeshadow or eyeshadow base. Natural Taupe can be used to define and fill-in brows and as an eyeshadow. Ingredients: Isodecyl Isononanoate, Hydrogenated Coco-Glycerides, Euphorbia Cerifera Cera (Candelilla Wax), Cera Microcristallina (Microcrystalline Wax), Polymethyl Methacrylate, Silica, Copernicia Cerifera Cera (Carnauba Wax), Disteardimonium Hectorite, Tocopherol, Propylene Carbonate, Ascorbyl Palmitate, Mica, Titanium Dioxide (CI 77891), Iron Oxide (CI 77491). +/- May Contain: Iron Oxides (CI 77492, CI 77499). ",
+ "rating": "3.3",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "235",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Never Fail Eye Liner",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2f7610f4a82cc1c7abb8ddc33ab236f0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Enjoy beautifully defined eyes for up to 16 hours! New Infallible Never Fail Eyeliner is L'Oreal's most advanced mechanical liner with superior long-wearing technology. The rich and creamy formula glides on easily and evenly and sets quickly for fade-proof colour. Use the bulit-in smudger and sharper to create versatile eyeliner looks for any occasion.",
+ "rating": "3.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "234",
+ "brand": "sante",
+ "name": "Sante Kajal Eyeliner Pencil",
+ "price": 17.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9006e43a8083b3dff963ecbfa02c3707_ra,w158,h184_pa,w158,h184.png",
+ "description": "Sante gentle eyeliner pencils have a wonderful texture. They are perfectly suitable\n for use on the inner eyelid. Or can be used blended with a sponge to create a \nsophisticated effect and make the color last longer. Vegan and \ngluten-free. Not tested on animals.Ingredients: Caprylic/Capric Triglyceride, Ricinus Communis \n(Castor) Seed Oil*, Hydrogenated Palm Kernel Glycerides, Copernica \nCerifera (Carnauba) Wax, Hydrogenated Castor O il, Euphorbia Cerifera \n(Candelilla) Wax, Cera Alba (Beeswax), Hydrogenated Palm Glycerides, \nAscorbyl Palmitate, Tocopherol, Mica, [+/-CI 77007, CI 77288, CI 77491, \nCI 77492, CI 77499, CI 77510, CI 77742, CI 77891]",
+ "rating": "3.9",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "233",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Kajal Eyeliner",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/62462de8cb4b6d0759b9e4b13bc602ed_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Kajal Eyeliner pencils, highlight and define the beauty of your eyes. Mineral pigments are fused with quince and Japan waxes for smooth, effortless application. Extracts of anthyllis, witch hazel and black tea have a soothing effect on the delicate skin around the eyes.\nFeatures:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGVegan (Kajal Eyeliner 02-05)Dermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditions\n\n\u00a0",
+ "rating": "4.4",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "232",
+ "brand": "maybelline",
+ "name": "Maybelline Line Express Eyeliner",
+ "price": 7.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4e88f928ad91c88e2ecb8596431ce799_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Line Express Eyeliner's intense color formula + smart tip smudger makes this liner glide on smoothly and is easy to apply with just one stroke.Features: Creamy formula delivers intense colorContour smudger makes blending easyAll-day wearSafe for sensitive eyes and ophthalmologist-testedContact lens safe",
+ "rating": "4.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "231",
+ "brand": "almay",
+ "name": "Almay Intense i-Colour Bring Out Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/384c7e6d20cf4ad138b7120b43a8a310_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n\nBring out your eye color with rich contrasting color! This eyeliner softly defines your eyes with a pearlescent color that will make your eye color pop. Comes with a convenient built in sharpener that ensures precise application\u2014 and resists smudging and fading throughout the day. Features: \n\nHypoallergenic\nNon-irritating\nOphthalmologist, Clinically and allergy tested\nSuitable for contact lens wearers\n\n\n",
+ "rating": "4.3",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "230",
+ "brand": "maybelline",
+ "name": "Maybelline Unstoppable Eyeliner",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bab89a9fe13b34235e0dd1f4f44c05cf_ra,w158,h184_pa,w158,h184.png",
+ "description": "Unstoppable Eyeliner allows ultra-smooth application for defined lines and eyes.\nIt is a self-sharpening mechanical pencil, and will hold your look in place all day long.\nWaterproof.\nOphthalmologist tested, contact lens safe for sensitive eyes.\n",
+ "rating": "4.3",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "229",
+ "brand": "pure anada",
+ "name": "Pure Anada Pureline Pencil Eye Liner",
+ "price": 14.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4b8ab1da556c57a01854b5bf23016f48_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "These\u00a0natural pencils are made with\u00a0plant oils and mineral pigments.\u00a0 If\n you prefer a traditional pencil to line your eyes, and want to use a \nproduct with natural ingredients,\u00a0 try Pure Anada \nPureline eye pencils.Ingredients: Octyldodlecyl Stearoyl Stearate (plant origin), Triglycerides, Hydrogenated Vegetable Oil, Prunus Amygdalus Dulcis (Organic Sweet Almond) Oil, Copernicia Cerifera (Carnauba) Wax, Olus Oil, Candelilla Cera, Mica, Sesamum Indicum (Sesame) Oil, Polyglyceryl-3 Diisostearate, Glyceryl Caprylate, Tocopheryl Acetate, Sorbic Acid, Titanium Dioxide (C.I. 77499), Iron Oxide (C.I. 77891 or 77491) Note: \u00a0The ingredients in Pure Anada Pureline Pencils are approved by Eco-cert and/or certified organic.",
+ "rating": "4.0",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "228",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Le Khol Eyeliner",
+ "price": 9.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/94a08dc5666ab926584801c34140b29e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "L'Oreal Paris Colour Riche Le Kh\u00f4l Eyeliner comes in a range of beautiful, wearable shades with a luxurious, intense formula\n combining oil and wax. This eyeliner softly glides over the \neyelid allowing you to achieve a long-lasting and intense colour result.",
+ "rating": "4.5",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "227",
+ "brand": "",
+ "name": "Earth Lab Vegan Mineral Eye Pencil",
+ "price": 18.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e43ef102523ce5c38bd92ce1cb562395_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "These natural minerals eye pencils are made fresh to order. They\n are super soft, and once they're on they do not run or smudge easily. \nThat said - they do wash off easily as well!Ingredients: Jojoba Oil, Castor Oil, Carnauba Wax, \nCandelillia Wax, Ozokerite Wax, Vitamin E, Mica, and Iron Oxides\nMineral pencils expire within 6 months of purchase.",
+ "rating": "3.4",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "226",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Eye Liner",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f8d347e5c094ab100de0f04bc163eb79_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "ColorStay Eyeliner glides on easily adding drama and definition to your eyes for up to 16 hours. Waterproof formula won't smear, smudge or fade",
+ "rating": "4.7",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "225",
+ "brand": "maybelline",
+ "name": "Maybelline Color Show Kohl Liner",
+ "price": 5.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c2fcd605bbf3941b521fb74bfa942ac6_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Color Show Kohl Liner is the hottest new way to create statement eyes!The brightest colors. The easiest glide. Creamy, rich color has never \nbeen this precise!",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "224",
+ "brand": "stila",
+ "name": "Stila La Quill Eye Liner Brush",
+ "price": 36.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f70d6757e11ac6303da25cfa2c6cd3dc_ra,w158,h184_pa,w158,h184.png",
+ "description": "Stila La Quill Eye Liner Brush is a coveted selection of Stila\u2019s best-selling products exclusively handpicked by Stila's very own lead makeup artist, Sarah Lucero. Inspired by Sarah Lucero's work on fashion runways, Stila's artistry proven makeup performs as promised.Features:Designed to dispense liquid eye liner evenly and precisely in a thin or bold lineBrush acts like a calligraphy pen, depositing the formula effortlessly for chic precise linesLa Quill works best with stila long-wearing liquid liner but may also be used with other types of eyelinersDirections: Dip stila's La Quill Precision Eye Liner Brush directly into cushion (sold separately), then draw across the lid in a slow, smooth, fluid motion. Use the brush to create a tight line by drawing short dashes along the lash line, connecting the dashes and moving from inner eye to outer corner.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "223",
+ "brand": "nyx",
+ "name": "NYX Super Fat Eye Marker",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c53e6de2dbf4c4679ba491247a5ab608_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The NYX Super Fat Eye Marker is a real magic marker!\u00a0 The extra wide felt tip eye liner is perfect for creating a dramatic cat-eye look.\u00a0 The eye marker application is smooth and the striking results are long-lasting. ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "222",
+ "brand": "covergirl",
+ "name": "CoverGirl Bombshell Powder Brow & Liner in Blonde",
+ "price": 9.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/49400a1459a15523535e61d0db29e57d_ra,w158,h184_pa,w158,h184.png",
+ "description": "Bring sexy smolder to eyes & brows.\u00a0 Soft powder adheres to brows and defines eyes.Features:2-in-1 brow & liner powderVelvety powder fills in browsUse also to softly line & define eyesDirections: Twist open and pull applicator up and tap lightly on tube side to remove excess powder. Lightly brush over eyebrows until desired effect is reached. Also use to softly line & define eyesIngredients: Boron Nitride, Dimethicone, Silica, Polyethylene, Pentylene Glycol, Pumice, Kaolin, Dimethiconol, Phenoxyethanol, Ethylhexylglycerin, Dehydroacetic Acid, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, May Contain/Peut Contenir: Titanium Dioxide, Iron Oxides, Mica",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "221",
+ "brand": "maybelline",
+ "name": "Maybelline Eye Studio Master Graphic in Striking Black",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9c98f99f2033bb942286fa1bb32b4c51_ra,w158,h184_pa,w158,h184.png",
+ "description": "Eye Studio Master Graphic Liquid Liner from Maybelline New York. Love the graphic look? This genius eyeliner automatically draws the boldest line with the sharpest edge! Features:Automatically draw the boldest line with the sharpest edgePitch black finishUse the flat side for bold line. Use the sharp tip for the edges",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "220",
+ "brand": "covergirl",
+ "name": "CoverGirl Intensify Me! Liquid Liner",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/28f0f546d02a7c4330b4d186d42e3c32_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Try CoverGirl Intensify Me! Liquid Liner and get the control of a pencil with the intensity of a liquid eyeliner for \nbeautifully defined eyes every time. The all-new paddle-shaped tip gives\n you two looks in one\u2014thick and dramatic or thin and elegant. The \nintense black formula glides on smoothly and dries quickly for instant \ndrama. Clinically tested, suitable for sensitive eyes.Directions: Stand 6 inches away from a mirror and tilt your chin up, so \nthat when you look down your nose into the mirror, you can see your \nentire eyelid. Dab concealer or dust translucent powder on your upper \nlids. Blend well with a sponge or lightly pat with a fingertip to cover \nveins and prevent creasing.Before applying liner, \ndetermine your eye shape. If eyes are close-set or round, line only the \nouter corners. Otherwise, line the entire upper lid.Gently pull your eyelid taut at an upward angle. Beginning at the inner \ncorner, draw small, connected dashes along the top lashes. Be sure to \nstay close to the roots so there is no skin visible between the lashes \nand the liner. To make eyes look bigger, extend the liner slightly \nbeyond the outer corners.Use a cotton swab to fix mistakes. For larger messes, dip it in makeup remover.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "216",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Infallible Black Velvet Liner",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b6ca6fa1ab5021b55d9ca0ca3ed40437_ra,w158,h184_pa,w158,h184.png",
+ "description": "Black Velvet by Infallible is L'Oreal's first plush velvet eyeliner for the ultimate bold, slick line in one stroke. This intensely vibrant black liner has an easy application felt tip to deliver supreme softness with a satin-like finish. Features:14-hour wearPlush velvet tipSatiny black finishHow to Use: For thinner lines, hold liner so tip is horizontal. For thicker lines, hold liner so tip is vertical. Start by the inner corner and apply across lashline to outer corner of eye. Apply to bottom lid as close to waterline as possible. Connect top and bottom lines at the outer corner of the eyelid.INGREDIENTS:\u00a0 AQUA / WATER / EAU - BUTYLENE GLYCOL - CI 77266 / BLACK 2 - ACRYLATES COPOLYMER \u2013 GLYCERIN - BEHENETH-30 - SODIUM LAURETH-11 CARBOXYLATE \u2013 PHENOXYETHANOL - LAURETH-10 - SODIUM LAURETH-12 SULFATE \u2013 ALCOHOL - POLYSORBATE 80 - SODIUM DEHYDROACETATE - POTASSIUM SORBATE - C11-15 PARETH-7 -CAPRYLYL GLYCOL ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "215",
+ "brand": "milani",
+ "name": "Milani Eye Tech Bold Liquid Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/be5757ecba60adb5369518ee5eb5d16e_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Take flight with this big, bold, wing-perfecting felt-tip tool. Whether you\u2019re into high-drama cat eyes or the daintier \u201ckitten\u201d look, they\u2019ll go on smoothly in a single, precise stroke. Bonus: This liner lasts for hours, without a smear or a smudge. Game-changer. Available in Rich Black.Features:Smooth applicationPrecision tipLong-lastingSmear-proof, non-clumpingSmudge-proofApplication: Begin applying a thin line from the inner to the outer corner of your eyelid along your upper or lower lash line. Tip: Store horizontally. Ingredients: Paraben Free Water (Aqua), Butylene Glycol, Alcohol, Glycerin, Black 2 (CI 77266), Polyacrylate-16, Disodium Cetyl Phenyl Ether Disulfonate, PEG/PPG-14/4 Dimethicone, PEG-14 Dimethicone, Phenoxyethanol, Dehydroacetic Acid, Caprylyl Glycol, Diethylhexyl Sodium Sulfosuccinate, Disodium Laureth Sulfosuccinate, Sodium Laureth-12 Sulfate.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "212",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics TexasLiner Liquid Eye Liner",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c1a77bb86938bd9d825c6718216cee58_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Everything is bigger in Texas! This easy to control chubby felt tip \nliquid eyeliner allows for a precise cat eye in one stroke! Soft and \nsubtle or bold and dramatic? You decide. This quick drying water-based \nformula glides on perfectly creating an intense, long-lasting \ncrease-proof line. Shorter applicator fits snugly in the palm of the \nhand for a mistake-proof line.Features:\nParaben-freeOphthalmologically testedHorizontal storage is strongly recommendedThe water-based formula glides on perfectly and dries quickly creating an intense, crease-proof line Shorter applicator fits snugly in the palm of the hand for a mistake-proof lineHow to Use: Hold the pen at an angle so the tip lies flat against the lash line. \nSlowly move the pen from the inner corner of the eye to the outer corner\n of the eye using small strokes. Ingredients: Aqua (Water), Polyurethane-2, Cera Alba (Beeswax), Sucrose Acetate \nIsobutyrate, Glyceryl Stearate, Methyl Pyrrolidone, Glyceryl Stearate \nCitrate, Dimethylimidazolidinone Rice Starch, PEG-6 Beeswax, VP/Eicosene\n Copolymer, Alcohol Denat., Sorbitol, Benzyl Alcohol, Diethylhexyl \nSebacate, Simmondsia Chinensis (Jojoba) Seed Oil, Laureth-2 Benzoate, \nButylene Glycol, VP/Hexadecene Copolymer, Tocopherol, Polybutene, \nDimethicone PEG-8 Polyacrylate, Parfum (Fragrance), \nHydroxypropylcellulose, Alpha-Isomethyl Ionone, Sodium Lauryl Sulfate, \nDipropylene Glycol, Laureth-23, Geraniol, Iodopropynyl Butylcarbamate, \nCitronellol, Linalool, Methylparaben, Phenoxyethanol, Limonene, \nButylparaben, Isobutylparaben, Isopropylparaben. +/- : CI 77499 (Iron \nOxides).",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "211",
+ "brand": "wet n wild",
+ "name": "Wet n Wild ProLine Graphic Marker Eyeliner",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/917bddd5782d5f05820f61f0bef8f23e_ra,w158,h184_pa,w158,h184.png",
+ "description": "Get graphic with Wet n Wild ProLine Graphic Marker Eyeliner! Draw bold lines with this soft, angled marker tip. This marker liner gives you full control for the quickest, easiest graphic application ever! Features:Create bold graphic looks or thin subtle lines with the angled markerDark, opaque color for bold resultsQuick drying and smudge-freeDirections: Create a variety of lines by adjusting angle of the unique angled marker tip.Ingredients: Water/Eau, Acrylates Copolymer, Laureth-21, Butylene Glycol, PEG-40 Hydrogenated Castor Oil, Glycerin, Propanediol, Propylene Glycol, Chlorphenesin, Dipotassium Glycyrrhizate, Caprylhydroxamic Acid, Trisodium EDTA, Black 2/CI 77266. ",
+ "rating": "",
+ "category": "pencil",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "210",
+ "brand": "",
+ "name": "Pysicians Formula Eye Booster Cushion Liquid Liner + Serum Ultra Black",
+ "price": 15.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7edeec469ab0103287cdc2c984b39d28_ra,w158,h184_pa,w158,h184.png",
+ "description": "Unique & Professional Cushion Eyeliner: Innovative liquid formula with sponge cushion delivery system dispenses the perfect amount of eyeliner onto your brush for a precise, sophisticated line every time. Advanced formula includes lash boosting complex that enhances the appearance of lashes while providing instant definition in one step.Features:Includes eyeliner brush for easy, mistake-proof applicationHigh-tech formula is long-wearing, water-resistant and smudge-resistant24-hour wearDirections: Apply eyeliner at the base of lashes. Never apply eyeliner inside the lash line. Keep cap tightly closed to prevent product from drying out. Wipe off brush on clean tissue after each use. Ingredients: Water/Eau, Iron Oxides, Acrylates Copolymer, Butylene Glycol, Black 2, Stearic Acid, Glyceryl Stearate, Oleyl Alcohol, Polybutene, Myristoyl Pentapeptide-17, Panthenol, Troxerutin, Tocopheryl Acetate, Acrylates/C10-30 Alkyl Acrylate Crosspolymer, Caprylyl Glycol, Cellulose Gum, Ethylhexylglycerin, Glycerin, Hectorite, Hexylene Glycol, Magnesium Aluminum Silicate, Styrene/Acrylates Copolymer, Triethanolamine, Xanthan Gum, 1,2-Hexanediol, Benzoic Acid, Phenoxyethanol, Sodium Benzoate ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "209",
+ "brand": "annabelle",
+ "name": "Annabelle EyeInk2 Liquid Eyeliner Duo",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e36fc76e51587b115b3358c336d0fb50_ra,w158,h184_pa,w158,h184.png",
+ "description": "\n Get the ultimate lines with this practical double-ended \neyeliner! The Annabelle EyeInk2 Liquid Eyeliner Duo has one ultrafine tip that allows you to create thin, precise lines \nwhile the other tip creates thicker lines. Double the precision, double the fun! Features:\nGlossy formulaFast dryingLong lasting up to 10H+WaterproofSmudgeproofSuitable for sensitive eyes and contact lens wearers ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "207",
+ "brand": "annabelle",
+ "name": "Annabelle Glitterama Liquid Eyeliner",
+ "price": 8.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/295d6b52d5dc093aa4f7ce001ba30c58_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Shine like a star! Annabelle Glitterama Liquid Eyeliner's long-wearing formula is loaded with \nlight-reflecting micro-glitter to make your eyes pop.It can be applied \nin a thin sparkling line above the upper lash line or over the entire \neyelid as a dramatic eyeshadow. The fine tapered brush applicator \ndistributes\nthe sparkles smoothly and evenly. Ophthalmologist tested.Shade Range:",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "206",
+ "brand": "wet n wild",
+ "name": "Wet n Wild ProLine Felt Tip Eyeliner",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/32cde2248ec2fb43fd0b165521965b3f_ra,w158,h184_pa,w158,h184.png",
+ "description": "The ProLine Felt Tip Eyeliner is a convenient marker with its soft, felt-tip gives you ultimate control to write on your eyeliner however you'd like. The fine, soft felt-tip glides on easily creating fine or bold lines. Features:Benefits of a liquid liner with the convenience of a penFine, soft felt-tip glides on easilyCreate fine or bold lines for subtle or dramatic results Directions: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Water/Eau, Acrylates Copolymer, Butylene Glycol, Laureth-21, Glycerin, Propylene Glycol, PEG-40 Hydrogenated Castor Oil, Chlorphenesin, Sodium Dehydroacetate, Dipotassium Glycyrrhizate, Trisodium EDTA, Methylisothiazolinone, Black 2/CI 77266.",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "204",
+ "brand": "marcelle",
+ "name": "Marcelle Double Precision Liquid Eyeliner Pen",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f091348f64e2245afa02f30fcb139444_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Do you want to go subdued and subtle, or intense and defined? The \ninnovative Marcelle Double Precision Liquid Eyeliner Pen is up to the \nchallenge. ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "203",
+ "brand": "annabelle",
+ "name": "Annabelle EyeInk2 Mistake Proof Eyeliner + Corrector",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8ca9c5677e8b27321069490cc08b3d46_ra,w158,h184_pa,w158,h184.png",
+ "description": "\n Uneven line? No need to whine! This liner's fine felt tip is \ndesigned for ultimate precision and is the perfect tool to achieve a \nnatural or dramatic look. To correct smudges or unevenness, just flip \nthe pen around to reveal a magic corrector to erase those little \nmistakes as though they never happened! Eyeliner's Key features:\nGlossy formulaFast dryingLong lasting up to 10H+WaterproofSmudgeproof Corrector's Key features:\nGentle and non-greasy formulaRemoves long-wearing and waterproof makeupPerfect for on-the-go touch-ups!\n ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "202",
+ "brand": "covergirl",
+ "name": "CoverGirl Ink It! By Perfect Point Plus Violet Ink",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5b4b8ad9a7d0264fa6b66d4027aa0f7e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The CoverGirl Ink It! By Perfect Point Plus gives you vibrant, high impact color that glides on smoothly with pen-like precision for intense eye looks that last all day.Features:Crease and fade resistantSelf-sharpening pencilWaterproofApplication Tips: Start at the inner corner of your eye and draw a line close to your lash line.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "201",
+ "brand": "marcelle",
+ "name": "Marcelle Kajal Kohl Eyeliner Blackest Black",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bb7368014d95f21e66c99b0f4d5bf91b_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "\n Marcelle Kajal Kohl Eyeliner is offered in an ancient \ntraditional chunky format with a long pointy tip that allows for an \neasy, extra-precise application. Plus, it\u2019s waterproof and proven to \nlast at least 6 hours on the waterline. This antioxidant-enriched, \npreservative-free liner is sure to give a daring, seductive look that \nlasts and lasts.Hypo-allergenic and perfume free. Paraben free. Tested under ophthalmologic control. ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "200",
+ "brand": "wet n wild",
+ "name": "Wet n Wild H2O Proof Liquid Eyeliner",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8ff7034e32f516c8df2ab96d77535570_ra,w158,h184_pa,w158,h184.png",
+ "description": "Wet n Wild H2O Proof Liquid Eyeliner provides lasting Waterproof Definition that won't let you down! It's waterproof, smudgeproof, and super long-lasting. Create subtle fine lines to bold dramatic looks with the precise applicator brush.Features:Long-lasting waterproof formula Won\u2019t skip, smudge, or streakSoft, felt-tip brush for precision control and mistake-proof applicationDirections: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Isododecane, Trimethylsiloxysilicate, Trimethylpentanediol/Adipic Acid/Glycerin Crosspolymer , C11-12 Isoparaffin, Polypropylsilsesquioxane, C8-9 Isoparaffin, Trihydroxystearin, Silica Dimethyl Silylate, Phenoxyethanol, Sorbic Acid, Tocopherol, Black 2/CI 77266.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "199",
+ "brand": "milani",
+ "name": "Milani Eye Tech Extreme Liquid Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/db9cbca2c6fac992ed5ccff1adab5070_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "It\u2019s always great to have options. And with this versatile \u201cextreme\u201d felt tip tool, you can line your lids in three different intensities - thin, medium and heavy \u2013 just by switching up the angle you hold it. About the formula: It\u2019s waterproof, non-feathering and glides on smoothly in a single stroke. Available in Blackest Black.Features:Easy grip handle for precise applicationNon-feathering formulaParaben-FreeWaterproofMatte-finishApplication: Extreme felt-tip point creates three line styles:\u00a0 Thin: use the very tip for a slender, extremely thin line.\u00a0 Medium: hold pen at a slight angle to create a bolder, thicker line.\u00a0 Heavy: hold the pen horizontally and color over the eyelid for an eyeshadow like coverage. Ingredients: Water (Aqua), Butylene Glycol, Styrene/Acrylates/Ammonium Methacrylate Copolymer, PEG-60 Hydrogenated Castor Oil, Phenoxyethanol, Coco-Glucoside, Potassium Sorbate, Citric Acid, Sodium Benzoate, Sodium Laureth-12 Sulfate, Ammonium Hydroxide, Iodopropynyl Butylcarbamate, Black 2 (CI 77266).",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "198",
+ "brand": "marcelle",
+ "name": "Marcelle Waterproof Liquid DIP-PEN Eyeliner 10H+",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7bb485ce33465552ef0991e552d449ca_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Marcelle Waterproof Liquid DIP-PEN Eyeliner is offered in a sleek dip-pen packaging that \nlooks like a pen but is actually a bottle with a practical and easy to \nuse wand. It comes with a fine-tip applicator that allows for an \nultra-fine, precise and effortless application. Its water-based formula \ncontains special care ingredients to protect the delicate skin in the \neye area. Enriched with vitamin E and aloe vera to provide moisturizing \nand regenerating properties.\nHypo-allergenic and perfume free.Shade Range:\u00a0",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "197",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Sexy Booster Cat Eye Collection Liquid Eyeliner ",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1e27825577015c0144768f2a5d9e9233_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Perfect your cat eye with Physicians Formula Sexy Booster Cat Eye Collection Liquid Eyeliner. It's infused with a warm vanilla fragrance and ingredients including Cocoa Extract that are oh-so sexy!Features: HypoallergenicParaben & Gluten freeDermatologist approvedSafe for sensitive eyes and contact lens wearersDirections: Follow the contour of your eye and line the top lid from inner to outer corner.\u00a0 At the outer corner of your eye, curve liner upward at the same angle of the outer corner of your brow.Ingredients: Water, Iron Oxides, Butylene Glycol, Stearic Acid, Glyceryl Stearate, Oleyl Alcohol, Fragrance, Acrylates/C10-30 Alkyl Acrylate Crosspolymer, Alumina, Androstadienone, Black 2, Caprylyl Glycol, Cellulose Gum, Epimedium Sagittatum Extract, Ethylhexylglycerin, Glycerin, Hectorite, Hexylene Glycol, Hydroxyethylcellulose, Magnesium Aluminum Silicate, Panthenol, Pregnadienol, Silica, Sorbic Acid, Styrene/Acrylates Copolymer, Theobroma Cacao (Cocoa) Fruit Powder, Tocopheryl Acetate, Triethanolamine, Xanthan Gum, Phenoxyethanol.",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "196",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Argan Wear Ultra-Nourishing Kohl Kajal Eyeliner",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6e912cfe1f08dc802ad241f4adcb36e9_ra,w158,h184_pa,w158,h184.png",
+ "description": "Luxurious, intense and richly-pigmented kohl kajal eyeliner creates the most dramatic and exotic eye look. Infused with 100% Pure Argan Oil, known as \"liquid gold\" for its ultra-nourishing & conditioning properties. Ultra-creamy eyeliner glides-on effortlessly for dramatic definition and inner rim intensity.Features:High-performance kohl formula is 100% waterproof for color that won't budge or smudge, delivering seamless and glamorous definitionPropel and repel tool allows for easy and fool-proof application and maximum convenience!24 hour wearDirections: Apply at the base of upper lashes and on inside of lower eye rim for ultra-dramatic definition. Ingredients: Triethylhexanoin, Caprylic/Capric Triglyceride, Ozokerite, Copernecia Cerifera (Carnauba) Wax/Cire de Carnauba, Polymethyl Methacrylate, Beeswax/Cire d'abeille, Dipentaerythrityl Tetrahydroxystearate/ Tetraisostearate, Methyl Methacrylate Crosspolymer, Argania Spinosa (Argan) Kernel Oil, Pentaerythrityl Tetra-Di-t-Butyl Hydroxyhydrocinnamate, Dicalcium Phosphate",
+ "rating": "3.7",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "194",
+ "brand": "wet n wild",
+ "name": "Wet n Wild MegaLiner Liquid Eyeliner",
+ "price": 5.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a972397ff3150eab0984483fcd226440_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Wet n Wild MegaLiner Liquid Eyeliner is formulated with high-definition pigment and a unique blend of polymers for a rich, fluid formula. It dries fast and stays put to subtly enhance or dramatically define the eyes. An easy-to-control, flexible brush gives you precise application.Features:Dries fast and stays put Long-lasting, smudgeproof wear Easy-to-control inkwell applicator Directions: Start at the inner corners of your eyes and make small strokes following the shape of your eye. For extra drama, extend and thicken at the outer corner of your eyes.Ingredients: Water/Eau, Propylene Glycol, PVP, Steareth-2, Stearic Acid, Steareth-21, Sodium Polymethacrylate, Glyceryl Stearate, Laureth-21, Phenoxyethanol, Arginine, Caprylyl Glycol, PEG-40 Hydrogenated Castor Oil, Citric Acid, Ethylhexylglycerin, Hexylene Glycol, Sodium Dehydroacetate, Simethicone, Magnesium Aluminum Silicate, Xanthan Gum, Sodium Citrate, Cellulose Gum, Chlorphenesin, Acrylates Copolymer, PPG-26-Buteth-26, Microcrystalline Cellulose, [+/- (MAY CONTAIN/PEUT CONTENIR): Iron Oxides/CI 77491, CI 77492, CI 77499, Ultramarines/CI 77007, Titanium Dioxide/CI 77891, Mica, Black 2/CI 77266, Carmine/CI 75470, Chromium Oxide Greens/CI 77288, Ferric Ferrocyanide/CI 77510].",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "193",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Skinny Liquid Liner ",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/808647e541dad521fcc1fa0d728dd47e_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon ColorStay Skinny Liquid Liner gives you bold, even colour with a precise skinny tip applicator!Features:0.1mm skinny tip liner that lasts all dayEasy to apply with mistake proof controlBold, even color in one strokeOphthalmologist Tested\n",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "192",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Kohl Kajal Eyeliner Trio ",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ac56e10c3ae7d7ec6af4c09ac868831b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula's intense and richly pigmented eyeliners are now perfectly paired to create a Nude Look.\u00a0 Specially developed to line the inner rim of the eyelid, this unique eyeliner form contains a high concentration of pigments for dramatic definition that glides-on effortlessly.Directions: Apply Eyeliner at the base of upper lashes and on inside of lower eye rim for ultra-dramatic definition. Layer shades together for endless looks. Hypoallergenic. Fragrance Free. Paraben Free. Gluten Free. Dermatologist approved. Safe for Sensitive Eyes and Contact Wearers. Ingredients: Hydrogenated Polyisobutene, Beeswax, Caprylic/Capric Glycerides, Synthetic Fluorphlogopite, Silica, Ozokerite, Hydrogenated Coco-Glycerides, Copernicia Cerifera (Carnauba) Wax, Jojoba Esters, Microcrystalline Wax, Aluminum Calcium Sodium Silicate, Dimethicone, Polybutene, Alumina Magnesium Metasilicate, Bisabolol, Calcium Sodium Borosilicate, Caprylyl Glycol, Cetyl Dimethicone, Disteardimonium Hectorite, Panthenyl Ethyl Ether, Tin Oxide, Titanium/Titanium Dioxide, Tocopheryl Acetate, Triethoxycaprylylsilane. May Contain: Aluminum Powder, Bismuth Oxychloride, Carmine, Chromium Oxide Greens, Copper Powder, Ferric Ammonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese Violet, Mica, Titanium Dioxide, Ultramarines, Yellow 5 Lake ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "191",
+ "brand": "zorah",
+ "name": "Zorah Liquid Liner",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3dc157e4a7e28f90dbe7e9849ccfc87a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Zorah Liquid Liner gives you 12 hours of long-lasting intense color, is transfer-free (leaves no trace on crease above the eyelid) and has Pure Light Capture\u00ae minerals that deliver color and radiance. Silky lines and refreshingly light, Pure Argan eyeliner leaves a weightless feel on the eyelids.What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Directions: Lightly trace the lash line. Repeat with a second layer to intensify. Make small dots from the outside working inward. Wait 3 seconds before opening eye so as to avoid streaking. Repeat line if necessary.Ingredients: Aqua, Hydrolyzed Corn Starch, Glyceryl Stearate Citrate, Argania Spinosa Kernel Oil*, Cucurbita Pepo (Pumpkin) Seed Oil*, Glycerin, Silica, Copernicia Cerifera (Carnauba) Wax*, Hectorite, Sodium Phytate, Sodium Citrate, Benzyl Alcohol, Salicylic Acid, Sorbic Acid, Dehydroacetic Acid. [+/-(peut contenir/may contain) Iron Oxides,Mica, Ultramarines, Bismuth Oxychloride.]Tested dermatologically and ophthalmologically.Certified by Ecocert Greenlife: 98% of the total ingredients are from \nnatural origin, 5% of total ingredients are from organic farming",
+ "rating": "3.3",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Natural",
+ "Organic",
+ "Vegan",
+ "Gluten Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "190",
+ "brand": "milani",
+ "name": "Milani Fierce Foil Eyeliner",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/98ff3db1b142c3f9f915a2e9a0dafa92_ra,w158,h184_pa,w158,h184.png",
+ "description": "This is so new, it\u2019s hopping right off the Milan runway and into your makeup bag. A truly next-level eyeliner, it gets its richness from a black base that blasts the luminosity, creating a shiny, shimmery special effect that lights up your eyes. Blackened jewel tones with a foil finish, these can be used for lining or a full-on lid look. And there are two great ways to play these blendable beauties: For a \u201cclassic cat\u201d look, extend the color just past the lashline. For a \u201csmoldering smoky\u201d vibe, gently blend upward from the lashline to the crease. Available in four chic shades - Black Gold Foil, Brown Foil, Purple Foil and Navy Foil \u2013 with a custom pro brush that deposits color exactly where you want it. Glow for it.Features:2-in-1 liner create a classic cat eye to smoldering smokey lookThe innovative blackout base enhances the pigment luminosity, creating a shiny special effect that brightens eyesProfessional brush applicator includedAvailable in four long-wearing shadesEasy to useApplication: Gently glide the tip of the applicator brush over color. Apply product by gliding brush along lashline from inner to outer corner of the eye. For the Classic Cat Eye: Slightly extend the end of the liner past the lashline. For a Smoldering Smoky Look: Blend upward from the lashline to the crease. Ingredients:\u00a0 Glycerin, Mica, Ethylhexyl Palmitate, Silica, Cera Alba (Beeswax), Copernicia Cerifera Cera (Carnauba Wax), Aluminum Calcium Sodium Silicate, Synthetic Fluorphlogopite, Isohexadecane, Caprylyl Glycol, Phenoxyethanol, Isopentyldiol, Tin Oxide, Titanium Dioxide (CI 77891), Iron Oxide (CI 77499). +/- May Contain: Iron Oxide (CI 77491), Ferric Ferrocyanide (CI 77510), Carmine (CI 75470), Ultramarines (CI 77007). ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "189",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Shimmer Strips Kohl Kajal Eyeliner Trio",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/98c26c4923f92c11e36f7dbc28e800a9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Shimmer Strips Kohl Kajal Eyeliner is a Highly \npigmented eyeliner trio that delivers rich color to create a Nude Look \nfor ANY eye color.Features: Versatile eyeliner for dramatic definition and inner eye rim intensity Super- smooth gliding texture makes defining eyes effortless 100% Waterproof wearDirections: Apply eyeliner at the base of upper lashes and on inside of lower eye \nrim for ultra-dramatic definition. Layer shades together for endless \nlooks.Ingredients: Hydrogenated Polyisobutene, Beeswax, Caprylic/Capric Glycerides, Silica,\n Ozokerite, Hydrogenated Coco-Glycerides, Copernicia Cerifera (Carnauba)\n Wax, Jojoba Esters, Microcrystalline Wax, Dimethicone, Polybutene, \nAlumina Magnesium Metasilicate, Bisabolol, Caprylyl Glycol, Cetyl \nDimethicone, Disteardimonium Hectorite, Panthenyl Ethyl Ether, \nTocopheryl Acetate, Triethoxycaprylylsilane May Contain: Aluminum, \nAluminum Calcium Sodium Silicate, Aluminum Powder, Bismuth Oxychloride, \nCalcium Sodium Borosilicate, Carmine, Chromium Oxide Greens, Ferric \nAmmonium Ferrocyanide, Ferric Ferrocyanide, Iron Oxides, Manganese \nViolet, Mica, Synthetic Fluorphlogopite, Tin Oxide, Titanium Dioxide, \nTitanium/Titanium Dioxide, Ultramarines, Yellow 5Hypoallergenic. Fragrance-free. Paraben-Free. Gluten Free. \nDermatologist approved. Safe for sensitive eyes and contact lens \nwearers.",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "188",
+ "brand": "pacifica",
+ "name": "Pacifica Natural Minerals Smolder Eye Lining Gel",
+ "price": 27.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/33227552d3b079b7a8c30777e426fb0b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pacifica Natural Minerals Smolder Eye Lining Gel stands above the rest. It's not\n waxy or tacky but has a creamy finish that can be smudged or left \nsharp. The smooth application allows you to rock a natural to smoky \ndramatic look with long-lasting natural mineral color. Line the eyes \neffortlessly or use as an allover creaseless shadow. Can be worn sheer \nor layered for more intensity. Gently line both upper and/or lower eye \nlid with a lining brush for a dramatic effect, or simply use your finger\n to smudge the edges for your sexy smolder. A product that is a true \nmulti-tasker. 100% vegan.In three full depth shades: Anchor: (bronzed brown)Midnight: (deep navy)Tahitian Pearl: (pearlized green/ grey with gold dust)Features:100% vegan, no animal ingredients or testingA product that is a true multi-taskerThe natural color can be layered for a more dramatic lookIngredients:\n Caprylic/Capric Trglyceride (Coconut Source), Cyclopentasiloxane, Mica,\n Tribehenin (Plant Source), Cocos Nucifera (Coconut) Oil, Cocos Nucifera\n (Coconut) Water,\u00a0 Withania Somnifera Root Extract, C18-36 Acid Glycol \nEster(Plant Source), Phenoxyethanol.\u00a0 May Contain: Calcium Sodium \nBorosilicate, Tin Oxide, 77891 Iron Oxides C1 77491, C1 77492, C1 77499,\n Ultramarines C1 77007, Titanium Dioxide C1 77891.",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "187",
+ "brand": "suncoat",
+ "name": "Suncoat Sugar-based Natural Liquid Eyeliner",
+ "price": 16.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fffdf1e1c3948940e37d5b304275c0bd_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This natural liquid eyeliner is made with natural sugar-based \nbiopolymer, not synthetic plastics such as PVP (polyvinyl pyrrolidone \npolymer) and acrylic copolymer. Colored with earth pigments and enriched\n with vitamin E. This is a superior alternative for your sensitive eyes \nand our environment!Features: Natural and vegan ingredients, readily biodegradableStays on all day long, will not smear or smudgeKind to sensitive eyesRemove with soap and waterThe wand has a rubber tip instead of hairbrush, much easier to apply. It offers precise control for fine linesIngredients: Aqua\n (water), kaolin clay, glycerin, hydrolyzed Zea mays (corn) starch \n(natural multi-sugar resin), lecithin, Citrus grandis (grapefruit) seed \nextract, tocopherol (vitamin E), citric acid, iron oxides, mica, \ntitanium dioxide.",
+ "rating": "3.5",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "186",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Liquid Eyeliner",
+ "price": 30.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a16a04e59251404056169188139a9137_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The fine brush on the Liquid Eyeliner, available in black, allows for the easy application of a precise and vivid line that is long-lasting and moisturizing to the skin. Eyebright, black tea and neem soothe the delicate skin around the eyes, while rose wax and jojoba oil protect the skin, keeping it silky smooth.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients (black): Water (Aqua), Alcohol, Sorbitol, Cetearyl Alcohol, Ricinus Communis (Castor) Seed Oil, Bentonite, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hydrogenated Jojoba Oil, Xanthan Gum, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Rosa Damascena Flower Oil, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Silica, Lysolecithin, Iron Oxides (CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007).\u00a0 *component of natural essential oilsIngredients (brown):Water (Aqua), Alcohol, Sorbitol, Cetearyl Alcohol, Ricinus Communis (Castor) Seed Oil, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Bentonite, Euphrasia Officinalis Extract, Hydrogenated Jojoba Oil, Xanthan Gum, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Rosa Damascena Flower Oil, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Maltodextrin, Silica, Lysolecithin, Carmine (CI 75470), Iron Oxides (CI 7749\u00b9, CI 77492, CI 77499).\u00a0 *component of natural essential oils",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "185",
+ "brand": "almay",
+ "name": "Almay Liquid Liner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e66b09555d41920597781babffee41dc_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\nGet beautiful definition with this easy-to-use liquid liner. Water-resistant formula lasts up to 16 hours without irritation. Unique \"inkwell\" design delivers fresh liquid liner for each application. Flexible-tip applicator provides mistake-proof control.\n\nHypoallergenic\nNon-irritating\nOphthalmologist, clinically and allergy tested\nSuitable for contact lens wearers\n\n",
+ "rating": "4.2",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "184",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Super Slim 12H Liner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c8f4a975e002711a67113fcf53b7dad0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Enjoy flawlessly \nclean lines as precise as 0.4 mm with The Super Slim by Infallible\u00ae \nNever FailTM eyeliner. The ultra-fine felt tip gives you total control \nand delivers the perfect amount of liner. The intense quick dry 12-hour \nformula glides on smoothly with continuous and even flow. Perfect for \ncreating sleek and sophisticated eyes in one simple stroke!Features:\n\nSkip-proofDrag-proofSmudge-proofbr\nOphhalmologist-tested\n\nSuitable for sensitive eyes and contact lens wearers.\n ",
+ "rating": "",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "183",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Intense Ink Eyeliner",
+ "price": 3.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/805d4c650b7c29c004f7f48d3dc96cb2_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "e.l.f. Intense Ink Eyeliner quick-dry formula instantly enhances the lash line with rich and long-lasting colour. The felt tip pen allows you to create a sleek or bold line with complete precision. It glides on smoothly without smudging, feathering, or running! How To Use: Apply colour as close to the lash line as possible. For a thin line, use just the point of the pen tip, or slant the pen along the side for a thicker, bolder line Ingredients: Water (Aqua), Styrene/Acrylates/Ammonium Methacrylate Copolymer, Polysorbate 20, Ethyheyl Palmitate, PEG-40 Hydrogenated Castor Oil, Xanthan Gum, Benzyl Alcohol, Methylchloroisothiazolinone. MAY CONTAIN: DC Black #2 (CI 77266). ",
+ "rating": "5.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "182",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Eyeliner & Shadow Stick ",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/587c92f6ba640ab943fd1a69b23e541f_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Achieve color intensity for your eyes with twist-up ease - no sharpening\n required! Glide on the soft gel liner side to create dramatic \ndefinition to the eyes. The light-reflecting pigments help line the eye\n subtly but intensely for a fuller more enhanced effect. Use the smooth\n glide shadow stick side for soft highlighting color on the eyes to \ncomplement the liner for a polished and finished look. Perfect for \ncreating an easy smoky eye!Eyeliner Ingredient: Synthetic Beeswax, Copernicia Cerifera (Carnauba) \nWax, Ceresin Wax, Bis-Diglyceryl Polyacyladipate-2, Phenyl Trimethicone,\n Cyclomethicone, Mica, Trimethylsiloxysilicate, BHT, Benzyl Alcohol, \nMethylchloroisothiazolinone, Methylisothiazolinone\n\nMay Contain:Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium Dioxide (CI77891)\n\nShadow Ingredient: Paraffin Wax, Microcrystalline Wax, Copernicia \nCerifera (Carnauba) Wax, Castor Oil, Bis-Diglyceryl Polyacyladipate-2, \nPetrolatum, Isopropyl Palmitate, BHT, Benzyl Alcohol, \nMethylchloroisothiazolinone, Methylisothiazolinone \n\nMay Contain:Iron Oxides (CI 77491 CI 77492 CI 77499), Titanium Dioxide (CI77891)\n",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "eyeshadow",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "181",
+ "brand": "l'oreal",
+ "name": "L'Oreal Telescopic Explosion Waterproof Eyeliner Black",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d8a23eb4d183b3b215d46ef39a6e781b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Now, give your eyes dramatic definition that lasts all day. Telescopic Waterproof precision Liquid Eyeliner is the perfect compagnion to Telescopic Mascara for a precisely defined and intense eye look. The Slanted Precision Felt tip is angled for the most accurate application, and the glide-on formula delivers 16-hour wear thats swim-proof, sweat-proof and smudge-proof\n\nAll-day wear\nGlides on without smudging or smearing\nSuitable for sensitive eyes and contact lens wearers\nFragrance-free\nOphthalmologist-tested and allergy-tested\n\n\u00a0",
+ "rating": "4.2",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "180",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Precision Liquid Eyeliner",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/511628443d092564dafbb56371d62748_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This long-lasting e.l.f. Studio Precision Liquid Eyeliner formula has pigment rich \ncolor that glides on smoothly for defined and precise lines. Features a \ntapered brush design to create thin or bold lines for a custom look. Try\n a winged-eyeliner look and unleash your inner retro diva!Ingredients: Water (Aqua), Acrylates Copolymer, Iron Oxides (CI 77491), Black No. 2 \n(CI 77266), PEG-40 Hydrogenated Castor Oil, Polysorbate 20, Propylene \nGlycol, Xanthan Gum, Phenoxyethanol, Methylparaben, Ethylparaben, \nButylparaben, Propylparaben, Isobutylparaben.",
+ "rating": "3.7",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "179",
+ "brand": "maybelline",
+ "name": "Maybelline EyeStudio Master Precise Ink Pen Eyeliner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6edd2cadd1894a94f264ceb19f3d344b_ra,w158,h184_pa,w158,h184.png",
+ "description": "Experience the new generation of liquid liner from Maybelline! \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Ink technology keeps pigments super-saturatedSpring cap keeps the formula freshMost precise line for lasting intensity\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0Safe for sensitive eyes and ophthalmologist-testedContact lens safeFor Best Results: 1. Start at inner corner of upper eye. Flare outward. 2. Create the sharpest design, uniquely your own.",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "178",
+ "brand": "almay",
+ "name": "Almay Intense i-Colour Play Up Liquid Liner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6cf30fccb626b5b1eacc9db7b29dc6c2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n\nPlay up your eye color with dramatic contrasting color! Define your eyes with bold color. Comes with a precision tip applicator so you can smoothly and easily create a high impact look. Features: \n\nHypoallergenic\nnon-irritating\nOphthalmologist\nClinically and allergy tested\nSuitable for contact lens wearers\n\n\n",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "177",
+ "brand": "maybelline",
+ "name": "Maybelline Line Stiletto Ultimate Precision Liquid Eyeliner",
+ "price": 10.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/350d6c6c2fa3add8ee40189cd19bfe0a_ra,w158,h184_pa,w158,h184.png",
+ "description": "Easily Creates Slender Lines\n\n\u00a0\u00a0\u00a0 Rich, Even Color\n\u00a0\u00a0\u00a0 All-Day Wear\n\u00a0\u00a0\u00a0 Smooth Glide Felt Tip\n\u00a0\u00a0\u00a0 Flexible tip guides on smoothly for the most precise control.\n\u00a0\u00a0\u00a0 All-day wear up to 8 hours\n",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "176",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Eye Primer & Liner Sealer",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a1fe077c09f5e903412fe2a6c344e115_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tNow you can have\n your eye makeup lasting longer for no fuss no budge color with this e.l.f. Studio Eye Primer & Liner Sealer.The Prime side sets your eyeshadow in so your color won't fade, \nbleed or crease. The Liner side transforms your favorite eye shadow \ninto a waterproof, smudge-proof liquid liner with this unique clear \nliquid and built-in felt tip precision eyeliner brush. Primer Colour: How to Use: Use the \"prime\" side to create a base for your eyeshadow. Apply to the eyelid and blend in.Use the \"seal\" side and mix your favorite eyeshadow color in with the brush and apply to the lash line as a liner.For best results wipe off and clean applicator before closing.Remove with eye makeup remover.Ingredients:\u00a0\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tEye Primer Ingredients: Paraffinum\n Liquidum (Mineral Oil), Mica, Talc, Bis-Diglyceryl Polyacyladipate-2, \nOzokerite, Euphorbia Cerifera (Candelilla) Wax, Methylisothiazolinone, \nCaprylyl Glycol\nMay Contain: Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium \nDioxide (CI 77891)\n\nLiner Sealer Ingredients: Water (Aqua), Acrylates/Octylacrylamide \nCopolymer, Propylene Glycol, Benzyl Alcohol, \nMethylchloroisothiazolinone, Methylisothiazolinone\n\n\t\t\t\t\t\n\t\t\t\t",
+ "rating": "4.3",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "175",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Liquid Eye Liner",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d02f86bc79a8d2f105672d99474300df_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Elegant, sexy and sophisticated, ColorStay Liquid Liner allows you to emphasize your eyes with precision. Easy application dries quickly and lasts all day without smudging or smearing. Available in 4 shades.",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "174",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Lineur Intense Felt Tip Liquid",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/86cde1cfdb47caee6387cdfc7ac0696e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The one liner that does it all, complete with precision applicator tip. Combines the drama of a liquid with the ease of a pen.",
+ "rating": "4.3",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "173",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Eye Booster Lash Boosting Eyeliner + Serum",
+ "price": 14.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/74826a1dae74e388480d2c8a30f9eb03_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Eye Booster\u2122 2-in-1 Lash Boosting Eyeliner + Serum's high-tech formula enhances the appearance of lashes while providing the instant definition of a liquid eyeliner, in one easy step! Lash Boosting complex targets the base of lashes where it is most effective. Innovative and easy to use eyelining tool delivers effortless definition. High-tech Japanese formula is long-wearing, water-resistant and smudge-resistant.Directions for Use: Apply eyeliner at the base of lashes in a fine or bold line. Never apply eyeliner inside the lash line. Keep cap tightly closed to prevent formula from drying out.Ingredients: Water. Ethylhexyl Acrylate/Methyl Methacrylate Copolymer. Butylene Glycol. SD Alcohol 40. Beheneth-30. Ammonium Acrylates/Methyl Styrene/Styrene Copolymer. Glycerin. Myristoyl Pentapeptide-17. 1,2-Hexanediol. Acrylates/Octylacrylamide Copolymer. Caprylyl Glycol. Ethylhexylglycerin. Pentylene Glycol. Polyglyceryl-3 Disiloxane Dimethicone. Phenoxyethanol. Sodium Hydroxide. Disodium EDTA. Black 2.Hypoallergenic. Fragrance free. Paraben free. Dermatologist approved. Safe for sensitive eyes and contact lens wearers.",
+ "rating": "4.0",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "172",
+ "brand": "maybelline",
+ "name": "Maybelline Liquid Eyeliner",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/316d25ac5676470d83612b9391678b0d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\nWaterproof Liquid Eyeliner draws intense lining in an instant.\nIt glides on smoothly for even coverage.\nThe firm felt tip applicator allows easy control.\nWaterproof, all-day wear.\n",
+ "rating": "4.2",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "171",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Cream Eyeliner",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/571e52ec2ce167c2cd5ee2047015a1ed_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "e.l.f. Studio Cream Eyeliner's creamy formula creates smooth lines that are defined and precise. \nSmudge-proof, budge-proof and water-resistant coverage for all day wear \nto combat against sweat, tears or rain! Achieve thin or bold lines with\n ease. Eyeliner Brush included.Ingredients: \n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tIsododecane, Hydrogenated \nPolyisobutene, Polybutene, Polyethylene, Barium Sulfate, Cyclomethicone,\n Disteardimonium Hectorite, Polyglyceryl-4 Isostearate, Propylene \nCarbonate, Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide \n(CI77891), Red No.40 Lake (CI 16035), Mica (CI 77019), Blue No.1 Lake \n(CI 42090), Ferric Ferrocyanide (CI 77510), Ultramarine Violet (CI77077)",
+ "rating": "4.5",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "170",
+ "brand": "maybelline",
+ "name": "Maybelline Eye Studio Lasting Drama Gel Eyeliner",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2054f702d243c286219e0330af836bf5_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Eye Studio Lasting Drama Gel Eyeliner gives you smudge-proof lines that are waterproof for 24 hours. Features:\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Oil-free formula holds highly concentrated pigments in a clear gel baseSmudge-proof and waterproof for 24 hoursMost intense line for lasting drama\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0Safe for sensitive eyes and ophthalmologist-testedContact lens safe\n\t\tRemoves easily with Expert Eyes\u00ae Moisturizing Eye Makeup Remover.Maybelline Eye Studio Lasting Drama Gel Eyeliner is one of our 10 Makeup Must Haves.\u00a0 See the full list on The Well.\u00a0 ",
+ "rating": "4.4",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "169",
+ "brand": "covergirl",
+ "name": "CoverGirl LineExact Liquid Eyeliner ",
+ "price": 7.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f56b44752218960e8ff15d1364510544_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Compact, easy to hold high precision liquid eyeliner pen has a \nsmudgeproof, fast-drying formula that glides on to create fine or bold \nlines without fuss, for looks that last all day.Features: ExactTip lets you create bold or fine linesCompact, easy-to-holdFast-dryingSmudge-resistant, lasts all daySuitable for sensitive eyes ",
+ "rating": "4.3",
+ "category": "liquid",
+ "product_type": "eyeliner",
+ "tag_list": []
+ },
+ {
+ "id": "168",
+ "brand": "moov",
+ "name": "Moov Cosmetics St. Tropez Collection",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f426b2e2e9ff8e01788a0947aad93512_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The Moov Cosmetics St. Tropez Collection is a vegan nail colour that is perfect collection of shades that will take you from day to day.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Fair Trade",
+ "Sugar Free",
+ "Non-GMO",
+ "Dairy Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "167",
+ "brand": "anna sui",
+ "name": "Anna Sui Nail Colour",
+ "price": 15.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/eea60b0c4f3b6539c1573415a610230d_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Anna Sui Nail Colour is available in an array of fashion-forward colours and textures.\u00a0 This dazzling nail colour is long lasting and luxurious and has a delicate Tea Rose scent. Directions: Apply a clear base coat. Start right in the centre of the nail, then apply on the two sides of the nails.\u00a0 Make sure that the entire nail is covered in these 3 swipes.\u00a0 Let the base coat dry completely.\u00a0 Once base coat has dried apply the colour of your choice in a similar fashion: first on the centre of the nail and then on the sides.\u00a0 Once dry, apply a top coat.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "166",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Always a Lady",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5c2071e6bcb6457ea57fcf3725e2aa92_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "165",
+ "brand": "moov",
+ "name": "Moov Cosmetics Caribbean Wedding Collection",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/678f91758b7a611d673124f7ad1f00d0_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The Moov Cosmetics Caribbean Wedding Collection is a vegan nail colour that has the perfect soft pastel shades for that romantic getaway.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",
+ "rating": "2.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Fair Trade",
+ "Sugar Free",
+ "Non-GMO",
+ "Dairy Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "164",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Iconic Indigo ",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/23d8770e2765d0ecd6faf613e5817cea_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "162",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Ocean Infini",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b90ec1716dfb0c840e32da08d95acc7d_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "161",
+ "brand": "misa",
+ "name": "Misa Nail Laquer",
+ "price": 9.39,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a0e2af7b4c21ab132512dba3483d35de_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Misa's original nail lacquer formula was developed to meet the product requirements of demanding nail technicians. Each lacquer is properly balanced with resin, plasticizer and nitrocellulose to provide a durable film that offers high gloss, exceptional wear and maximum protection for the nail.The lacquers provide durability for the ultimate in chip-free results, with each lacquer offering a carefully balanced blend of film formers that are not adversely affected when exposed to water or detergents. The formula is nonfading with lasting color fidelity over time, as the use of UV absorbers helps maintain the true colors. The lacquers maintain an excellent shelf life, with a formula that prevents pigment migration, striation, settling and syneresis over longer periods of time than most other nail enamel formulas. And, as we guarantee, the chip-resistant polishes promise superior wear and exceptional gloss retention, while helping to condition, protect, strengthen and reinforce the natural nail.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "158",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Petale Revival",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8bfba92993344fec7c4179ddd74ddde4_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "157",
+ "brand": "salon perfect",
+ "name": "Salon Perfect Nail Lacquer ",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/345fc4da3d9055f3742272714aace73b_ra,w158,h184_pa,w158,h184.png",
+ "description": "Salon Perfect Nail Lacquer has a color for every occasion. Dress up your nails with 32 core shades, limited edition collections, and specialty top coats. These professional, salon-tested formulas come in long-wearing cremes, shimmers, glitters, metallics, neons and top coats.Features:Fashion-forward colorsLong-lasting professional formulas1 Coat Coverage Brush 3 Free FormulaDirections: Trim & File Nails. Push Cuticles Back. Clean Nails. Apply One Thin Coat of Nail Polish (wait 1-2 minutes for dry). Apply 2-3 Additional Thin Coats (to preferred coverage).",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "156",
+ "brand": "moov",
+ "name": "Moov Cosmetics Home Grown Canuck Collection",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/65ca894afba3c4351a3db71c24234c50_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "The Moov Cosmetics Home Grown Canuck Collection is a vegan nail colour that has a fun representation of shades from East to West.Features:VeganLonger lasting wearCreamy applicationDirections: Apply two coats, best results with Moov 2-in-1 Prime & Prep application.Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl, Gloycol/Trimellitic Anhydride, Copolymer, Tributyl Citrate, Isopropyl Alcohol, Strearalkonium Bentonite, Acrylates Copolymer, Silica,Benzophenone-1, Trimethylpentanediyl DibenzoateNatural, Vegan, Gluten Free, Fair Trade, Sugar Free, Non-GMO, Dairy Free",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Fair Trade",
+ "Sugar Free",
+ "Non-GMO",
+ "Dairy Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "154",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Irresistible Bonbon",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/69ca8bd686b0c24e44a2033f4aacf035_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "153",
+ "brand": "orly",
+ "name": "Orly EPIX Flexible Sealcoat",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/648283e42d7fafb7c03e8c60274cd5e0_ra,w158,h184_pa,w158,h184.png",
+ "description": "Orly introduces the next big thing in the industry. EPIX Flexible Color is a 2 step manicure system that has a long wearing formula with smudge-fixing technology.Features:Dries faster - in less than 8 minutesLasts longer - over a weekInnovative Smudge-Fixing Technology allows the formula to remain elastic and flex with the nail, making smudges and chips a thing of the pastApplies easily and removes like a polishNew Custom 600 Bristle Count Brush Technology and Gripper Cap provide precise application and even coverage on the nailDelivers a high shine finishHow Does it Work?Step 1 Flexible Colour: Begin by performing a dry manicure. Lightly buff nails and clean nail surface with alcohol.\u00a0 Apply an even coat of EPIX Flexible Color to all ten nails.\u00a0 Apply a second coat for full coverageStep 2 Flexible Sealcoat: Finish with 1 coat of EPIX Flexible Sealcoat to seal in color and shine.\u00a0 For extended wear, reapply Sealcoat after three days.* Smudges will continue to self-repair until the Flexible Color is fully dry.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "151",
+ "brand": "orly",
+ "name": "Orly Nail Lacquer",
+ "price": 8.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/65bd0249fe43da8261d6f0b5f78b1826_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "As one of the nail care industry's renowned color houses Orly has established a dynamic palette composed \nof subtle sheers, vivid cr\u00e8mes, dazzling shimmers, smooth glitters and \nhot neons! Plus, each ORLY lacquer is free of DBP, Toluene, Formaldehyde\n and features Orly's award-winning Gripper Cap.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "149",
+ "brand": "orly",
+ "name": "Orly EPIX Flexible Color ",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/27739f49c78555db95538d22383f4da2_ra,w158,h184_pa,w158,h184.png",
+ "description": "Orly introduces the next big thing in the industry. EPIX Flexible Color is a 2 step manicure system that has a long wearing formula with smudge-fixing technology.Features:Dries faster - in less than 8 minutesLasts longer - over a weekInnovative Smudge-Fixing Technology allows the formula to remain elastic and flex with the nail, making smudges and chips a thing of the pastApplies easily and removes like a polishNew Custom 600 Bristle Count Brush Technology and Gripper Cap provide precise application and even coverage on the nailDelivers a high shine finishHow Does it Work?Step 1 Flexible Colour: Begin by performing a dry manicure. Lightly buff nails and clean nail surface with alcohol.\u00a0 Apply an even coat of EPIX Flexible Color to all ten nails.\u00a0 Apply a second coat for full coverage.Step 2 Flexible Sealcoat: Finish with 1 coat of EPIX Flexible Sealcoat to seal in color and shine.\u00a0 For extended wear, reapply Sealcoat after three days.* Smudges will continue to self-repair until the Flexible Color is fully dry.",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "148",
+ "brand": "orly",
+ "name": "Orly Nail Lacquer ",
+ "price": 8.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4e761b6e77b356384470b15229b31023_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "As one of the nail care industry's renowned color houses Orly has established a dynamic palette composed \nof subtle sheers, vivid cr\u00e8mes, dazzling shimmers, smooth glitters and \nhot neons! Plus, each ORLY lacquer is free of DBP, Toluene, Formaldehyde\n and features Orly's award-winning Gripper Cap.",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "147",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Wild Shine Nail Colour ",
+ "price": 1.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6f53a1fba843dde57271decf3b5c7ad0_ra,w158,h184_pa,w158,h184.png",
+ "description": "Wet n Wild's claim to fame! This brand was launched in 1979 with this epic nail polish and it is one of their top-sellers. Why? Here\u2019s what we think: not only are they just straight up awesome, but we\u2019ve got every color, texture, and effect that you can possibly think of: creams, metallics, glitters, you name it! After decades of these flying off the shelves, they're pretty sure you already have a couple stashed away, but with so many colors, you can always add a new one \u2013 or double up! Everyone we talk to agrees\u2014this is simply the best nail polish brand out there.Features:Purse Pride! New improved formula and packaging!High-shine finish in every color imaginable!3-Free: No Formaldehyde, Toluene, or PhthalatesStill the #1 selling nail polish in the market!Ingredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Tosylamide/Epoxy Resin, Acetyl Tributyl Citrate, Isopropyl Alcohol, Triphenyl Phosphate, Stearalkonium Bentonite, Phthalic Anhydride/Trimellitic Anhydride/Glycols Copolymer, Silica, Etocrylene, Diacetone Alcohol, Trimethylpentanediyl Dibenzoate, Alumina, Titanium Dioxide/CI 77891 ",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "146",
+ "brand": "maybelline",
+ "name": "Maybelline Color Show Nail Lacquer Jewels ",
+ "price": 4.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f6239cbcd84fa838c461f020b86924aa_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Color Show Nail Lacquer Jewels collection features jeweled nail lacquer top coats straight from the shows!Features:Adorns your nails with textured gem effectsTrendy top coat nail art designsEasy-flow brushFormaldehyde, DBP and Toluene freeShade Range: (left to right: Mosaic Prism, Platinum Adorn)For Best Results:First apply a clear base coat to prevent your nails from yellowing and to help your nail color last longer. Choose a base shade and with one sweep, paint the first line of nail polish up the center of your nail starting from the base to the tip.For the cleanest look, be sure to leave a small space at the base of the nail. Then apply nail color to the rest of the nail. Pick your textured top coat and paint over your base shade for a street styled nail art look.",
+ "rating": "3.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "145",
+ "brand": "maybelline",
+ "name": "Maybelline Color Show Nail Lacquer Veils ",
+ "price": 4.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/64cbcfbd001435c3abc3d8f77c16a0bf_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Color Show Nail Lacquer Veils collection gives you subtle shimmers to refined glitters in colours straight from the shows!Features:Trendy top coat nail art designsEasy-flow brushFormaldehyde, DBP and Toluene freeShade Range: (left to right: Amethyst Aura, Rose Mirage, Crystal Disguise)For Best Results:First\n apply a clear base coat to prevent your nails from yellowing and to \nhelp your nail color last longer. Choose a base shade and with one \nsweep, paint the first line of nail polish up the center of your nail \nstarting from the base to the tip.For the cleanest look, be sure\n to leave a small space at the base of the nail. Then apply nail color \nto the rest of the nail. Pick your textured top coat and paint over your\n base shade for a street styled nail art look.",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "144",
+ "brand": "pacifica",
+ "name": "Pacifica 7 Free Nail Polish Set - Blue",
+ "price": 21.5,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/694782ea45c04cdbedeed096fb82f297_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Pacifica's new 7 Free Nail Polish is long lasting and void of many chemicals that one would find in traditional nail polish. These amazing vibrant colors go on smooth and stay put. In addition, Pacifica has added a custom wide 100% vegan brush for easier application.Features: Dark Desert Highway1972 Pool PartyDriftIngredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic Anhydride Copolymer, Acetyl Tributyl Citrate, Isopropyl Alcohol, Styrene/Acrylates Copolymer, Stearalkonium Bentonite, n-Butyl Alcohol, Benzophenone-1, Silica, Alumina, Trimethylpentanediyl Dibenzoate, Polyvinyl Butyral MAY CONTAIN (+/-): Aluminum Powder (CI 77000), Oxides (CI77499 / CI 77491), Red 34 Lake (CI 15880), Red 6 Lake (CI 15850), Red 7 Lake (CI 15850), Yellow 5 Lake (CI 19140), Ferric Ammonium Ferrocyanide (CI 77510), Mica (CI 77019), Blue 1 (CI 42090), Yellow 11 (CI 47000), Titanium",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "142",
+ "brand": "l'oreal",
+ "name": "L'Oreal Colour Riche Gold Dust Nail Colour",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bfca70deb100137b3f23bb3a0f887420_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Colour Riche\u00ae presents a new luxurious 3D texture for your nails. In a \nfew strokes, achieve a textured nail finish with specks of sparkle for \nthe ultimate chic look.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "141",
+ "brand": "l'oreal",
+ "name": "L'Oreal Extraordinaire Gel Lacque Nail Colour",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/284a3bf668e98f69cc51a58ff9de1d1a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L\u2019Or\u00e9al Paris introduces the Extraordinaire Gel-Lacque 1-2-3 system for perfectly shaped, volumized nails and rich, ultra-glossy colour.This is a three-step nail system:\u00a0GEL-PRIMER - Apply 1 coat of gel primer to build volume and prepare nails for optimized colour pay-off.GEL-COLOUR - Apply 2 coats of gel colour. Achieve rich, glossy colour and plumped-up nails.GEL-GLAZE - Apply 1 coat of gel glaze. Achieve incredible shine.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "140",
+ "brand": "pacifica",
+ "name": "7 Free Nail Polish Set - Red",
+ "price": 21.5,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/135731beb1a0634f04ebea869dd45f03_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Pacifica's new 7 Free Nail Polish is long lasting and void of many chemicals that one would find in traditional nail polish. These amazing vibrant colors go on smooth and stay put. In addition, Pacifica has added a custom wide 100% vegan brush for easier application.Colours Included: Blushing BunniesRed Red WineCinnamon GirlIngredients: Butyl Acetate, Ethyl Acetate, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic Anhydride Copolymer, Acetyl Tributyl Citrate, Isopropyl Alcohol, Styrene/Acrylates Copolymer, Stearalkonium Bentonite, n-Butyl Alcohol, Benzophenone-1, Silica, Alumina, Trimethylpentanediyl Dibenzoate, Polyvinyl Butyral MAY CONTAIN (+/-): Aluminum Powder (CI 77000), Oxides (CI77499 / CI 77491), Red 34 Lake (CI 15880), Red 6 Lake (CI 15850), Red 7 Lake (CI 15850), Yellow 5 Lake (CI 19140), Ferric Ammonium Ferrocyanide (CI 77510), Mica (CI 77019), Blue 1 (CI 42090), Yellow 11 (CI 47000), Titanium",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "139",
+ "brand": "china glaze",
+ "name": "China Glaze Nail Lacquer ",
+ "price": 8.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/11a61e4741fd3299bbf2dbd6b653f0d4_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "China Glaze's \u200bunique lacquers contain China Clay as a nail hardener, the same material\n that gives porcelain its shiny finish. These glossy lacquers work in \nperfect cohesion with their professional nail treatments for lasting \nstrength, durability and overall gorgeous nails.China Glaze Nail Laquers are free of DBP, Toulene and added Formaldehyde.",
+ "rating": "4.7",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "138",
+ "brand": "essie",
+ "name": "Essie Encrusted Nail Polish Collection",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7dab50d3ac08ea9c5f2373531a47dd17_ra,w158,h184_pa,w158,h184.png",
+ "description": "Get intricate, multi-dimensional, spectacularly ornate caviar nails with Essie Encrusted Nail Polish Collection. With \nall the fine detail of the most fanciful gem-encrusted jewel, these stunning shades take manicures to a whole new richly-sculpted dimension.Shade Range:Belugaria - live like a czarina. this richly ornamented jet black nail lacquer is laced with highly textured matte glitter with flashes of rainbow holographicsPeak of Chic - ascend the pinnacle of fashion and freeze your \nwell-manicured assets in this alpine white holographic polish with icy \ncrystal fringeOn a Silver Platter - violet holographic glitter and antique \nsilver add bold contrast to this pearlescent gold polish that proclaims:\n the world is yours for the takingLots of Lux - pile on the opulence and perfect the art of manicure\n maximalism in this shimmering blue lapis lazuli lacquer with a sleek \nmatte finishIgnite the Night - the scintillating light from this sparkling hematite nail lacquer with a superfine matte finish fans the flames of passion for luxurious fashionHors d'Oeuvres - nothing says extravagance like this delightful \nconfection of platinum gold nail polish with a touch of iridescent \nsilver glitter",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "137",
+ "brand": "revlon",
+ "name": "Revlon Transforming Effects Top Coats",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5a4b4326f96cafe4c8bfc58ad60559e6_ra,w158,h184_pa,w158,h184.jpg",
+ "description": " Transform your mani with these unique Transforming Effects Top Coats from Revlon. Bold glazes and alluring textures \ninstantly transform your manicure. Wear over your favourite Nail \nEnamel to create unique effects.\nShades:",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "136",
+ "brand": "sante",
+ "name": "Sante Nail Polish",
+ "price": 19.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e7bf82336f5e267d5d0b491c12fdb7cd_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The colours of Sante nail polish range from a gentle glow to bold statement colors, and are very skin-friendly. Quick-drying, long-lasting and resistant. Incomparable variety of colors\n and remarkably wearable: no formaldehyde, toluene or rosin. Not tested on animals.Jewel toned shades like Metallic Lavender by Sante make fall beauty a breeze. For more green fall beauty essentials, check out our blog, The Well!",
+ "rating": "4.4",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "135",
+ "brand": "pure anada",
+ "name": "Pure Anada Princess Cosmetics Sugar Plum Kit ",
+ "price": 15.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/28f6ca4ea2ce4e10d766f4c7cd9bf3d3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This little cosmetics kit is pure and pretty glamour for little princesses!Pure Anada Princess Cosmetics Kit contains eco-friendly, non-toxic formulas that are safe and healthy for the whole kingdom!This kit includes: a natural shimmering lip balm, non-toxic, water-based nail polish and a mineral shimmer powder.\u00a0Ingredients:Shimmer Powder: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide (NOT nano-sized particles)Lip Shimmer: Organic\n Sunflower Oil, Organic Shea Butter, Beeswax, Candelilla Wax, Mica, Iron\n Oxides, Coconut Oil, Stevia Leaf Extract, Vitamin E (gluten free), \nEssential oil (peppermint, cinnamon, vanilla OR lemon)Nail Polish:\n Water, Acrylates Copolymer, Butoxy Diglycol, Methylisothiazolinone, \nHydroxxethylcellulose, Mineral Pigments:\u00a0 Ultramarines, Iron Oxide, \nTitanium Dioxide, Mica, OR Chromium Hydroxide Green",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "134",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Collection Exclusive Nail Colour",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/dec895e124125238709b4dbac19d53c0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Your dream colour is now at your fingertips with Colour Riche\u00ae Nail \nColour. L'Oreal's formula delivers intense, luxurious colour and up to 10 days\n of shine. This collection includes signature nude shades by L'Oreal's dazzling spokeswomen. The shades are custom-made to match various skin tones and \nhaircolour.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "133",
+ "brand": "maybelline",
+ "name": "Maybelline Color Show Nail Lacquer ",
+ "price": 4.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a05aa31a7e30d9d262ae36d0be2c4f87_ra,w158,h184_pa,w158,h184.png",
+ "description": "High fashion meets high-art. With Maybelline Color Show Nail Lacquer PolkaDots Collection you get 3D nail design for your fingertips!Features: \nCreates Hollywood-worthy special effectsChip-resistant formula Easy-flow brushFormaldehyde, DBP and Toluene freeShade Range: \n",
+ "rating": "3.3",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "132",
+ "brand": "pure anada",
+ "name": "Pure Anada Princess Cosmetics Be Mine Kit ",
+ "price": 15.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/729f14bbcaa15888a91cd7ad200c3a90_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This little cosmetics kit is pure and pretty glamour for little princesses!Pure Anada Princess Cosmetics Kit contains eco-friendly, non-toxic formulas that are safe and healthy for the whole kingdom!This kit includes: a natural shimmering lip balm, non-toxic, water-based nail polish and a mineral shimmer powder.\u00a0Ingredients:Shimmer Powder: Mica, Iron Oxides, Ultramarines, May contain: Titanium Dioxide (NOT nano-sized particles)Lip Shimmer: Organic Sunflower Oil, Organic Shea Butter, Beeswax, Candelilla Wax, Mica, Iron Oxides, Coconut Oil, Stevia Leaf Extract, Vitamin E (gluten free), Essential oil (peppermint, cinnamon, vanilla OR lemon)Nail Polish: Water, Acrylates Copolymer, Butoxy Diglycol, Methylisothiazolinone, Hydroxxethylcellulose, Mineral Pigments:\u00a0 Ultramarines, Iron Oxide, Titanium Dioxide, Mica, OR Chromium Hydroxide Green",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "131",
+ "brand": "essie",
+ "name": "Essie Nail Colour Cashmere Matte Collection",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5a8e814bb61cd9168941f448d4ea8a1c_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "With a satin-matte texture and a subtle but spellbinding \nmicro-iridescent finish, this Essie Nail Colour Cashmere Matte Collection is sure to inspire you to epic \nfashion heights.Features:Soft matte finish with reflective pearl colorLuxurious neutral color palette inspired by rich cashmereFor best results, use without a top coatShades (left to right): Comfy in Cashmere, Wrap Me Up, Just Stitched, All Eyes on Nude, Coat Couture, Spun in Luxe",
+ "rating": "1.5",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "130",
+ "brand": "revlon",
+ "name": "Revlon Top Speed Enamel Nail",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/588d0b742409c3ad227d9b9c616e5772_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon Top Speed's patented formula\n delivers amazingly quick color, with a built-in topcoat that rises to \nthe surface for a glossy, ultra smooth manicure- that sets in 60 \nseconds. The ColorPrecise brush ensures even, smooth, salon quality \napplication every time.\n",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "129",
+ "brand": "butter london",
+ "name": "butter LONDON Patent Shine 10x Nail Laquer",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/739ca23d0c2ee60e0b19c38568b9d9b6_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Butter London's Patent Shine 10x innovative 10-in-1 formula is loaded with ingredients proven to promote brighter, stronger, healthier nails in classic, creamy, wearable shades for your best-dressed nails.10 Benefits:Up to 10 day wearChip resistantFull colour coverageGel-like cushion finish and shineFade-resistantProtectSmoothStrengthenBrighten7 Free - Butter London does not add formaldehyde, formaldehyde resin, toluene, DBP, camphor, xylene, or ethyl tosalimide to its nail product formulaInstructions: Apply one coat of basecoat to clean, dry nails. Follow with your favorite Butter London Patent Shine 10X Nail Lacquer. Apply one coat of topcoat for a smooth, high-gloss finish. Ingredients: Butyl Acetate, Ethyl Acetate, Isopropyl Alcohol, Nitrocellulose, Tosylamide/Epoxy Resin, Acetyl Tributyl Citrate, Benzophenone -1, Styrene/Acrylates Copolymer, Stearalkonium Hectorite, Malic Acid, Citric Acid, Bambusa Vulgaris (Bamboo) Extract, Ethyl Trymethylbenzoyl Phenylphosphinate, Diamond Powder, Polymethylsilsesquioxane.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Vegan",
+ "Natural"
+ ]
+ },
+ {
+ "id": "128",
+ "brand": "suncoat",
+ "name": "Suncoat Polish & Peel Super Natural Mineral Nail Polish",
+ "price": 9.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/877c15ed5cbbbf0c92ff3a6d74396b25_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Suncoat introduces the first water-based, ordourless, eco-friendly, peelaway polish featuring \nnatural colours and mineral pigments instead of synthetics. No nail polish remover needed!Features:Completely VOC free\u00a0 Free of toulene, formaldehyde (no\n\t\t\t\t\tformaldehyde donours), acetates, acetone or any other\n\t\t\t\t\tchemical solvents. Releases ONLY water when applied!\n\t\t\t\t\t\n\t\t\t\t\tUsage Tips: Apply 2-3 thick coats. Polish lasts for weeks on\n\t\t\t\t\ttoenails and is good for a day or two on finger nails. Adding a\n\t\t\t\t\tlayer of Suncoat #23 Clear Top Coat will help the nail polish\n\t\t\t\t\tto last longer. Removal: Soak nail in warm water, then peel from one corner.Ingredients: Water, acrylic copolymer.\n\t\t\t\t\tMay contain: mica, iron oxides, titanium dioxide, chromium\n\t\t\t\t\toxide green, ultramarines, ferric ferrocyanide, carmine.Colour Range: \n \t\t\t\t",
+ "rating": "3.8",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "127",
+ "brand": "essie",
+ "name": "Essie Mirror Metallics",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f9cf806594b794ebb2f10ce217a90adb_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get ready to Metal around with colour! Essie's latest collection gives you a brushed steel effect with these high-impact chrome polishes. ",
+ "rating": "3.4",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "126",
+ "brand": "pure anada",
+ "name": "Pure Anada Nail Polish",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3184a0a50b398f81e7284b1a04befc9a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Pure Anada Nail Polish is long-wearing polish color that is \u201cfree\u201d from the 5 most toxic ingredients found in traditional polish. Plus it is solvent-based, not water-based.Pure Anada Polish is amazingly long-lasting when applied with the \u201cOver-Under\u201d base/top coat.Ingredients: Butylacetate, Ethylacetate, Nitrocellulose, Acetyl Tributyl\u00a0 Citrate, Adipic Acid/Neopentyl, Glycol Trimellitic, Anhydride Copolymer, Isopropyl Alcohol, Acrylates Copolymer, Stearalkonium Bentonite,\u00a0 Styrene Acrylates, Copolymer, Silica, Alumina, Benzophenone-1.\u00a0May contain:\u00a0 Mica, Iron Oxides (CI77491, 77499), Titanium Dioxide (CI77891), Red 7 Lake (CI158501), UltramarinesVegan, Gluten Free, Non-GMO, 5-Free, Dairy Free, Peanut Free",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free",
+ "Non-GMO",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "125",
+ "brand": "sinful colours",
+ "name": "Sinful Colours Nail Polish",
+ "price": 2.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/49011c715277e5f39fd63a8e05cd71ef_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "At a low price, Sinful Colors makes putting the glitz on your nails a steal, not a splurge. Nails with bling are an easy and quick way to create your own look: the fabulous value Sinful Colors offers (plus their huge variety of shades!) allows you to easily change your color to match your mood or look any time, any day. With vivid shades that pop, wow, flatter and inspire. In cream, glitter, shimmer and matte, and in formulas you want that provide full color coverage. All made in the USA, with the quality you expect from a leading nail brand, without formaldehyde, toluene and DBP.",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "124",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Nail Polish",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/affda4fa0d0c8263549fe901eda814cc_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Mineral Fusion Nail Polish is a healthier alternative to traditional nail polish in many gorgeous shades. Apply this long-lasting chip-resistant mineral nail polish formula flawlessly using the custom, extra-thick brush. Mineral Fusion Nail Polish is a toulene free nail polish and like all of their cosmetics, upholds their standard for Formula Purity.Features:Long-lasting chip resistant formulaFormaldehyde, toulene, camphor and dibutyl pthalate freeCustom, extra-thick brush for flawless applicationIngredients: Ethyl Acetate, Butyl Acetate, Isopropyl Alcohol, Nitrocellulose, Adipic Acid/Neopentyl Glycol/Trimellitic, Anhydride Copolymer, Trimethyl Pentanyl Diisobutyrate, Stearalkonium Hectorite, Diacetone Alcohol Styrene, Acrylates Copolymer, Silica, Citric Acid, Benzophenone. Mica, Oxides, Titanium Dioxide, Bismuth Oxychloride, Aluminum Powder, D&C Red No. 7 Calcium Lake, D&C Violet No. 2, FD&C Yellow No. 5 Alluminum Lake, Ferric Ammonium Ferrocyanide. Mineral Fusion Nail Polish is formaldehyde free, toulene free, camphor free, dibutyl pthalate free, paraben free, hypoallergenic, gluten free, talc free, fragrance free and free of artificial colors. As with all of their cosmetics, Mineral Fusion Nail Polish is never tested on animals.",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "123",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Stay Brilliant Nail Gloss",
+ "price": 5.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ad5297ce5c35c04daa3c85b6906aaedc_ra,w158,h184_pa,w158,h184.png",
+ "description": "Dare to go topless with CoverGirl Outlast Stay Brilliant Nail Gloss. New high-gloss nail polish formula that combines a base coat, high-gloss color, and a chip-resistant top coat in one simple step. Features:High gloss colourLasts as long as one week3-in-1 formula - base coat, colour, and top coatQuick, easy and convenientHow to Apply:Step 1: File nails to your desired length and shape.Step 2: Brush your favorite nail color on top of each nail. Allow nail polish to fully dry.Step 3: Apply a second coat for deeper pigment.",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "122",
+ "brand": "revlon",
+ "name": "Revlon Nail Enamel",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e960bba3ac7a8cb393b2293a976c2b61_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Rich, glorious, gorgeous color. It completes an outfit. It expresses your mood. It sets hearts racing!Revlon Nail Enamel gives up to 10 \ndays of lasting color and shine. Revlon's exclusive silk-protein \nshield works to instantly help even out the surface of the nail while \nrising above color to automatically smooth away bubbles, streaks and \nbrush marks.",
+ "rating": "4.4",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "121",
+ "brand": "essie",
+ "name": "Essie Nail Colour",
+ "price": 10.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bec95851afb08acd6f00242e97535f98_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Colour is the obsession! Dive in and make a splash with Essie Nail Polish. DBP, Toluene and Formaldehyde free.Features: Salon quality formulaLong-lasting, chip-resistant, with a high shine finishBright tropical colours from Essie are the perfect pop for summer! Find more beach ready beauty picks on our blog, The Well.",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "120",
+ "brand": "suncoat",
+ "name": "Suncoat Girl Nail Beauty Kit with Decals Ballerina Beauty",
+ "price": 22.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0c72c8cb27e4c89746e353a332474c81_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This Suncoat Girl Nail Beauty Kit with Decals is the ideal \"try-me\" pack or birthday gift! This three bottle set delivers fun and unique nail art designs with natural nail polish and nail decals.Features:\u00a0\u00a0\u00a0 Water-based nail polish\u00a0\u00a0\u00a0 Peel-able\u00a0\u00a0\u00a0 No remover needed\u00a0\u00a0\u00a0 Safe and non toxicKit Contains:\u00a0\u00a0\u00a0 Ballerina Beauty color (8 mL)\u00a0\u00a0\u00a0 Strawberry Delight color (8 mL)\u00a0\u00a0\u00a0 Clear Topcoat (8 mL)\u00a0\u00a0\u00a0 1 Page of Nail DecalsIngredients: water, polyurethane. May contain: mica, titanium dioxide, carmine, ferric ferrocyanide, chromium oxide green, iron oxide",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "119",
+ "brand": "suncoat",
+ "name": "Suncoat Girl Nail Beauty Kit with Decals Mermaid Princess",
+ "price": 22.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a05895c3b7792308c116e07ff7325f3a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This Suncoat Girl Nail Beauty Kit with Decals is the ideal \"try-me\" pack or birthday gift! This three bottle set delivers fun and unique nail art designs with natural nail polish and nail decals.Features:\u00a0\u00a0\u00a0 Water-based nail polish\u00a0\u00a0\u00a0 Peel-able\u00a0\u00a0\u00a0 No remover needed\u00a0\u00a0\u00a0 Safe and non toxicKit Contains:\u00a0\u00a0\u00a0 Mermaid Blue color (8 mL)\u00a0\u00a0\u00a0 Princess Purple color (8 mL)\u00a0\u00a0\u00a0 Clear Topcoat (8 mL)\u00a0\u00a0\u00a0 1 Page of Nail DecalsIngredients: water, polyurethane. May contain: mica, titanium dioxide, carmine, ferric ferrocyanide, chromium oxide green, iron oxide",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "117",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Nail Polish in Keep Magenta",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/92adb254b0183b5652c581280301cb93_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Nail Polish gives you fantastic gel-like nail colour with a tinted top coat to match!This Infallible nail polish has an exclusive hybrid combo of silicone and Flex-Resin\u2122 that \ninteract with one another to create a unique matrix. The formulas are a \ncombination of film forming polymer, gellifying agents and crystal \ncopolymer designed to bring durability, adhesion to nail and brilliant \nshine. Provides a smooth, plump, spectacular gel shine manicure that \nlasts.Features: Up to 12-day wear\nSpectacular gel shine\nMatching tinted top coat\nNo nail damage\nEasy to remove",
+ "rating": "",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": []
+ },
+ {
+ "id": "116",
+ "brand": "piggy paint",
+ "name": "Piggy Paint Nail Polish",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b52e199adc7a7a95d3b910cc234ffd65_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Piggy Paint is specially formulated from natural ingredients and dries \nto a hard, durable finish. This kids nail polish has no toxic chemicals; it\u2019s free of \nformaldehyde, toluene, phthalates, Bisphenol A, ethyl acetate and \nacetone.Say good-bye to harsh, smelly chemicals and hello to Piggy Paint\u2026this natural nail polish is as Natural as Mud!Features: Non-toxicLow OdorWater-based formulaHypoallergenicFun, vibrant colorsDries to a hard, durable finishCruelty-freeHas a little bit of sparkle in the colourSafe for use during Pregnancy!Directions: Wash hands with soap and water.Apply 2 -3 thin coats of Piggy Paint.Air dry 60 seconds.Blow dry polished nails for 1 minute with hair dryer set on warm heat/low blower setting.\u00a0For safety purposes, please follow manufacturer\u2019s instructions on blow dryer and always monitor your child.Ingredients: Water, acrylates copolymers, melia azadirachta (neem oil).\u00a0 May contain:\n mica, red 34 lake, ultramarines, titanium dioxide, iron oxide pigments.",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "115",
+ "brand": "suncoat",
+ "name": "Suncoat Girl Water-Based Nail Polish",
+ "price": 8.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/492cefdf71c66968dd5c6da10cd9c385_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Suncoat Girl water-based nail polishes are uniquely formulated by their chemists without using any of the following chemicals: Phthalate plasticizers, Toluene, Formaldehyde, Acetates, Alcohol, Glycol ethers, FD&C dyes.Only water, acrylic copolymers and polyurethane (plastic), mineral-based pigments, plastic glitter* and carmine are in these natural nail polishes. Virtually odor-free. Releases water vapor when applied, not toxic chemical fumes. These water-based kids' nail polishes are truly the most natural nail polishes in the market place.*: Spectra glitter, inert plastic glitters. Conforms to ASTM D4236.Application: For children 3 years and older. Use under adult supervision. Also great for anyone to use especially when travel, and for special occasions. Can last couple of days on fingernails. Will last longer on toenails. Apply 2 to 3 thin coats to clean grease-free nails. Dry fully between coats. Peel off the nail polish before changing color by soaking nails in warm water, and peel off from one corner.Shade Range:",
+ "rating": "3.9",
+ "category": "",
+ "product_type": "nail_polish",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "114",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Longwear Lipstick",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2d46e82f21b11f658a4378abcbd1c31b_ra,w158,h184_pa,w158,h184.png",
+ "description": "With CoverGirl Outlast Longwear Lipstick you get both moisture and colour! No need to choose!This long lasting lipstick doesn\u2019t flake or \ncrumble because it\u2019s super-powered with moisture. It'll stays super fresh and \nsuper flexible all day, leaving you with a light weight but very pigmented lip look.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "113",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Lipcolor Moisturizing Clear Topcoat (500)",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/00bee78599bf386be435237a1515fdb7_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "CoverGirl Outlast Lipcolor Moisturizing Clear Topcoat is a moisturizing lip gloss that keeps lips feeling moist, soft & smooth.Features: Moisturizing formulaSafe for sensitive skinFragrance freeIngredients: Sucrose Polycottonseedate, Ozokerite, Beeswax/ Cire D'Abeille, Tocopheryl Acetate, Tocopherol, Propyl Gallate, Propylparaben, Acetyl Glucosamine, Cocos Nucifera (Coconut Oil), Aloe Barbadensis Leaf Extract, Theobroma Cacao (Cocoa) Seed Butter, Butyrospermum Parkii (Shea Butter), Sodium Saccharin, Flavor/Aroma, Eu Inci, Sucrose Polycottonseedate, Ozokerite, Cera Alba, Tocopheryl Acetate, Tocopherol, Propylparaben, Propyl Gallate, Acetyl Glucosamine, Cocos Nucifera (Coconut Oil), Aloe Barbadensis Leaf Extract, Theobroma Cacao (Cocoa) Seed Butter, Butyrospermum Parkii (Shea Butter), Sodium Saccharin, Aroma",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "107",
+ "brand": "butter london",
+ "name": "butter LONDON Moisture Matte Lipstick",
+ "price": 28.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/53776859a9fc7bea891c66135f40d645_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "butter LONDON Moisture Matte Lipstick offers full coverage, ultimate colour payoff in a velvety matte finish.\nWith specialized pigments that extend colour wear, this long-lasting, non-drying \nformula does not feather or bleed. Revolutionary gel-capsule technology \ndelivers colour and moisture for smooth, silky application and maximum \ncomfort. Triple Butter Complex for rich, creamy, lasting moisture \u2013 \nMango Seed Butter, Murumuru Seed Butter, and Cupuacu Seed Butter. \nVitamin E and minerals smooth the lip surface for a flawless \napplication. Subtly scented with creamy vanilla. Sleek, slim line metal \ncomponent for easy application, control and\u00a0portability.Ingredients: Pentaerythrityl Tetraisostearate, Caprylic/Capric Triglyceride, Ethylhexyl Palmitate, Silica, Aluminum Starch Octenylsuccinate, Polyethylene, Bis-Diglyceryl Polyacyladipate-2, C20-40 Alcohols, Caprylyl Glycol, Mangifera Indica (Mango) Seed Butter, Theobroma Grandiflorum Seed Butter, Astrocaryum Murumuru Seed Butter, Parfum (Fragrance), Benzyl Benzoate, Tocopheryl Acetate, Tocopherol, Calcium Sodium Borosilicate, Tin Oxide. May Contain: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, 77492, 77499), Mica (CI 77019), Red 6 (CI 15850), Red 7 Lake (CI 15850), Red 27 (CI 45410), Red 28 Lake (CI 45410), Red 30 Lake (CI 73360), Red 33 Lake (CI 17200), Yellow 5 Lake (CI 19140), Blue 1 Lake (CI 42090), Carmine (CI 75470).Paraben Free",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "106",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Le Matte & La Lacque Lip Colour",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a368eac7a50f7aa3fcc773b06915eb39_ra,w158,h184_pa,w158,h184.png",
+ "description": "Introducing Colour Riche Le Matte & La Lacque, the newest format in lip colour. velvety matte or irresistibly glossy pigment-rich colour, perfectly precise. Use it anywhere, anytime \u2013 it\u2019s the newest makeup designer must-have!Features:The sleek, sophisticated pen offers highly pigmented colour Glides on effortlessly in one precise stroke Available in 2 iconic finishes, creamy matte & smooth lacquerEnriched with argan oil for deep hydration and soft feel & vitamin antioxidant for protection",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "105",
+ "brand": "covergirl",
+ "name": "CoverGirl Colorlicious Lipstick",
+ "price": 10.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c88809fbffe05fb9594103e635387152_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "CoverGirl Colorlicious Lipstick gives you rich, satisfying color in shades you can't help but crave!Features: Deliciously rich color infused with shea butterFull coverage color, high shine intensityNatural butters help keep lips suppleLasting colourIngredients:\n Ricinus Communis (Castor) Seed Oil, Isopropyl Isostearate, Mica, \nEthylhexyl Hydroxystearate, Acetylated Lanolin, Ozokerite, Euphorbia \nCerifera (Candelilla) Wax/Cire De Candelilla, Paraffin, Squalane, \nCopernicia Cerifera (Carnauba) Wax/Cire De Carnauba, Cetyl Lactate, \nCetyl Alcohol, Fragrance/Parfum, Ascorbyl Palmitate, Tocopheryl Acetate,\n Maltodextrin, Camellia Sinensis Leaf Extract, Butyrospermum Parkii \n(Shea) Butter, Silk Powder/Poudre De Soie, Persea Gratissima (Avocado) \nOil, Cocos Nucifera (Coconut) Oil, Aloe Barbadensis Leaf Extract, \nPropylparaben, Hydrogenated Vegetable Oil, Retinyl Palmitate, Some \nShades Also Contain/Certaines Teintes Contiennent Aussi: Lauroyl Lysine,\n Synthetic Fluorphlogopite, May Contain/Peut Contenir: Titanium Dioxide,\n Red 7 Lake, Yellow 5 Lake, Red 6 Lake, Iron Oxides, Blue 1 Lake, \nCarmine, Red 27 Lake, Yellow 6 Lake, Orange 5, Red 27",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "102",
+ "brand": "covergirl",
+ "name": "CoverGirl Outlast Lipcolor",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/be04329866e96a0077545d230489d7a9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "CoverGirls very popular longwear lip color just got better! The advanced formula with resilient, brilliant color and new applicator gives you up to 24 hours of color in just 2 easy, breezy steps.Features:Lasts up to 24 hoursBeautiful shades that are food proof and transfer resistant all day!Moisturizing topcoat keeps lips feeling moist, soft and smoothApplication Tips: Apply color to clean lips. Let dry 60 seconds. Apply moisturizing topcoat. Reapply topcoat like a balm throughout the day to refresh your look and feel.",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "101",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Sheer Moisture Lip Tint",
+ "price": 12.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8980a2195fbd6f4a47e5b57ac2148e9b_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Mineral Fusion Sheer Moisture Lip Tint is a sheer, buildable mineral colour that provides long-lasting hydration and applies effortlessly on-the-go with no mirror required.\u00a0 The 100% pure mineral shades are ultra-hydrating, infused with Cocoa Butter, a lip-firming peptide, and a refreshing Vanilla-Mint flavor. \u00a0Features:Hydrating & FirmingPerfect for On-The-Go UseFree of artificial colour and fragranceCruelty FreeParaben FreeTalc FreeHypo-allergenicPhthalate FreeIngredients: Ricinus Communis (Castor) Seed Oil, Ethylhexyl Hydroxystearate, Jojoba (Simmondsia \u00a0Chinensis) Seed Oil, Cera Alba (Beeswax), Euphorbia Cerifera (Candelilla) Wax, \u00a0Copernicia Cerifera (Carnauba) Wax, Isopropyl Palmitate, Cetyl Alcohol, Ascorbic Acid \u00a0(Vitamin C), Theobroma Cacao (Cocoa) Seed Butter, Aloe Barbadensis, Tocopheryl \u00a0Acetate (Vitamin E), Palmitoyl Tripeptide-5, Olea Europaea (Olive) Leaf Extract, \u00a0Eupatorium Rebaudianum Bertoni Leaf Extract, Origanum Vulgare (Oregano) Leaf \u00a0Extract, Thymus Vulgarus (Thyme) Extract, Cocos Nucifera (Coconut) Oil, and Natural \u00a0Vanilla Mint. \u00a0 \u00a0May Contain: Red Iron Oxide, Yellow Iron Oxide, Black Iron Oxide, Titanium Dioxide, Mica. Gluten Free, Vegan",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "99",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Limited Edition Lipstick Novum",
+ "price": 27.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5876ec738df72b74a0aac649415a452f_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This Dr. Hauschka Lipstick leaves the lips feeling soft and silky thanks\n to its composition of premium argan oil and beeswax, as well as mineral\n pigments and medicinal plant extracts.\u00a0 The colour of the slim-liner \ncombines with the natural red of the lips to create completely uniquenuances of colour.Ingredients: Ricinus\n Communis (Castor) Seed Oil, Simmondsia Chinensis (Jojoba) Seed Oil, \nRosa Canina Fruit Extract, Lanolin, Beeswax (Cera Alba), Mica, Daucus \nCarota Sativa (Carrot) Root Extract, Argania Spinosa Kernel Oil, \nEuphorbia Cerifera (Candelilla) Wax, Copernicia Cerifera (Carnauba) Wax,\n Rosa Damascena Flower Extract, Anthyllis Vulneraria Extract, Prunus \nAmygdalus Dulcis (Sweet Almond) Oil, Prunus Armeniaca (Apricot) Kernel \nOil, Hydrogenated Jojoba Oil, Rosa Damascena Flower Wax, Fragrance \n(Parfum), Linalool*, Benzyl Benzoate*, Farnesol*, Limonene*, Geraniol*, \nBenzyl Salicylate*, Eugenol*, Citronellol*, Benzyl Alcohol*, \nMaltodextrin, Lecithin, Silica, Carmine (CI 75470), Iron Oxides (CI \n77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891).\u00a0 *component of \nnatural essential oils",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Organic",
+ "Natural"
+ ]
+ },
+ {
+ "id": "98",
+ "brand": "marcelle",
+ "name": "Marcelle Rouge Xpression Lipstick",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0fbba5395dcc750a7b43b3e3fefb6015_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Luscious lips made easy! Express your true self with Marcelle Rouge Xpression lipstick! Rouge Xpression\n has a dual personality that will delight your lips; it has a \nmoisturizing Maxi-Lip complex that hydrates your lips' delicate skin and\n adds sexy volume.\nReplete with avocado and Omega-6 oils, its formula prevents dry, \ncracked lips and restores moisture. Its creamy, velvety and non-sticky \ntexture ensures total comfort. And with so many vibrant colours, biting \ninto life will never have looked so sexy!\nHypoallergenic and perfume-free.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Gluten Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "97",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Vivid Matte Liquid Lip Colour",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d0b6855d9b603a00f776de498c971b88_ra,w158,h184_pa,w158,h184.png",
+ "description": "Bold, vivid color glides easily onto lips for a velvety matte finish with Maybelline Color Sensational Vivid Matte Liquid Lip Colour. \nFormula is comfortable and creamy with a smooth feel upon application. \nWith full color coverage, the result is a rich, intense lip look in a \nrange of colors from Nude Flush to Electric Pink to Vivid Violet.Features: Lip color glides on smooth to a matte finishInfused with pure pigments for high-impact colorCreamy liquid base for a soft, cushiony feel",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "96",
+ "brand": "revlon",
+ "name": "Revlon Ultra HD Lip Lacquer",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/97f6225468596320404785ab71cb1e02_ra,w158,h184_pa,w158,h184.png",
+ "description": "Lip lacquer goes HD with Revlon's innovative wax-free gel technology. Get true color clarity, vivid high-impact shine and a bouncy, lightweight feel. ",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "95",
+ "brand": "nyx",
+ "name": "NYX Jumbo Lip Pencil ",
+ "price": 5.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6b7a0f4f93839573bf046e149d4927df_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Jumbo Lip Pencil is a radiant lip liner that also doubles as a lipstick. NYX Jumbo Lip Pencils infuse lips with alluring, nourishing color, and help you create a perfect pout. Features:Line, define and color with one jumbo pencilFormulated with mineral oil which does not dry out your lipsGoes on smoothly for easy applicationComes in a variety of seductive shades",
+ "rating": "4.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "94",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics ColorStick",
+ "price": 32.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1855452da6a7fb08fe4154311ccb3369_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Cargo Cosmetics ColorSticks are an oil-free, cream colour stick that blends effortlessly to eyes, \ncheeks and lips, for a natural, monochromatic look. The velvety, \nultra-light texture blends flawlessly onto the skin for an \u201cairbrushed\u201d \nfinish. Cheeks appear smooth and flawless. The cream-to-powder formula\n sets for an exceptionally longwearing finish and never settles into \nfine lines. The dial-up stick makes application a breeze.\nAvailable in 5 shades: Santorini, Key West and Maui give a natural and \npretty colour to the cheeks, eyes and lips. St. Tropez offers sheer \nbronze glow perfect for giving a soft tan glow or sculpting the \ncheekbones. Champagne is a warm highlighter that is ideal for \nhighlighting key areas of the face. \u00a0\n\nFeatures and Benefits\nThe make-up you\u2019re wearing when you\u2019re not wearing make-upA three-in-one cream-to-powder colour stick for the eyes, lips and cheeks The simplicity of multi-use colour in a convenient dial-up stickA velvety, ultra-light texture that blends flawlessly onto the skin for an \u201cairbrushed\u201d finishThe cream-to-powder formula sets for an exceptionally longwearing finish and never settles into fine linesResults in the ultimate nude glow that seems to come from withinDelivers a glowing finish that is never greasy and exceptionally long lastingOIL-FREEHow to Use: Application is versatile. Apply it directly from the stick, blending \nwith your fingers or a foundation brush. Or use a brush directly on the \nproduct and then blend with the brush onto your cheeks.Ingredients: Isopropyl Myristate,Mica, Ethylhexyl Palmitate, Isopropyl Stearate, \nHDI/Trimethylol Hexyllactone Crosspolymer, Polymethylsilsesquioxane, \nSynthetic Wax, CI 77891 (Titanium Dioxide), Ozokerite, CI 77491 (Iron \nOxides), CI 75470 (Carmine).",
+ "rating": "4.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "93",
+ "brand": "revlon",
+ "name": "Revlon ColorBurst Lacquer Balm",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4992a5ad01b474ae1de4a955d6224aca_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon ColorBurst Lacquer Balm offers high shine with balm-like \nmoisture! Packaged in an adorable chubby crayon, this Lacquer balm is infused with a Triple Butter Complex of Shea, Mango and \nCoconut Butter.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "92",
+ "brand": "cargo cosmetics",
+ "name": "Cargo Cosmetics Essential Lip Color",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5e51a2c8ce9316c8342ac47fdc0ebd1d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Cargo Cosmetics Essential Lip Color has a smooth, creamy and lightweight formula that offers high pigment \npayoff while leaving lips plump and perfectly hydrated throughout the \nday. Olive oil, Shea Butter and Jojoba oil provide essential moisture \nwhile plumping peptides offer instant fullness.\n\u00a0\nFeatures:\nRich Emollients of olive oil, jojoba and shea butter flood lips with\n essential moisture, enhancing the feel and wear of the lipstick.Maxi Lip greatly increases lip moisture as it reinforces the \nconnective tissue of the lips. Instantly lips appear fuller and more \nvoluminous.Gluten FreeShade Range:\u00a0Ingredients: Hydrogenated Polyisobutene, Phytosteryl/Isostearyl/Cetyl/Stearyl/Behenyl\n Dimer Dilinoleate, Polyethylene, Bis-Diglyceryl Polyacyladipate-2, \nOctyldodecanol, Triisostearin, Phenyl Trimethicone, Hydrated Silica, \nSqualane, Microcrystalline Wax (Cera Microcristallina), Pentaerythrityl \nTetraisostearate, Ethylhexyl Palmitate, Tribehenin, Sorbitan \nIsostearate, Palmitoyl Oligopeptide, Hydrogenated Olive Oil, Olea \nEuropaea (Olive) Fruit Oil, Olea Europaea (Olive) Oil Unsaponifiables, \nTheobroma Cacao (Cocoa) Seed Butter, Simmondsia Chinensis (Jojoba) Seed \nOil, Persea Butyrospermum Parkii (Shea Butter), Gratissima (Avocado) \nOil, Pentaerythrityl Tetra-Di-T-Butyl Hydroxyhydrocinnamate, Tocopheryl \nAcetate, Tocopherol, Tetrahexyldecyl Ascorbate, Vp/Eicosene Copolymer, \nVp/Hexadecene Copolymer, Acrylates Copolymer, Polyethylene \nTerephthalate, Synthetic Fluorphlogopite, Calcium Sodium Borosilicate, \nCalcium Aluminum Borosilicate, Tin Oxide, Silica. May Contain (+/-): \nMica, Titanium Dioxide (Ci 77891), Iron Oxides (Ci 77491, Ci 77492, Ci \n77499), Carmine (Ci 75470), Manganese Violet (Ci 77742), Red 6 (Ci \n15850), Red 7 Lake (Ci 15850), Red 21 (Ci 45380), Red 27 (Ci 45410), Red\n 28 Lake (Ci 45410), Red 30 Lake (Ci 77360), Red 33 Lake (Ci 17200), \nOrange 5 (Ci 45370), Yellow 5 Lake (Ci 45370), Yellow 6 Lake (Ci 15985),\n Blue 1 Lake (Ci 42090).\n",
+ "rating": "4.8",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "91",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Collection Exclusive Pure Reds",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5d0df885cb5721b74b32f64884736ce4_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Inspired by L\u2019Or\u00e9al Paris muses, Colour Riche introduces six custom-made, enriching matte red shades tailored to enhance a variety of complexions. Play on a coordinated look by pairing with red nails for an absolute statement.Features:A matte that reveals red's colour intensitySoft intense velvet formulationFormulated with velvet spheres, pure pigments, jojoba oil",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "90",
+ "brand": "nyx",
+ "name": "NYX Extra Creamy Round Lipstick",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7e72bc983d7988c6e9b9f35d7703fbe4_ra,w158,h184_pa,w158,h184.png",
+ "description": "NYX Extra Creamy Round Lipstick is the classic, go-to lipstick for all occasions. From Pure Nude to Pink Lyric to Chic Red, Round Lipstick is available in a jaw-dropping variety of shades. Features:Formula offers a velvety textureMineral based to moisturize and condition lipsPigment packed saturated color Long-wearing and smudge resistant Available in a variety of coloursINGREDIENTS: Diisostearyl Malate, Bis-DiglycerylPolyacyladipate-2, Polyglyceryl-2 Triisostearate, Octyldodecanol, IsostearylIsostearate, Ethylhexyl Palmitate, Euphorbia Cerifera (Candelilla) Wax /Euphorbia Cerifera Cera / Cire de Candelilla, Ceresin, Beeswax / Cera Alba /Cire d\u2019abeille, Polyisobutene, Polyethylene, Copernicia Cerifera (Carnauba) Wax/ Copernicia Cerifera Cera / Cire de Carnauba, Microcrystalline Wax / CeraMicrocristallina / Cire Microcristalline, Tocopheryl Acetate, BHA, Limonene,Fragrance / Parfum. MAY CONTAIN / PEUTCONTENIR (+/-): Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491,77492, 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 28 (CI 45410), Red 36(CI 12085), Blue 1 Lake (CI 42090), Yellow 5 Lake (CI 19140).",
+ "rating": "4.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "89",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Rebel Bloom Lipcolour ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fb9e6485500135d94163577da4c3579b_ra,w158,h184_pa,w158,h184.png",
+ "description": "\n \n\tMaybelline Color Sensational\u00ae Rebel Bloom lipstick offers vivacious pastels in a super-saturated lipcolour. Enjoy the kicky bouquet of lip colors in \npinks, reds and mauves. Features:Super-saturated pigments take fresh picked pastels to a new bright\nNever dull, washed out or shy\nHoney nectar adds a sumptuous feel\n\n\t\tApplication: Apply lipcolor starting in the center of your upper lip. Work\n from the center to the outer edges of your lip, following the contours \nof your mouth. Then glide across the entire bottom lip.\n\n\t\t\n\t\n\n ",
+ "rating": "3.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "87",
+ "brand": "dalish",
+ "name": "DaLish Lipstick Matte Collection",
+ "price": 22.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6804e2a3b19200e7a7a67456421763c4_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This DaLish Lipstick wows with full coverage, full pigment colour that won\u2019t dry out lips. Inspired by bright, garden blooms, the long lasting, fashion-forward hues endure coffee time or cocktail hour without the ring around your lips. Shade Range: LO1 - Nude Shade \u2013 ideal for thick to medium lips.LO2 - Pinky/Red \u2013 Has a real punch of colour. For anyone one is willing to be bold!LO3 - Barbie Pink! \u2013 It's bright and a fun colour to wear.LO4 - Vintage Ruby Red \u2013 This is the original Red lipstick from the 1920\u2019s. It just never goes out of style!LO5 - Soft Coral \u2013 It\u2019s a very versatile colour and works well on most.Ingredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglycerides, Copernicia Cerifera (Carnauba) Wax, Cetyl Palmitate, Sorbitan Palmitate, Beeswax, Sorbitan Olivate, Cetyl Alcohol, Euphorbia Cerifera (Candelilla) Wax, Hydrogenated Castor oil, Butyrospermum Parkii (shea Butter), Helianthus Annuus (Sunflower) Seed Oil, Rosmarinus officinalis (Rosemary) Leaf Extract, Benzyl Alcohol, Benzoic Acid, Dehydroacetic Acid, Sorbic Acid, Tocopherol, Vanillin, May contain (+/-), Titanium Dioxide CI 77891, Iron Oxides CI 77491, Mica CI 77019, Red 7 Lake CI 15850, Yellow 5 Lake CI 19140, Red 27 Lake CI 45410, Red 30 Lake CI 73360, Blue 1 Lake CI 42090, Carmine CI 75470. *Contains natural Antioxidant *Contains organic castor oil and Carnauba Wax ",
+ "rating": "3.8",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Canadian",
+ "Natural"
+ ]
+ },
+ {
+ "id": "86",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Gotta Glow Lip Tint ",
+ "price": 7.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ec1e1f8ef1fcf76d2fd21d231bbfac7c_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This innovative e.l.f. Gotta Glow Lip Tint reacts with the chemistry of your lips to deliver a personalized, perfect shade of pink, berry. or peach! The ethereal hue gives a sheer flush of colour that enhances the natural beauty of your lips. The gel-based formula glides on smoothly and is infused with Shea Butter to moisturize and nourish. How To Use: Apply alone for a natural-looking wash of colour or as a base to any of your favorite e.l.f. lip colours. Repeat application as often as desired.Beauty Tip: Create a flushed glow on the check by applying a little directly to the cheeks and blend out with fingers or a sponge. Ingredients: Octyldodecanol, Hydrogenated Polyisobutene, Isononyl Isononanoate, Polyethylene, Dipentaerythrityl Hexahydroxystearate, Triisodecyl Trimellitate, Diisostearylmalate, Stearyl Dimethicone, Butyrospermum Parkii (Shea) Butter, Euphorbia Cerifera (Candelila) Wax, Synthetic Beeswax, Polymethyl Methacrylate, Stearic Acid, Phenoxyethanol, Tocopheryl Acetate (Ve), Ethylhexylglycerin, Oryza Sativa (Rice) Bran Oil, Pentaerythrityl Tetra-Di-T-Butyl, Hydroxyhydrocinnamate, Propylparaben. MAY CONTAIN: Titanium Dioxide (CI 77891),Red 6 Lake (CI 15850), Red 27 Lake (CI 45410), Red 21 Lake (CI 45380). ",
+ "rating": "4.5",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "85",
+ "brand": "maybelline",
+ "name": "Maybelline Lip Studio Color Blur ",
+ "price": 11.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a1151b59f69491a75d9f8d80827bc1ee_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline's Lip Studio Color Blur is a unique cream matte pencil with vivid colour.\u00a0 The blurring smudger allows you to create your look from full on bold to softly blurred.Features:The cream matte pencil feels extremely smooth and comfortable on lips The blurring smudger means you can create your own looks from full-on bold to softly blurredColor Blur comes in many shades ranging from vivids to neutralsHow to Use: To achieve the softly blurred look, apply colour in the center of your top and bottom lips. Using the smudger, gently blur the colour out towards the edges of your top lip and then bottom lip.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "84",
+ "brand": "l'oreal",
+ "name": "L'Oreal Color Riche Extraordinaire Lip Color",
+ "price": 13.96,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/739bc21253ce772c2b2e7ad40d9d3f44_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Transform lips from ordinary to extraordinary. Color is richer, lip \nsurface is smoother and shine is magnified. Formulated with precious \nmicro-oils and rich color pigments, Extraordinaire provides the ideal \nbalance of color and care for perfect lips. The unique soft-touch \napplicator allows for a silky-smooth, gliding application.Directions: Use the wand to apply starting in the center of your upper lip. Work \nfrom the center to outer edges of your lips, following the contour of \nyour mouth. Then glide across the entire bottom lip.\n\t\t",
+ "rating": "4.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "83",
+ "brand": "almay",
+ "name": "Almay Smart Shade Butter Kiss Lipstick",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c4033d18bed5b281e0340d437b81370c_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Almay makes it easy to find your perfect lip color!Almay Smart Shade Butter Kiss\u2122 Lipstick offers beautiful shades expertly coordinated to your unique skintone. The ultra-buttery formula drenches lips in hydration. In fact, 98% of women felt lips were instantly hydrated. Collect the perfect pink, berry, red and nude lipstick for your light, light/medium or medium skintone.Pure. Hypoallergenic. Dermatologist Tested.",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "82",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Silk Finish Lipstick",
+ "price": 1.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/31b7ac34f3370824a7d7ed41d21092a3_ra,w158,h184_pa,w158,h184.png",
+ "description": "Wet n Wild lipstick formula contains all the same things as the other guys: rich color, vitamins A & E, aloe vera, and really feels like putting silk on your lips. If you\u2019re already thinking \u201cThat is a crazy bargain,\u201d they've now added macadamia nut oil that contains antioxidants to hydrate your lips for a smooth, supple pout. Features:Purse Pride! New improved formula and packaging!Rich, creamy, bulidable color that feels like silk on the lips!Chock-full of nutrients! Enriched with conditioning ingredients of vitamins A & E, aloe vera, and macadamia nut oilIngredients: Ricinus Communis (Castor) Seed Oil, Caprylic/Capric Triglyceride, Cetyl Ethylhexanoate, Ozokerite, Microcrystalline Wax/Cire microcristalline, Ethylhexyl Palmitate, Euphorbia Cerifera (Candelilla) Wax/Cire de candelilla, Ceresin, Diisostearyl Malate, Beeswax/Cire d'abeille, Petrolatum, VP/Hexadecene Copolymer, Copernicia Cerifera (Carnauba) Wax/Cire de carnauba, Pentaerythrityl Adipate/Caprate/Caprylate/Heptanoate, Mineral Oil/Huile min\u00e9rale, Fragrance/Parfum, Phenoxyethanol, Sorbic Acid, Tocopheryl Acetate, Phytosteryl Macadamiate, Tocopherol, Glycine Soja (Soybean) Oil, Aloe Barbadensis Leaf Extract, Silica, [+/- (MAY CONTAIN/PEUT CONTENIR): Blue 1 Lake/CI 42090, Carmine/CI 75470, Iron Oxides/CI 77491, CI 77492, CI 77499, Mica, Red 21 Lake/CI 45380, Red 27 Lake/CI 45410, Red 30 Lake/CI 73360, Red 40 lake/CI 16035, Red 6/CI 15850, Red 7 Lake/CI 15850, Titanium Dioxide/CI 77891, Yellow 5 Lake/CI 19140, Yellow 6 Lake/CI 15985] ",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "81",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Crystal Shine",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6709b779907bbb8410a81c3156ac5a1c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Crystal Shine is a spectacular L'Oreal Paris innovation in lip colour that reflects light to perfection!Crystal Shine is brilliance redefined: an explosion of colour that combines the glint of metal with the gleam of crystal. Tiny flakes of crystal are covered by a thick layer of metal and trapped within the rich, moist colour and texture of the lipstick.\nCrystal Shine technology is contained within Colour Riche's new and improved Tri-Active formula of Vitamins A and E, for long lasting comfort.\nColour Riche Crystal Shine is available in 10 stunning shades with crystal reflections-get ready to dazzle!",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "80",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Lipstick ",
+ "price": 34.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6598776755f921413532606f6db6c8f8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Dr. Hauschka Lipstick has all the nurturing qualities of their lip care products. Color glides on effortlessly, leaving your lips velvety-smooth.Features: Rose hip and carrot extract keep lips moist and nourishedRose and Jojoba waxes soften and protectColors from nature highlight your natural tonesFurther contour and highlight with Dr.Hauschka LiplinerIngredients: Ricinus Communis (Castor) Seed Oil, Simmondsia Chinensis (Jojoba) Seed \nOil, Rosa Canina Fruit Extract, Lanolin, Beeswax (Cera Alba), Daucus \nCarota Sativa (Carrot) Root Extract, Euphorbia Cerifera (Candelilla) \nWax, Copernicia Cerifera (Carnauba) Wax, Rosa Damascena Flower Extract, \nAnthyllis Vulneraria Extract, Prunus Amygdalus Dulcis (Sweet Almond) \nOil, Prunus Armeniaca (Apricot) Kernel Oil, Hydrogenated Jojoba Oil, \nRosa Damascena Flower Wax, Fragrance (Parfum), Linalool*, Benzyl \nBenzoate*, Farnesol*, Limonene*, Geraniol*, Benzyl Salicylate*, \nEugenol*, Maltodextrin, Lecithin, Silica, Mica, Carmine (CI 75470), Iron\n Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI 77891) \n",
+ "rating": "4.9",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "79",
+ "brand": "revlon",
+ "name": "Revlon Ultra HD Matte Lipcolor",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8e5fad1f09c17ff8b312508a2a7da161_ra,w158,h184_pa,w158,h184.png",
+ "description": "Revlon Ultra HD Matte Lipcolor gives you lightweight, high definition velvety matte color. It has a moisturizing, velvety \nfeel with a 100% wax-free, gel formula. Features: Creamy mango and whipped vanilla fragrance \nPlush velvety applicator Shade Range: (top row, left to right / bottom row, left to right) Devotion, Obsession, Addiction, Temptation / Flirtation, Love, Seduction, Passion",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "78",
+ "brand": "l'oreal",
+ "name": "L'Oreal Infallible Lipstick ",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8768b6e9ad0890545f5f261980727caa_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "L'Oreal Infallible Lipstick is a longwear 2-step lip colour with hyaluronic gel for 24HR triple action.The hyaluron-infused longwear formula provides saturated, vibrant colour for lips that appear smooth and replenished.Features:All day smoothness for colour that never driesAll day hydration for endless comfortAll day resistance for colour that never fades ",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "77",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Ultimate Suede Lipstick",
+ "price": 14.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6ca3ee39a1dde0039b18d0ebdb7c2603_ra,w158,h184_pa,w158,h184.png",
+ "description": "Is your lipstick giving you both moisture \nand wear? This velvety soft formula with moisturizing shea butter and \naloe is food proof and doesn\u2019t quit. Apply Revlon ColorStay Ultimate Suede Lipstick once and go!Features: Instant MoistureAll-day Color \nShea butter, Aloe \nSoft suede finishApplication Tips: Apply your favorite shade of Revlon \nColorStay Ultimate Suede onto clean, smooth lips. Make a statement with a\n modern matte finish. Revlon ColorStay Ultimate Suede can be worn with \nor without a Lipliner.",
+ "rating": "3.3",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "75",
+ "brand": "revlon",
+ "name": "Revlon Ultra HD Lipstick",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/520ec3a925b375de902b75008f492794_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon Ultra HD Lipstick gives you true color clarity without the heavy feel.Featuring revolutionary wax-free gel technology this lipstick offers true color clarity in one smooth swipe. ",
+ "rating": "",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "74",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Collection Exclusive Lip Colour ",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a9c19212339fb2ed792af559b2a4208d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "L'Oreal Paris Collection Exclusive by Colour Riche\u00ae introduces a permanent offer to \nthe L'Oreal Paris portfolio. This collection includes six signature nude shades by L'Oreal's six \ndazzling spokeswomen. The shades are custom-made to match various skin tones and \nhaircolour.",
+ "rating": "4.7",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "73",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational The Buffs Lipcolour",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/27afa69db661563a1d6135bb5f6079dd_ra,w158,h184_pa,w158,h184.png",
+ "description": "Raw. Real. Pigments explode with sensuous impact\u2026sensational! Maybelline Color Sensational The Buffs Lipcolour have true nude lip color pigments for honest flesh tone color. This range has it all, from blushing beige, to bronze, to espresso.\n\t\tFor Best Results: Apply your nude lip color lipstick by starting in the center \nof your upper lip. Work from the center to the outer edges of your lip, \nfollowing the contours of your mouth. Then glide across the entire \nbottom lipShade Range: \n\t\n\n ",
+ "rating": "4.8",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "72",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Vivids Lipcolour",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0d31f41c37fd18dfc02daa1671719378_ra,w158,h184_pa,w158,h184.png",
+ "description": "With Maybelline Colour Sensational Vivids Lipcolour bright goes gorgeous, never garish!Get brighter color from Maybelline's exclusive vivid pigments.\ufeff Plus get creamier feel from nourishing honey nectar.\ufeff Features: Be bright and gorgeousExclusive Vivid colors are brighterHoney nectar formula nourishes lips\ufeffFor Best Results: Apply lipcolor starting in the center of your upper lip. Work from the center to the outer edges of your lip, following the contours of your mouth. Then glide across the entire bottom lip.\ufeffShade Range: ",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "71",
+ "brand": "pacifica",
+ "name": "Pacifica Devocean Natural Lipstick Deeply Devoted Creamy Color",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/54eca0da1259fdc4eed0346e6fdcb590_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pacifica Devocean Lipstick is a 100% natural, hydrating vegan lipstick that will last with intensity, like the deepest of love.What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup piece found on our blog, The Well! Formulated without: Animal ingredients (including carmine, \nbeeswax and lanolin), animal testing. FD & C colors, mineral oil, \nparabens, phthalates, petroleum, propylene glycol, SLS, gluten, peanut \noil and other ingredients you don't want on your skin.",
+ "rating": "4.3",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Natural",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "70",
+ "brand": "burt's bees",
+ "name": "Burt's Bees Lipstick ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cffae93a3ef7d0c543b36a74684735ad_ra,w158,h184_pa,w158,h184.png",
+ "description": "Burt's Bees Lipstick provides luscious, full-coverage color and hours of natural moisture.Features:Moisturizing Satin-finish shades Creamy and lightweight feel, ideal for everyday wear 100% Natural with 100% recyclable materialDirections: Remove lid, apply to lips for your desired level of satin colorIngredients: diheptyl succinate, capryloyl glycerin/sebacic acid copolymer, ricinus communis, helianthus annuus, cera alba, candelilla cera , behenyl alcohol, oleic/linoleic/linolenic polyglycerides, C12-18 acid triglyceride, lanolin hydrogenated vegetable oil, cera carnauba [copernicia cerifera (carnauba) wax], moringa oleifera seed oil rubus idaeus (raspberry) seed.",
+ "rating": "3.7",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "69",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Creamy Mattes Lipcolour ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/81fd80f898674d00f1860cd0724460f4_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Creamy Mattes by Color Sensational deliver a burst of bold lip color and a surge of creamy texture in great make-a-statement shades, for mattes your lips will love to wear!Features: Lips slip into this creamy matteMattifying cream pure pigments and three precious oilsMake-a-statement shades",
+ "rating": "5.0",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "68",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Colour Riche Lipstick",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5409595e1888807b979036e77ef7e496_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Indulge in richness beyond compare with L'Oreal's most luxuriously rich color and intensely rich hydration. Colour Riche\u00ae\n Lipcolour is richer, creamier and more moisturizing than ever before. \nIn addition to nourishing ingredients like Omega 3 and Vitamin E, the \nformula is enriched with Argan Oil to condition and soften lips. Your \nlips are kept soft, smooth, and ultra-hydrated. With a spectrum of \ngorgeous shades from bold to nearly nude, Colour Riche\u00ae Lipcolour offers a shade that\u2019s perfect for every look and any occasion.\n\t\t",
+ "rating": "4.6",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "67",
+ "brand": "revlon",
+ "name": "Revlon Matte Lipstick",
+ "price": 11.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ee024f34ca91f5fa1358d47284f07fb0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "\nStraight from the Runway shades !\nBeautifully rich matte color glides effortlessly across lips.\nSuede-like, cushiony feel and with maximum color impact.\nBeautifully rich shades from nude to deepest berry.\n",
+ "rating": "4.5",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "66",
+ "brand": "revlon",
+ "name": "Revlon ColorStay Ultimate Liquid Lipstick",
+ "price": 14.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6750098db06175dee7493eca3f711fc3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Revlon ColorStay Ultimate Liquid Lipstick is a one-step, food-proof lipcolor with a patented ColorStay technology that lasts up to 24 hours.Features:Food-proof lipcolor with a built-in, ultra-conditioning topcoatOne-step application- No topcoat required for comfortable wearStays comfortable and wears beautifullyDoes not feather or fade; no touch-ups required, even after meals \n \nTo Use: Apply a thin, even layer to clean, bare lips and wait until dry.",
+ "rating": "4.1",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "65",
+ "brand": "maybelline",
+ "name": "Maybelline Color Sensational Lipcolour",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b1c627d5a7e341e53754c8dee92d2878_ra,w158,h184_pa,w158,h184.png",
+ "description": "Maybelline Colour Sensational Lipcolour will make you fall in love with color, all over again! Features: \n\nCrisper color from pure pigments \nCreamier feel from nourishing honey nectar \nLipcolor so rich, so stunning\u2026 it\u2019s sensational Incredible colour range, from pinks, plums, reds and bronze\n\n\u00a0",
+ "rating": "4.2",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "64",
+ "brand": "nyx",
+ "name": "NYX Soft Matte Lip Cream",
+ "price": 8.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/1dd732e9af6067d5adb4b3b1ba4a4f8c_ra,w158,h184_pa,w158,h184.png",
+ "description": "Neither lipstick nor lip gloss this NYX Soft Matte Lip Cream is a new kind of lip color that goes on silky smooth and sets to a matte finish. Features:Soft Matte Lip Cream is durableUnlike some matte lipstick formulas this lip cream is moisturizing and does not dry outComes in a variety of shades for every occasionLong wearing, high pigmentation Ingredients: Pentaerythrityl Tetraisostearate, Dimethicone,Beeswax, Glyceryl Behenate / Eicosadioate, Phenoxyethanol, Dimethicone /Dimethicone Crosspolymer, Talc, Methyl Methacrylate Crosspolymer, Silica, Aluminium Starch Octenylsuccinate, Isohexadecane,Disteardimonium Hectorite, Propylene Carbonate, Parfum. MAY CONTAIN / PEUT CONTENIR (+/-):CI77019 (Mica) / CI77891 (Titanium Dioxide), CI15850 (D&C Red 6 Na.Salt), CI15850 (D&C Red 7 Ca Lake), CI15985:1 (FD&C Yellow 6 AlLake), CI19140:1 (FD&C Yellow 5 Al Lake), CI45410 (D&C Red 28 AlLake), CI77491 (Iron Oxide Red), CI77492 (Iron Oxide Yellow), CI77499(Iron Oxide Black), CI77742 (Manganese Violet), CI77891 (TitaniumDioxide).",
+ "rating": "4.5",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "62",
+ "brand": "burt's bees",
+ "name": "Burt's Bees Lip Crayon",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ab45997fcda6fc649959ea74507c28e3_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Try Burt's Bees Lip Crayons and enjoy the 100% natural creamy matte colour with moisture-rich wear. These lightweight jumbo lip pencils moisturize for a comfortable, everyday wear with a formula infused with Shea Butter, Kendi Oil, and Jojoba \nOil. It's colour that truly cares for your lips!What look do you go for: the natural bronzed babe, tropical brights, or classic beauty? Try all three with this get the look with natural makeup found on our blog, The Well! Features: \n\nCreamy matte color and moisture-rich wear\nFor everyday wear either alone or layered under a Lip Gloss or Lip Shine\nPrecise application in a playful form without the hassle and mess of sharpening\nNo added flavor or fragrance\nHydrates and moisturizes lips, leaving them feeling soft and smoothShades: Ingredients: ricinus communis (castor) seed oil, caprylic/capric triglyceride, simmondsia chinensis (jojoba) seed oil, candelilla cera (euphorbia cerifera wax, cire de candelilla), cera alba (beeswax, cire d'abeille), cera carnauba (copernicia cerifera wax, cire de carnauba), butyrospermum parkii (shea) butter, hydrogenated vegetable oil, aleurites moluccana seed oil*, olea europaea (olive) fruit oil, helianthus annuus (sunflower) seed oil, rosmarinus officinalis (rosemary) leaf extract, tocopherol, lecithin, silica, glycine soja (soybean) oil. +/- (May contain / Peut contenir): CI 77891 (titanium dioxide), CI 77019 (mica), CI 75470 (carmine), CI 77491, CI 77492, CI 77499 (iron oxides) *kendi oil",
+ "rating": "4.5",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "61",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Matte Lip Color",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5f81d4f36c4ba153bcc62e81bc93573f_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This convenient jumbo sized lip pencil creates exact color application \nwith twist up ease so you never have to sharpen. The pigment rich color\n glides on effortlessly and easily to provide long lasting matte color. \n The enriched Vitamin A, C & E formula moisturizes and hydrates lips\n for beautiful healthy looking lips.How To Use: Apply to lips and blend in color. Re-apply as often as desired. Use alone or layer with your favorite lip gloss shade for a glossy effect. Ingredients: Paraffinum Liquidum (Mineral Oil), Microcrystalline Wax (Cera \nMicrocristallina), Synthetic Beeswax\uff0cEthylhexyl Palmitate, Copernicia \nCerifera (Carnauba) Wax, Ozokerite, Polyethylene, Ceresin, Silica \nDimethyl Silylate, Polyisobutene, Aspartame, Retinol (VA), Magnesium \nAscorbyl Phosphate (VC), Tocopheryl Acetate (VE), Phenoxyethanol, \nEthylparaben\uff0cPropylparaben, Methylparaben. May Contain\uff1aTitanium Dioxide \n(CI 77891), Iron Oxides (CI 77491, CI 77492,CI 77499), Blue No.1 Lake ( \nCI 42090), Red No.40 Lake (CI 16035), Red No.7 Lake (CI 15850), Red \nNo.27 Lake (CI 45410)",
+ "rating": "4.3",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "60",
+ "brand": "revlon",
+ "name": "Revlon Super Lustrous Lipstick",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6618c0f47d043084550818a74e6250aa_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon Super Lustrous Lipstick is as essential as the little black dress. With a tonne of fabulous, fashionable shades, Super Lustrous Lipstick offers the widest range of colors, so you are sure to find one that looks gorgeous on you! Packed with mega-moisturizers and vitamins C and E for soft, smooth, sexy lips. Your lips stay kissably conditioned for lasting smoothness while the color stays rich and true.",
+ "rating": "4.9",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "59",
+ "brand": "milani",
+ "name": "Milani Color Statement Moisture Matte Lipstick",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a782e8566462ce85fbf46a791f0004e5_ra,w158,h184_pa,w158,h184.png",
+ "description": "Inspired by the Milan Runway, eight new matte shades and two luscious cr\u00e8me shades.Features:One stroke, full coverage applicationLightweight & creamy formulaInfused with Vitamins A & C to hydrate lipsLong-wearing formula Colour-true finishApplication: Begin applying from the center of your upper lips and work your way to the outer edges. Same application is used for your bottom lips. Tip: Lipliner helps extend the wear & keeps your lipstick from feathering.\u00a0\u00a0 When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades.\u00a0\u00a0 Create a custom lipcolor by using a contrasting lipliner and lipstick shade.Ingredients: Ricinus Communis (Castor) Seed Oil, Tridecyl Trimellitate, Euphorbia Cerifera (Candelilla) Wax / Euphorbia Cerifera Cera, Ethylhexyl Palmitate, Microcristallina Cera (Microcrystalline Wax), Cera Alba (Beeswax), Ozokerite, Copernicia Cerifera (Carnauba) Wax/Cera Carnauba, Benzyl Benzoate, Fragrance (Parfum), Vanillin, Ascorbyl Palmitate, Tocopherol, Glycine Soja (Soybean) Oil, Retinyl Palmitate, Hydroxycitronellal. +/- May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 22 (CI 45380), Red 27 (CI 45410), Red 28 (CI 45410), Yellow 5 (CI 19140), Yellow 6 (CI 15985), Blue 1 (CI 42090), Carmine (CI 75470).",
+ "rating": "4.7",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "58",
+ "brand": "milani",
+ "name": "Milani Color Statement Lipstick",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5adaa808a071d0f63933cb75fa9a1dfc_ra,w158,h184_pa,w158,h184.png",
+ "description": "Inspired by the Milan Runway, eight new matte shades and two luscious cr\u00e8me shades.Features:One stroke, full coverage applicationLightweight & creamy formulaInfused with Vitamins A & C to hydrate lipsLong-wearing formula Colour-true finishApplication: Begin applying from the center of your upper lips and work your way to the outer edges. Same application is used for your bottom lips. Tip: Lipliner helps extend the wear & keeps your lipstick from feathering.\u00a0\u00a0 When choosing a lipliner shade, match the lipliner to your lipstick shade or match your lipliner to the shade of your lips which will work with all your lipstick shades.\u00a0\u00a0 Create a custom lipcolor by using a contrasting lipliner and lipstick shadeIngredients: Ricinus Communis (Castor) Seed Oil, Tridecyl Trimellitate, Euphorbia Cerifera (Candelilla) Wax / Euphorbia Cerifera Cera, Ethylhexyl Palmitate, Microcristallina Cera (Microcrystalline Wax), Cera Alba (Beeswax), Ozokerite, Copernicia Cerifera (Carnauba) Wax/Cera Carnauba, Benzyl Benzoate, Fragrance (Parfum), Vanillin, Ascorbyl Palmitate, Tocopherol, Glycine Soja (Soybean) Oil, Retinyl Palmitate, Hydroxycitronellal. +/- May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850), Red 7 (CI 15850), Red 22 (CI 45380), Red 27 (CI 45410), Red 28 (CI 45410), Yellow 5 (CI 19140), Yellow 6 (CI 15985), Blue 1 (CI 42090), Carmine (CI 75470). ",
+ "rating": "4.4",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "57",
+ "brand": "revlon",
+ "name": "Revlon ColorBurst Matte Balm ",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/76076d06ebd517f1ae7e359d96d50b32_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Revlon ColorBurst Matte Balm offers velvety color with balm-like moisture!Packaged in an adorable chubby crayon, this Matte balm is infused with a Triple Butter Complex of Shea, Mango and \nCoconut Butter.",
+ "rating": "4.3",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": []
+ },
+ {
+ "id": "56",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Moisturizing Lipstick",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/9e370b087244262131cab9db8b6725c7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The velvety, satin texture of e.l.f. Studio Moisturizing Lipstick glides on lips with vibrant color and \nluminous shine. Enriched with Shea and Vitamins A, C, & E to nourish\n and hydrate the lips. The rich, creamy formula seals in moisture for \nlong-lasting wear and comfort.Ingredients: Paraffinum Liquidum (Mineral Oil), Petrolatum, Ceresin, Ethylhexyl Palmitate, Hydrogenated Polydecene, Microcrystalline Wax (Cera Microcristallina), Polybutene, Paraffin, Synthetic Beeswax, Polyethylene, Copernicia Cerifera (Carnauba) Wax, Silica Dimethyl Silylate, Fragrance (Parfum), Butyrospermum Parkii (Shea) Butter, Retinyl Palmitate (Va), Tocopheryl Acetate (Ve), Ascorbyl Palmitate (Vc), Neotame, Propylparaben May Contain: Mica, Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 40 Lake (CI 16035), Red 7 Lake (CI 15850), Red 27 Lake (CI 45410), Red 6 Lake (CI 15850), Yellow 5 Lake (CI 19140), Blue 1 Lake (CI 42090) ",
+ "rating": "4.1",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "55",
+ "brand": "pure anada",
+ "name": "Pure Anada Petal Perfect Lipstick",
+ "price": 14.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b66c56aeb8d078123cca4c9c64d17cb9_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Pure Anada Petal Perfect Lipstick is a moisture intensive natural lipstick. Made with rich butters, plant oils, and waxes provide a smooth, creamy consistency. For a boost of shine, apply the coordinating Pure Anada Lip Gloss on top of your lipstick.Pure Anada Petal Perfect Lipstick is made with certified organic Rosehip Seed Oil which is known to\u00a0repair dry, damaged skin and promote cell regeneration.\u00a0 A perfect treatment to hydrate and smooth your lips!A berry-toned lip is a must have for the cool fall season and carries on great through the winter! Find more green fall beauty essentials on our blog, The Well.Shades: Ingredients: Ricinus Communis\u00a0(Organic Castor Seed Oil),\u00a0Rosa Canina\u00a0(Organic Rosehip Seed Oil),\u00a0Simmondsia Chinensis\u00a0(Organic, cold pressed Jojoba Seed Oil),\u00a0Butyrospermum Parkii Fruit\u00a0(Unrefined, Organic, Shea Butter),\u00a0Limnanthes Alba\u00a0(Organic Meadowfoam Seed Oil),\u00a0Euphorbia Cerifera(Candelilla Wax),\u00a0Copernicia Cerifera(Carnauba) Wax, Mica, Iron Oxides, Tocopherol (Vitamin E), Citrus Tangerina (Organic Tangerine Essential Oil)Vegan, Gluten Free, Non-GMO, Dairy Free, Peanut Free, Natural",
+ "rating": "4.3",
+ "category": "lipstick",
+ "product_type": "lipstick",
+ "tag_list": [
+ "Natural",
+ "Gluten Free",
+ "Non-GMO",
+ "Peanut Free Product",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "54",
+ "brand": "mineral fusion",
+ "name": "Mineral Fusion Lengthening Mascara",
+ "price": 19.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b8c71c36c73225905314a6ba0d5b5f6b_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Natural minerals darken, define and condition lashes in Mineral Fusion Lengthening Mascara formulation. This hypoallergenic mascara applies smoothly, and naturally nourishes and protects to promote maximum lash length, health and fullness. Free of Gluten, Parabens, Artificial Colors, Fragrances and Talc. Never-tested on animals. Hypoallergenic.Shade Range: Ingredients: Water, Beeswax, Stearic Acid, Copernicia Cerifera (Carnauba) Wax, Synthetic Wax, Butylene Glycol, C18-36 Acid Triglyceride, Hydroxyethylcellulose,\u00a0 Sodium Hydroxide, Lecithin, Polysorbate 20, Sorbitan Laurate, Propylene Glycol Stearate, Propylene Glycol Laurate/Stearate, Phenoxyethanol, Ethylhexylglycerin, Iron Oxides (CI 77499). ",
+ "rating": "3.4",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Gluten Free",
+ "Natural"
+ ]
+ },
+ {
+ "id": "53",
+ "brand": "covergirl",
+ "name": "CoverGirl Professional Mascara Curved Brush Very Black",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c28f5756cc3f81f36baebfd753207c58_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes. The curved brush finds lashes you didn't know you had, for a volumized, long, defined lash look without the clumps or blobs.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersLash volume without clumpsApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "52",
+ "brand": "covergirl",
+ "name": "CoverGirl Professional Mascara Curved Brush Black Brown",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c7fe159f81fff4e0b8269782b20048ac_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes. The curved brush finds lashes you didn't know you had, for a volumized, long, defined lash look without the clumps or blobs.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersLash volume without clumpsApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "51",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Voluminous Butterfly Midnight Black Mascara",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cd24f2eacba5d03d916a924afaadbee5_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Stretch and extend your lashes like wings! Introducing Voluminous \nButterfly Mascara, one of L'Oreal's most-exciting mascara innovations, yet. \nIts revolutionary Butterfly Brush\u2122 with asymmetrical lash \nline shape extends and lifts outer corner lashes to give you a \nwinged-out effect, instantly volumizing lashes at the roots and \nstretching lashes outward. The unique Cocoon Fibers\u2122 instantly wrap lashes in a soft, delicate veil to create silky, spectacular lashes that flutter.",
+ "rating": "4.7",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "50",
+ "brand": "zorah",
+ "name": "Zorah Mascara Lengthing",
+ "price": 27.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/dba2438dde72fe06c8f7a672b9618b0a_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "This lengthening mascara is made with a unique combination of intense black pure mineral pigments and organic Argan oil to perfectly coat and shape lashes. The twin helix brush and its 3D spheres perfectly sculpt each lash with a full 360\u00b0 coverage.Opthalmologically tested. Suitable for use with contact lenses. Fast drying.Organic cosmetic certified by Ecocert Greenlife:97% of the total ingredients are from natural origin18% of total ingredients are from organic farmingDirections: For a lengthening and curvaceous effect, apply the Lengthening Treatment Mascara at the lash base zigzagging upwards. Repeat with a second layer for intensity.Ingredients: Aqua, Alcohol Denat.**, Cetearyl olivate, Sorbitan olivate, Cetyl Palmitate, Sorbitan Palmitate, Copernicia Cerifera (Carnauba) Wax*, Cera Alba*, Glycerin, Magnesium Silicate, Argania Spinosa Kernel Oil*, Cucurbita Pepo (Pumpkin) Seed Oil*, Aroma, Sodium Phytate, Sodium Citrate, Benzyl Alcohol, Salicylic Acid, Sorbic Acid, Dehydroacetic Acid, Sodium Hydroxide, Xanthan Gum. [+/-(peut contenir/may contain) Iron Oxides](peut contenir/may contain) Iron Oxides]",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Organic",
+ "Gluten Free",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "49",
+ "brand": "covergirl",
+ "name": "CoverGirl LashBlast Fusion Water Resistant Mascara ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/e4bd2eaff5e2b0c9c8c29ecd86d0c7e6_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "CoverGirl LashBlast Fusion Water Resistant Mascara has a fiberstrech lengthening formula and super-volumizing brush that thickens and extends each individual lash for high volume, length and perfect\n separation rain or shine.Features:Super volumizing and buildable fiber-strength lengtheningThickens and extends the look of your bare lashesWater resistant",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "48",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Eye Booster Instant Lash Extension Kit in Ultra Black",
+ "price": 19.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/16ace93b48cdc67bb76c81eaec10ff45_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Get instant brush on lash extensions with this Physicians Formula Eye Booster Instant Lash Extension Kit. It's a total lash transformation!Features: HypoallergenicParaben & Gluten freeDermatologist approvedOphthalmologist testedDirections: Sweep Lash Boosting Mascara to prep for fibers. Brush on extensions to upper lashes while mascara is still wet to instantly build lashes. Reapply Lash Boosting Mascara to seal and set extensions.Ingredients: Mascara: Water, Beeswax, Iron Oxides, Copernicia Cerifera (Carnauba) Wax, PVP, Cyclopentasiloxane, Glyceryl Stearate, Propylene Glycol Stearate SE, Cyclohexasiloxane, Stearic Acid, Triethanolamine, Oleic Acid, Polybutene, Phenoxyethanol, Myristoyl Pentapeptide-17, Glycerin, Panthenol, Magnesium Aluminum Silicate, Cellulose Gum, Tocopheryl Acetate, Simethicone, Tetrasodium EDTA. Extensions: Cellulose, Panthenol, Cynara Scolymus (Artichoke) Leaf Extract, Ocimum Basilicum (Basil) Leaf Extract, Tocopherol.Experience a total lash transformationExperience a total lash transformati",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "47",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Voluminous Million Lashes Excess Mascara ",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/47b1c14f64fe1e4b6ad46fcd67a34012_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "L\u2019Or\u00e9al Paris introduces \nVoluminous Million Lashes Excess, which combines bold volume with clean \ndefinition for an excessively dramatic lash look.The legendary \nMillionizer brush is bigger than ever to separate and build each lash \nevenly from root to tip. The mascara features a built-in, anti-clump \nwiper that removes surplus mascara for a clean and impactful effect. Plus, the ultra black formula amplifies each individual lash for a dramatic lash effect.",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "46",
+ "brand": "covergirl",
+ "name": "CoverGirl LastBlast Clump Crusher Water Resistant Mascara ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b02f002545c5dc18be53297faaf04b7a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "A breakthrough in no-clump mascara! Get 200% more volume and zero \nclumps. Features an innovative double-sided brush with lash-loading and \nclump-combing zones to crush clumps.Features: 200% more volume, zero clumpsInnovative curved brushSuper-volumized, beautifully separated lashesWater resistant",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "45",
+ "brand": "almay",
+ "name": "Almay Intense i-Color Volumizing Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/65c2bc9cc03b915be08e68b8e4acb919_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Take your unique eye color to new limits with double the volume*, double the \nimpact. Expertly coordinated shades with eye-brightening crystals create\n multi-dimensional amplification. The lash enhancing brush with \nvolume-boosting grooves finds and flaunts every lash for big bold volume\n that won\u2019t smudge or flake. *Achieved in one coat using 25 strokes ",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "44",
+ "brand": "covergirl",
+ "name": "CoverGirl LashBlast Full Lash Bloom Mascara Very Black (800)",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/bd505b8626119f31924057a086e542bf_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "With CoverGirl Full Lash Bloom Mascara, get exceptional lash fullness that's soft - even to the touch. With CoverGirl's petal-shaped brush and mousse formula with natural beeswax, lashes are never stiff or brittle. Perfect for everyday wear, Full Lash Bloom Mascara is also safe for contact lens wearers and is ophthalmologically tested. So bring out every last lash, and embrace you in full bloom!Features: Gives soft, full lashes that are never stiff or brittle.Petal shaped brush and soft, mousse formula, with natural beeswax, brings out every lashOphthalmologically tested and suitable for contact lens wearersIngredients: Water/Eau, Beeswax/Cire D'Abeille, Cetearyl Alcohol, Shellac, Copernicia Cerifera (Carnauba) Wax/Cire De Carnauba, Ceteareth-20, Glycerin, Tapioca Starch, Lecithin, Ethylhexylglycerin, Alcohol Denat., Phenoxyethanol, Benzyl Alcohol, Xanthan Gum, Ammonium Hydroxide, Sodium Gluconate May Contain: Titanium Dioxide, Iron Oxides",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "43",
+ "brand": "covergirl",
+ "name": "CoverGirl Professional Super Thick Lash Mascara Very Black",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cb7bdcebdc593ba34c0f40b41a3ff44c_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get beautiful, thick, high-impact lashes with COVERGIRL professional super thick lash mascara! The brush separates, defines, and reaches those little lashes so you get bold, defined lashes so easy, so beautiful!Features:Bold, defined volumeSeparates and defines lashesLasts all dayApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "42",
+ "brand": "maybelline",
+ "name": "Maybelline Volum'Express Falsies Big Eyes Mascara",
+ "price": 12.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a28e1387642c86f2d2e0cf446b2137aa_ra,w158,h184_pa,w158,h184.png",
+ "description": "2 brushes. 2x more impact!Now get bigger eyes with 360 degrees of false \nlash glam volume! Upper lashes get over-the-top glam with the upper \nbrush, while the lower brush grabs every tiny lower lash for a full \ncircle effect.For best results: Apply the Upper Brush against the top lid lashes and sweep from\n root to tip until a clean, voluminous look is achieved, followed by the\n lower lash line using the lower Micro Brush. Do not let dry between \ncoats. Removes easily with soap and water or with Maybelline\u00ae Clean \nExpress!\u2122 Classic Eye Makeup Remover.\n",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "41",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Voluminous Butterfly Mascara ",
+ "price": 13.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/3f10d95aaf893f1f0cfdd62b803f4212_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Stretch and extend your lashes like wings! Introducing Voluminous \nButterfly Mascara, one of L'Oreal's most-exciting mascara innovations, yet. \nIts revolutionary Butterfly Brush\u2122 with asymmetrical lash \nline shape extends and lifts outer corner lashes to give you a \nwinged-out effect, instantly volumizing lashes at the roots and \nstretching lashes outward. The unique Cocoon Fibers\u2122 instantly wrap lashes in a soft, delicate veil to create silky, spectacular lashes that flutter.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "40",
+ "brand": "covergirl",
+ "name": "CoverGirl Professional Waterproof Mascara Very Black",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d44d5338e9dfa2b5234a02d25af64a26_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Volumize, lengthen and define like a pro! CoverGirl Professional 3-in-1 mascara for all day beautiful lashes.Features:Volume + length + definition in one easy stepHypoallergenic and suitable for contact lens wearersWaterproofApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "39",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear CC Curl + Care Mascara ",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/91995140b7749badeb17c41a7e035354_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The \u200b1st ever 100% natural mascara with 70% organic ingredients combines the benefits of curl and care for eyelash curler results without the risk of lash loss.\u00a0 Innovative formula features Physicians Formula's proprietary 100% Natural Origin CurlBooster\u2122 Technology for 2 levels of CC Performance: Curl & Volumize Lashes Condition & Nourish LashesHypoallergenic. Fragrance Free. Gluten Free. Opthalmologist Approved. 100% Free of Harsh Chemicals. 100% Free of Synthetic Preservatives. 100% Free of Parabens. 100% Free of GMO's (Genetically Modified Organisms). 100% Free of Synthetic Colors.\u00a0",
+ "rating": "3.2",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "38",
+ "brand": "marcelle",
+ "name": "Marcelle Ultimate Lash Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6f521dc72d362855a605105854a6a54f_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Fabulously full lashes for star-like appeal.Marcelle Ultimate Lash Mascara is all about transformation, from thin to plump, thick \nand full lashes. Specially designed wand is easy to use and applies just\n the right amount of mascara for maximum lash volume that is free of \nclumps and mess. Formulated with proteins and revitalizing ingredients \nto give lashes the royal treatment and last a long, long time without \nflaking. Strong, full lashes are guaranteed, plus it's hypoallergenic \nand perfume-free so it's perfect for everyone.",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Canadian",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "37",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Lengthening & Volumizing Mascara",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8797938435b2e7f995aa632d5f2b2ba2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Achieve thicker, fuller, and longer lashes that are beautiful and \nnatural with e.l.f. Studio Lengthening & Volumizing Mascara. The enlarged brush coats your lashes evenly for an enhanced \nappeal. The unique formula is clump free and quick drying so you can \nhave color that stays on all day with no smudging and no flaking.Ingredients: Aqua(Water), Caprylic/Caprictri Glycerides, Cera Carnauba (Carnauba) \nWax, Synthetic Beeswax, Styrene/Acrylates/Ammonium Methacrylate \nCopolymer, Stearic Acid, Cetyl Alcohol, Glyceryl,Stearate SE, PVP, \nTriethanolamine, Triacontanyl PVP, Hydroxyethyl Cellulose, Benzyl \nAlcohol, Methylchloroisothiazolinone, Methylisothiazolinone\n\nMay Contain: Iron Oxides(CI 77891, CI 77892, CI 77899)\n",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "36",
+ "brand": "wet n wild",
+ "name": "Wet n Wild Mega Protein Mascara",
+ "price": 3.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/8b5c28e396504d8fb54c91c791f36749_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Wet n Wild Mega Protein Mascara is a nourishing mascara conditions lashes with soy and wheat proteins and acai oil for healthier, fuller lashes.",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "35",
+ "brand": "covergirl",
+ "name": "CoverGirl Lashblast Volume Blasting Waterproof Mascara",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/527f52aaaba663227d70de7c0a34ff80_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Get a blast of lush, volumized lashes! LashBlast\u2019s patented \nvolume-boosting formula and patent-pending brush are designed to max-out\n each and every lash, leaving you with the ultimate big lash look.Features: Instant volume and fullnessSmudge and smear-proofHypoallergenic and suitable for contact lens wearers",
+ "rating": "5.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "34",
+ "brand": "covergirl",
+ "name": "CoverGirl LashBlast Fusion Mascara ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fcd915ee80b8b9cfaa71225020b8df3b_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Experience COVERGIRL's first ever volume + length mascara!The \nfiberstretch formula and oversized brush make every little lash bigger, \nfuller, longer -looking and more dramatic.* \t\t\t\t\t\t\t \n \t\n *vs bare lashesFeatures: Super-Volumizing + Buildable fiber-strength lengtheningThickens and extends the look of your natural lashes",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "33",
+ "brand": "covergirl",
+ "name": "CoverGirl Professional Natural Lash Mascara Clear",
+ "price": 6.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/fa655a2751adc3d38050d08325f2d97f_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "For natural beautiful looking lashes! The CoverGirl clear gel formula and curved brush separates lashes while conditioning. It helps tame unruly brows too!Features:Natural looking lashesBeautifully tamed browsLasts all dayApplication Tips: Hold brush as close as possible to base of lashes, and wiggle it as you move it up through lashes.",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "32",
+ "brand": "maybelline",
+ "name": "Maybelline Define-A-Lash Lengthening & Defining Mascara",
+ "price": 10.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/cf9136ade1dd304b8cb81deb4b87e333_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Define-A-Lash Lengthening & Defining Mascara is a zero-clump mascara that creates stunning length and clean definition.\u00a0The flexible brush is shaped to the lash to elongate and define lashes, one by one. The built-in wiper contours brush to remove excess formula, ensuring clean deposit on lashes. There is no smudging, smearing or flaking, and the smooth, lightweight formula feels comfortable on lashes.Allergy tested, ophthalmologist tested and contact lens safe.\n\n",
+ "rating": "4.4",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "31",
+ "brand": "covergirl",
+ "name": "CoverGirl LastBlast Clump Crusher Mascara ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/df2f212e8449edcaff4876f592c4311e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "A breakthrough in no-clump mascara! Get 200% more volume and zero \nclumps. Features an innovative double-sided brush with lash-loading and \nclump-combing zones to crush clumps.Features: 200% more volume, zero clumpsInnovative curved brushSuper-volumized, beautifully separated lashes",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "30",
+ "brand": "almay",
+ "name": "Almay One Coat Get Up & Grow Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c4d0fba49172b419bc64cd92d31544c2_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Almay One Coat Get Up & Grow Mascara instantly lengthens and strengthens lashes every time you use it.Features:\nAnti-breakage pro-vitamin formula defends against damage so lashes continue to grow their longest\nUnique brush shape fits eye contours perfectly so that you reach every last lash in just one coat\nClump free\nExtra gentle formula is safe even for sensitive eyes\n\nHypoallergenic. Ophthalmologist Tested.",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "29",
+ "brand": "maybelline",
+ "name": "Maybelline Great Lash - Clear",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6cce75ce02a6694e1c89f7d5a68c8174_ra,w158,h184_pa,w158,h184.png",
+ "description": "Great Lash Clear Washable Mascara is a crystal clear formula that gives a softer, fuller look.The gentle brush separates lashes into a perfect fan. It contains panthenol to condition lashes, glycerin for a soft feel. This is great for shaping and setting brows. Contact lens safe, opthalmologist tested.\n\u00a0",
+ "rating": "3.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "28",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear Jumbo Lash Mascara",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/f0aa3e9c67743493c5caf4ecccccf57a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear Jumbo Lash Mascara gives you 100% Dramatic Volume & Glamour. Additional Features: 100% of the Total Ingredients are from Natural Origin. 47% of the Total Ingredients are from Organic Farming. OrganiSoy Moisturizes and helps nourish lashes. Eco-Olive a natural antioxidant, shields lashes from harsh environmental aggressors. Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for \nadded volume. Can easily be washed off with soap and water or removed \nwith Physicians Formula Eye Makeup Remover Pads or Lotions.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water.* Glycerin. Iron Oxide. \nMicrocrystalline Cellulose. Glyceryl Stearate. Water. Beeswax.* Jojoba \nEsters. Tapioca Starch.* Copernicia Cerifera (Carnauba) Wax.* Stearic \nAcid. Glyceryl Caprylate. Aloe Barbadensis Leaf Juice.* Cellulose Gum. \nCucumis Sativus (Cucumber) Fruit Extract.* Glycine Soya (Soybean) Oil.* \nHydrolyzed Oryza Sativa (Rice) Protein. Leuconostoc/Radish Root Ferment \nFiltrate. Magnesium Aluminum Silicate. Olea Europaea (Olive) Leaf \nExtract.* May Contain: Titanium Dioxide.Hypoallergenic. Fragrance free. Opthamologist approved.",
+ "rating": "3.1",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "27",
+ "brand": "dr. hauschka",
+ "name": "Dr. Hauschka Mascara",
+ "price": 33.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/85c6b509ae9d55d4cf6ab9208ea98aee_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Mascara creates fuller lashes that accentuate your eyes. Medicinal extracts of eyebright, black tea and neem leaves have a soothing effect on the sensitive eye area while rose wax and jojoba oil protect and fortify each individual eyelash. Ophthalmologically and dermatologically tested.Features:Truly natural and organic cosmetics, certified to NATRUE and/or BDIH standardsFree from chemical/synthetic fragrances and preservativesFree from mineral oils, parabens, silicone and PEGDermatologically tested for sensitive skinWherever possible, all raw materials come from controlled organic or Demeter cultivation and are recovered under fair conditionsIngredients (Black, Blue):Ingredients Water (Aqua), Alcohol, Sorbitol, Ricinus Communis (Castor) Seed Oil, Cetearyl Alcohol, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hectorite, Hydrogenated Jojoba Oil, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Xanthan Gum, Lysolecithin, Silica, Iron Oxides (CI 77499), Titanium Dioxide (CI 77891), Ultramarines (CI 77007).\u00a0 *component of natural essential oilsIngredients (Brown):Water (Aqua), Alcohol, Sorbitol, Ricinus Communis (Castor) Seed Oil, Cetearyl Alcohol, Camellia Sinensis Leaf Extract, Melia Azadirachta Leaf Extract, Euphrasia Officinalis Extract, Hectorite, Hydrogenated Jojoba Oil, Beeswax (Cera Alba), Rosa Damascena Flower Wax, Fragrance (Parfum), Citronellol*, Geraniol*, Linalool*, Xanthan Gum, Lysolecithin, Maltodextrin, Silica, Carmine (CI 75470), Iron Oxides (CI 7749\u00b9, CI 77492, CI 77499).\u00a0 *component of natural essential oils",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural"
+ ]
+ },
+ {
+ "id": "26",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Waterproof Lengthening & Volumizing Mascara",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/90787a47b829c5d11e1e4f001e68d90d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Achieve thicker, fuller, and longer lashes that are beautiful and \nnatural with e.l.f. Studio Waterproof Lengthening & Volumizing Mascara. The enlarged brush coats your lashes evenly for an enhanced \nappeal. The unique formula is clump free and quick drying so you can \nhave color that stays on all day with no smudging and no flaking. \nWaterproof, tear-proof and sweat proof for a look that lasts against all\n odds.Ingredients: Aqua (Water), Caprylic/Caprictri Glycerides, Cera Carnauba (Carnauba) \nWax, Synthetic Beeswax\nStyrene/Acrylates/Ammonium Methacrylate Copolymer, Stearic Acid, Cetyl \nAlcohol, Glyceryl Stearate SE\nPVP, Triethanolamine, Triacontanyl PVP, Hydroxyethyl Cellulose, Benzyl \nAlcohol, Methylchloroisothiazolinone, Methylisothiazolinone. May Contain: Iron Oxides(CI 77491, CI 77492, CI 77499)\n",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "25",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Extra Volume Collagen Mascara",
+ "price": 13.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7bcefaf1f12f609b2d3d1df2cfbcf6db_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "L'Oreal's biggest volume builder! Introducing the latest innovation in mascara technology--Extra Volume Collagen Mascara. It's made with hydra-collagen and enhances the thickness of your lashes for up to 12x more impact without any clumps. Our patented brush is 50% bigger so it builds that incredible volume fast. Your lashes will build extra body and extra impact in just one sweep.",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "24",
+ "brand": "almay",
+ "name": "Almay One Coat Thickening Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a49009aa8bdc3aab2b07a78fbfe0bcb8_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Almay One Coat Thickening Mascara gives you up to 100% thicker lashes in one smooth, even coat. This volumizing formula builds lashes double thick in one quick, clump-free application. Nourishing formula is infused with aloe and vitamin B5 to help keep lashes conditioned and silky. Extra gentle, non irritating formula.Hypoallergenic. Ophthalmologist tested.",
+ "rating": "4.1",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "23",
+ "brand": "maybelline",
+ "name": "Maybelline Great Lash Big Mascara",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0795abd7feaf855f88055e181652d65a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Live Big! Great Lash Big has a Bigger Brush for Great Big Live-It-Up Lashes!\n\nThe Great Big Brush provides a bigger, bolder lash effect\nGreat buildable formula still conditions as it thickens with even greater intensity\nNo clumps or globs\n",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "22",
+ "brand": "e.l.f.",
+ "name": "e.l.f. Studio Mineral Infused Mascara",
+ "price": 4.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/be704396ee7b24ec4783787df9be1eeb_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "e.l.f. Studio Mineral Infused Mascara creates fuller, healthier looking \nlashes. Enhance lashes for a naturally thicker and more volumized look.\n The long-wear formula and unique silicone brush creates a clump free \nand defined application for gorgeous lashes all day.Ingredients: Aqua (Water), Caprylic/Capric Triglyceride, Cera Carnauba (Carnauba) \nWax, Synthetic Beeswax, Styrene/Acrylates/Ammonium Methacrylate \nCopolymer, Stearic Acid, Cetyl Alcohol, Glyceryl Stearate SE, PVP, \nTriethanolamine , Triacontanyl PVP, Hydroxyethyl Cellulose, Caprylyl \nGlycol, Phenoxyethanol, Potassium Sorbate\nMay Contain: Iron Oxides (CI 77491 , CI 77492 , CI 77499), Manganese \nViolet (CI 77742) \n\n",
+ "rating": "4.3",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Vegan"
+ ]
+ },
+ {
+ "id": "21",
+ "brand": "",
+ "name": "Earth Lab Raw Mascara",
+ "price": 24.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/823cecb5e0d139ff5a98c253aa68c876_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This 100% natural, botanical based formula glides on effortlessly. You'll enjoy \nthe silky smooth application which easily separates lashes and the best part - No Clumping, No Flaking, No Smudging, No Toxic Chemicals and No Parabens!Ingredients: Water/Aqua, Natural Beeswax, Copernicia Cerifera (Carnauba) Wax, \nLecithin, Glyceryl Stearate, Glycerin, Xanthan Gum, Celluloses, Carthamus \nTinctorius (Safflower) Seed Oil, Aloe Barbadensis Leaf Extract, Jojoba (Simmondsia \nChinensis) Oil, Tocopherol, Chamomilla Recutita (Matricaria) Flower Extract, \nRosmarinus Officinalis (Rosemary) Leaf Extract, Cucumis Sativus (Cucumber) Fruit \nExtract, Phenoxyethanol, Silica, Mica, Iron OxidesRaw Mascara guaranteed 12 months sealed and expires within 3 months of opening.For usage tips for Earth Lab Raw Mascara read our blog post.\u00a0 ",
+ "rating": "4.1",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "20",
+ "brand": "maybelline",
+ "name": "Maybelline Great Lash Mascara",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/6b4d354890177a73b4d6630d723c2f21_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Great Lash Waterproof Mascara conditions as it thickens lashes. The lash-doubling formula glides on smoothly to build great-looking smudge-proof lashes. The lash-building brush makes it easy to get a full lash look without clumps. Hypoallergenic and contact lens safe.\nAllure 2008 Reader's Choice Award Winner for drugstore mascara.\n",
+ "rating": "4.2",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "19",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Double Extend Beauty Tubes",
+ "price": 14.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/45fea1eb913d55d6e1586ea66c1c82a0_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Get the look of salon lash extensions with the new Double Extend Beauty Tubes Mascara! This new lash extension effect mascara visibly lengthens your lashes up to an astonishing 80%.Step 1: Ultra nourishing base coat infused with Ceramide R and D-Panthenol protects and strengthens lashes creating the perfect base for tube application.Step 2: Ultra-lengthening tube top coat sets to form lash-extending beauty tubes that visibly lengthen lashes to amazing new heights. Beauty tubes will not run, clump, flake or smudge and will stay on all-day.Step 3: Beauty tubes remove easily with just warm water \u2013 no makeup remover or rubbing required!\n\nClump-free length.\nSmudge-proof.\nFlake-proof.\nLong wear hold.\nOphthalmologist and allergy tested.\nSuitable for sensitive eyes and contact lens wearers.\nRemoves easily with plenty of warm water.\nFragrance-free.\n\n\u00a0",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "18",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Telescopic Mascara",
+ "price": 13.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/a5add7c57e2a69456749c0e8263175f7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Want longer, more defined lashes in a single sweep?L'Oreal Paris introduces amazing new technology that lengthens lashes to the extreme and intensifies them at their base. It will change the way women think about lengthening mascara.It's the 1st spectacular stretch-effect mascara from L'Oreal Paris.The High-Precision Flexible Brush stretches the formula towards infinity for up to 60% longer lashes.",
+ "rating": "4.7",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "17",
+ "brand": "suncoat",
+ "name": "Suncoat Sugar-Based Mascara",
+ "price": 16.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/04362753156bc96b10e1a3f16d585ff0_ra,w158,h184_pa,w158,h184.png",
+ "description": "This sugar-based natural mascara is another unique product from Suncoat. Made with natural sugar-based biopolymer, kaolin clay, earth pigments and enriched with Vitamin E, it naturally builds lash volume and length! It is a superior alternative for your sensitive eyes and for our environment!Features: Free of PVP (polyvinyl pyrrolidone polymer), acrylic copolymer, VA (vinyl acetate) polymerFree of fragrance, parabens, alcohol and glycolKind to sensitive eyesNaturally builds lash volume and lengthBiodegradable ingredientsVeganNot tested on animals Although NOT waterproof, this natural mascara has GREAT wear-ability. It resists smudging, but washes off easily with regular skin cleanser and water.Ingredients: Aqua (water), kaolin clay, vegetable glycerin, hydrolyzed Zee mays (corn) starch (natural sugar-based biopolymer), lecithin, Citrus grandis (grapefruit) seed extract, tocopherol (vitamin E), citric acid, pigments.",
+ "rating": "3.4",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Vegan",
+ "Canadian"
+ ]
+ },
+ {
+ "id": "16",
+ "brand": "pacifica",
+ "name": "Pacifica Aquarian Gaze Water-Resistant Mascara",
+ "price": 21.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5e9ec049ea72f7ec853bcdb996201dd7_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "This Pacifica Aquarian Gaze Water-Resistant and long wearing is a deep blue super lush natural mineral mascara. Amazing lengthening brush (100% \nvegan) makes your lashes insanely long and gorgeous as it separates to \nbuild volume. It is nourishing formula is infused with coconut oil, kelp\n extract and vitamin B to hydrate each lash as it lengthens and \nstrengthens.Features:Coconut Oil- Studies have shown coconut oil to be an excellent hair strengthener and moisturizer that can reduce breakagePanthenol (Vitamin B)- Helps strengthen and nourish hairKelp Extract- Moisturize and condition lashesView IngredientsFormulated without:\n Animal ingredients (including carmine, beeswax and lanolin), animal \ntesting. FD&C colors, mineral oil, parabens, phthalates, petroleum, \npropylene glycol, SLS, gluten, peanut oil and other ingredients you \ndon\u2019t want on your skin.Ingredients: Water (Aqua), \nCopernicia cerifera (Carnauba) Wax (thickener), Euphorbia cerifera \n(Candelilla) Wax (thickener), Acrylates Crosspolymer, Butylene Glycol, \nStearic Acid, Glyceryl Stearate, Polyisobutene, Phenoxyethanol, \nHydroxyethylcellulose Sodium Hydroxide, Caprylyl Glycol, \nEthylhexylglycerin, Steareth-21, Cocos Nucifera (coconut) Oil, Panthenol\n (vitamin B), macrocystis pyrifera (kelp) extract, Sodium \nDehydroacetate, Disodium EDTA, Hexylene Glycol, Iron Oxides CI 77491, \n77492, CI 77499. ",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "15",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear 100% Natural Origin Mascara",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/78e3d20b744ec40691dd7357c9db6dd3_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear 100% Natural Origin Mascara's revolutionary 100% Natural Origin formula contains the purest \ningredients and provides 5x Lash Boosting for lash length, volume & \ndefinition naturally. 100% Recyclable Eco-Brush defines each lash with ultra-soft plastic bristles. 100% Free of Harsh Chemicals, Synthetic Preservatives, Parabens, Clumping, Smudging, Flaking, Fibers & Dyes.Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for added volume.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water*, Glycerin, \nIron Oxide, Microcrystalline Cellulose, Glyceryl Stearate, Water, \nBeeswax*, Jojoba Esters, Tapioca Starch*, Copernicia Cerifera \n(Carnauba) Wax*, Stearic Acid, Glyceryl Caprylate, Aloe Barbadensis Leaf\n Juice*, Cellulose Gum, Cucumis Sativus (Cucumber) Fruit Extract*, \nGlycine Soya (Soybean) Oil*, Hydrolyzed Oryza Sativa (Rice) Protein, \nLeuconostoc/Radish Root Ferment Filtrate, Magnesium Aluminum Silicate, \nOlea Europaea (Olive) Leaf Extract*. May Contain: Titanium Dioxide \n*Produced from Organic Farming.Hypoallergenic. Safe for Sensitive Eyes and Contact Lens Wearers.",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "14",
+ "brand": "maybelline",
+ "name": "Maybelline Volum' Express Colossal Mascara",
+ "price": 9.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/5d6e0d96f6dedbc3aadd88d9403cb26e_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Why You'll Love It\n\nCreates 9X the volume, instantly.\nPatented MegaBrush + Collagen Formula plump lashes one by one \nDramatic Volume with no clumps \nWashable \n",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "13",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Voluminous Volume Building Mascara",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/c9288fc106afdf3f7039a5128e0f621d_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "4X Fuller Lashes\n\n\nDramatic Volume Effect\n\n\nSeparates & Builds Every Lash\n\n\nPatented Volume Maximizing Brush\nL'Oreal presents Voluminous Volume Building Mascara. Uniquely formulated to resist clumping, soften lashes and build lashes to 4X their natural thickness.\n\n\nUnique maximizing formula quickly thickens and builds lashes in a single application for a full and dramatic lash look.\n\n\nPatented Volume Maximizing Brush thickens lashes evenly, smoothly leaving them soft with virtually no flakes, smudges or clumps.\n\n\nVoluminous with Panthenol and Ceramide-R protects and conditions lashes leaving them supple and soft to the touch, resisting clumping and flaking.\n\n\nOpththalmologist and allergy tested.\n\n\nSuitable for sensitive eyes and contact lens wearers.\n\n\nClump-resistant.\n\n\nFragrance-free.\n\n\nAll day wear.\n\n",
+ "rating": "2.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "12",
+ "brand": "maybelline",
+ "name": "Maybelline Illegal Length Fiber Extensions Mascara",
+ "price": 11.49,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/086bd6bba51f630f60511cdc24c68096_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Build 4mm of measurable extensions! Features: Fiber-fix brush has 6 different contact points with each lash for optimal fiber placementBreakthrough formula contains fibers up to 4mm in lengthSealing formula stretches lashes and seals fibers to lashesWashable, also available in waterproof formula\u00a0\nFor Best Results: Extend lashes upward with Fiber-Fix brush, from root to tip. \nOnly a few strokes necessary. For best results, do not let dry between \ncoats.\u00a0 Removes easily with soap and water or Maybelline\u00ae Expert Eyes\u00ae \n100% Oil-Free Eye Makeup Remover.\n",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "11",
+ "brand": "maybelline",
+ "name": "Maybelline Volum' Express The Rocket Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/0b04408a84154f14800e4c9477f8a924_ra,w158,h184_pa,w158,h184.png",
+ "description": "Explosive Volume in Rocket Time! 8X Bigger, Smoother.\n\nNow, the most explosive, beautiful lashes ever! Maybelline's patented supersonic \nbrush with micro bristles loads on big, sleek volume instantly.\n\nThe fast-glide formula keeps lashes smooth. Zero clumps!",
+ "rating": "",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "10",
+ "brand": "l'oreal",
+ "name": "L'Oreal Paris Voluminous Million Lashes Mascara",
+ "price": 13.29,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/7a372820b4a151ec62a6ce4261948421_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "For lashes that \nlook a million times multiplied and perfectly defined, there's only one \nmascara - Voluminous\u00ae Million Lashes\u2122. The built-in Clean Sweep \nWiping System wipes the brush free of clumps leaving the perfect amount \nof mascara for an ultra-volumized clean lash look. The Millionizing \nBrush evenly thickens lashes from root to tip. The result? Lashes look \nso multiplied, so clean, it's like seeing millions. Features: \nOphthalmologist-tested and allergy-testedSuitable for sensitive eyes an contact len wearersClump-free.Fragrance-free\n \u00a0",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "9",
+ "brand": "maybelline",
+ "name": "Maybelline Great Lash Lots of Lashes Mascara",
+ "price": 7.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/dfaf77464a8cb52a1a8f2a15e8abf920_ra,w158,h184_pa,w158,h184.png",
+ "description": "Introducing a Great Lash innovation - Great Lash Lots of Lashes!The favourite Maybelline mascara now gives the look of more lashes than ever, thanks to the exclusive Great Little Grabber Brush. In just one swipe, the Grabber Brush easily reaches all lashes - even \nin the corners - for a multiplied lash look without the clumps. The result? Great lashes with lots of impact and not a lot of work.For best results: sweep brush from root to \ntip of lashes. Continue building volume until the desired lash look is \nachieved. Do not let dry between coats. Removes easily with soap and \nwater or eye makeup remover. \n ",
+ "rating": "4.2",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "8",
+ "brand": "maybelline",
+ "name": "Maybelline Lash Stiletto Ultimate Length Mascara",
+ "price": 10.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/812b5ae27df9be983052063d52d7ab7a_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "The only mascara that does for lashes what stilettos do for legs.\n\n\u00a0\u00a0\u00a0 The Grip & Extend brush grasps each lash and coats from every angle\n\u00a0\u00a0\u00a0 Elastic formula stretches lashes for provocative length\n\u00a0\u00a0\u00a0 Pro-Vitamin B-5 formula conditions and smoothes for black-patent shine\n\u00a0\u00a0\u00a0 Contact lens safe and Ophthalmologist tested\n\u00a0\u00a0\u00a0 Waterproof \n\n\u00a0",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "7",
+ "brand": "maybelline",
+ "name": "Maybelline Volum'Express the Falsies Mascara",
+ "price": 9.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/af1f35f15ee64cc1003f1ccfc6451d71_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "False lash glam in a tube, instantly!The Falsies Mascara delivers a false lash look, giving you a full set of voluminous, bold, fanned-out lashes and the appearance of no gaps from any angle.The Pro-Keratin Fiber enriched formula is designed to deliver immediate results, distributing volume and visible intensity to your lashes. The spoon-shaped brush helps fan lashes out.The Falsies Mascara is designed to give the appearance of no gaps and spaces. In a wink, lashes you didn\u2019t even know you had look visibly thickened!",
+ "rating": "4.0",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "6",
+ "brand": "covergirl",
+ "name": "CoverGirl Lashblast Volume Blasting Mascara ",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/18790b1fce6ddd2c7c20e73ce964eadd_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Get a blast of lush, volumized lashes! LashBlast\u2019s patented \nvolume-boosting formula and patent-pending brush are designed to max-out\n each and every lash, leaving you with the ultimate big lash look.Features: Instant volume and fullnessSmudge and smear-proofHypoallergenic and suitable for contact lens wearers",
+ "rating": "4.8",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "5",
+ "brand": "pacifica",
+ "name": "Pacifica Stellar Gaze Length & Strength Mineral Mascara",
+ "price": 28.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/b4a5f31a499b42938980fb369d0213ab_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "You will fall in love with Pacifica's long lasting, nourishing, natural mineral\n mascara.\u00a0 This amazing formula is infused with coconut oil and vitamin B\n to hydrate each lash as it lengthens, strengthens and adds volume. \nApply for a natural look by day, or layer for more volume with the super\n plush 100% vegan brush that provides effortless coverage.100% vegan. Cruelty-free. Formulated without FD & C color, parabens, talc and mineral oil.\nRead our blog post for tips on how to Green & Clean your makeup bag.\u00a0 Ingredients: Aqua, glycerin (vegetable), glyceryl stearate se, jojoba \nesters, tapioca starch, stearic acid ( vegetable), copernicia cerfera \n(carnauba) wax, euphorbia cerifera (candelilla) wax, arabic/acacia gum, \nacrylates, crosspolymer, potassium cetyl phosphate, microcrystalline \ncellulse (plant), cocos nucifera (coconut) oil, panthenol (vitamin b), \ncellulose gum, gluconolactone, macrocystis pyifera (brown kelp) extract,\n hydrolyzed oryza sativa (rice) protein, sodium benzoate, iron oxides c1\n 77499.",
+ "rating": "4.2",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Vegan"
+ ]
+ },
+ {
+ "id": "4",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear FakeOut Mascara",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/2b3d5588b073bfae89c6308dcfe96436_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear FakeOut Mascara is the 1st EVER mascara with 100% natural origin lash extension fibers for the full-on fringe of false lashes without irritation.The innovative formula amplifies lash volume, length & curl. Plus the oversized brush creates a fabulously false lash effect instantly!Features: 100% of the Total Ingredients are from Natural Origin 70% of the Total Ingredients are from Organic FarmingDirections: Sweep mascara brush from lash base to tips. Apply multiple coats for added volume.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water*, Glycerin*, Glyceryl \nStearate SE, Beeswax*, Microcrystalline Cellulose, Copernicia Cerifera \n(Carnauba) Wax*, Tapioca Starch*, Hydrolyzed Corn Starch, Stearic Acid, \nJojoba Esters, Oryza Sativa (Rice) Powder*, Oryza Sativa (Rice) \nExtract*, Ceiba Pentandra Fiber Powder, Cellulose, Nylon-10/10, Aloe \nBarbadensis Leaf Extract*, Cucumis Sativus (Cucumber) Fruit Extract*, \nGlycine Soja (Soybean) Oil*, Olea Europaea (Olive) Leaf Extract*, \nGlycerin, Magnesium Aluminum Silicate, Water, Glyceryl Caprylate, \nLeuconostoc / Radish Root Ferment Filtrate May Contain: Iron Oxides, \nTitanium Dioxide* Ingredients from Organic FarmingHypoallergenic. Fragrance Free. Safe for Sensitive Eyes and Contact Lens Wearers. Ophthalmologist Approved.",
+ "rating": "3.9",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "3",
+ "brand": "physicians formula",
+ "name": "Physicians Formula Organic Wear Lash Boosting Mascara",
+ "price": 15.79,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/ca3136ce9bff5df45b34b25b3bbf99aa_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Physicians Formula Organic Wear Lash Boosting Mascara is the 1st Ever 100% Natural Lash Boosting formula enhances the appearance of \nlash length, thickness and volume for dramatic lashes instantly and \nlong-term.Additional Features:100% of the Total Ingredients are from Natural Origin. 44% of the Total Ingredients are from Organic Farming. 100% saw enhanced lashes INSTANLY!Delivers ingredients to the base of lashes for best results!93% saw thicker & longer looking lashes instantly! 92% saw \nextended & fuller looking lashes after 4 weeks! *Based on \nindividual perception of results of a panel of women wearing Organic \nWear Lash Boosting Mascara.Directions for Use: Sweep mascara brush from lash base to tips. Apply multiple coats for \nadded volume. Can easily be washed off with soap and water or removed \nwith Physicians Formula Eye Makeup Remover Pads or Lotions.Ingredients: Citrus Aurantium Dulcis (Orange) Fruit Water *, Glycerin, Iron Oxides, \nMicrocrystalline Cellulose, Glyceryl Stearate SE, Water, Lactobacillus \nBulgaricus Ferment Filtrate, Beeswax *, Jojoba Esters, Copernicia \nCerifera (Carnauba) Wax *, Tapioca Starch *, Stearic Acid, Glyceryl \nCaprylate, Aloe Barbadensis Leaf Juice *, Cellulose Gum, Cucumis Sativus\n (Cucumber) Fruit Extract *, Glycine Soja (Soybean) Oil *, Hydrolyzed \nOryza Sativa (Rice) Protein, Magnesium Aluminum Silicate, Olea Europaea \n(Olive) Leaf Extract *, Saccharomyces/Copper Ferment, Saccharomyces/Iron\n Ferment, Saccharomyces/Magnesium Ferment, Saccharomyces/Silicon \nFerment, Saccharomyces/Zinc Ferment, Leuconostoc/Aloe Barbadensis \nLeaf/Sorbus Aucuparia Fruit Ferment Filtrate, Leuconostoc/Radish Root \nFerment Filtrate, Populus Tremuloides Bark Extract, Citric Acid May \nContain: Titanium DioxideHypoallergenic. Fragrance free. Ophthalmologist approved. Gluten Free.",
+ "rating": "3.7",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free"
+ ]
+ },
+ {
+ "id": "2",
+ "brand": "",
+ "name": "L' Oreal Paris Voluminous Mascara",
+ "price": 9.99,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/4d671a9af4d2ce8d310ae263569018fb_ra,w158,h184_pa,w158,h184.jpeg",
+ "description": "Voluminous - Volume Building Waterproof Mascara\u2019s unique waterproof formula builds lashes to four times their natural thickness. Patented Volume-Maximizing Brush\u2122 thickens lashes evenly and smoothly, leaving them soft with virtually no flakes, smudges, or clumps.Uniquely formulated to resist clumping, soften lashes, and build lashes to four times their natural thickness, with waterproof wear. Patented Volume Maximizing Brush\u2122 thickens lashes evenly and smoothly, leaving them soft with virtually no flakes, smudges, or clumps.Ophthalmologist-tested and allergy-tested.Suitable for sensitive eyes and contact lens wearers.Clump-resistant.Fragrance-free.All-day wear.Ingredients:ISODODECANE \u2022 AQUA / WATER / EAU \u2022 CERA ALBA / BEESWAX / CIRE D'ABEILLE \u2022 DISTEARDIMONIUM HECTORITE \u2022 CARNAUBA / CARNAUBA WAX / CIRE DE CARNAUBA \u2022 PARAFFIN \u2022 ALCOHOL DENAT \u2022 ALLYL STEARATE/VA COPOLYMER \u2022 VA/VINYL BUTYL BENZOATE/CROTONATES COPOLYMER \u2022 PROP",
+ "rating": "4.5",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": []
+ },
+ {
+ "id": "1",
+ "brand": "pure anada",
+ "name": "Pure Anada Natural Mascara",
+ "price": 14.0,
+ "price_sign": "",
+ "currency": "",
+ "image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/afefede002b8d94f6e53ea07dd4070f9_ra,w158,h184_pa,w158,h184.jpg",
+ "description": "Finally, a natural mascara you can feel good about putting on your lashes!\nIt is naturally paraben-free, gluten-free, and mercury-free. \nYou will be amazed at how well this mascara builds volume and length to your lashes.\nThis is the natural mascara you\u2019ve been waiting for!Ingredients: Aqua (Water), Oryza Sativa Wax (Rice Bran Wax), Olea Europea fruit oil \n(Olive Oil), Vegetable Source Cetyl Alcohol (Coconut), Coernica Cerifera\n (Carnauba Wax), Euphorbia Cerifera (Candelilla Wax), Vegetable \nGlycerin, Stearic Acid, Acacia Gum, Black Iron oxide (CI 77499),\u00a0 \nAminomethyl Popandiol (Ph Adjuster), Phenoxyethanol (Preservative).",
+ "rating": "4.6",
+ "category": "",
+ "product_type": "mascara",
+ "tag_list": [
+ "Natural",
+ "Gluten Free",
+ "Canadian"
+ ]
+ }
+]
\ No newline at end of file
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/infra/create_index.py b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/infra/create_index.py
new file mode 100644
index 00000000..a6f647db
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/infra/create_index.py
@@ -0,0 +1,81 @@
+import yaml
+from elasticsearch import Elasticsearch
+
+index_name = 'products-catalog'
+mapping = {
+ "settings": {
+ "index": {
+ "number_of_replicas": 0,
+ "number_of_shards": 1,
+ }
+ },
+ "mappings": {
+ "properties": {
+ "id": {
+ "type": "keyword"
+ },
+ "brand": {
+ "type": "text",
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ },
+ "name": {
+ "type": "text"
+ },
+ "price": {
+ "type": "float"
+ },
+ "price_sign": {
+ "type": "keyword"
+ },
+ "currency": {
+ "type": "keyword"
+ },
+ "image_link": {
+ "type": "keyword"
+ },
+ "description": {
+ "type": "text"
+ },
+ "description_embeddings": {
+ "type": "dense_vector",
+ "dims": 384
+ },
+ "rating": {
+ "type": "keyword"
+ },
+ "category": {
+ "type": "keyword"
+ },
+ "product_type": {
+ "type": "keyword"
+ },
+ "tag_list": {
+ "type": "keyword"
+ }
+ }
+ }
+}
+
+
+def get_client_es():
+ with open('../config.yml', 'r') as file:
+ config = yaml.safe_load(file)
+ return Elasticsearch(
+ cloud_id=config['cloud_id'],
+ api_key=config['api_key']
+ )
+
+
+def create_index(index_name, mapping):
+ if not get_client_es().indices.exists(index=index_name):
+ get_client_es().indices.create(index=index_name, body=mapping)
+ print(f"Index '{index_name}' created successfully.")
+ else:
+ print(f"Index '{index_name}' already exists.")
+
+
+create_index(index_name, mapping)
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.ipynb b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.ipynb
new file mode 100644
index 00000000..9d6fbb1c
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.ipynb
@@ -0,0 +1,268 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Ingestion Data"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## You'll need to install the following libraries if they are not already installed:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "pip install elasticsearch sentence-transformers pyyaml"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Library/Python/3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
+ " from .autonotebook import tqdm as notebook_tqdm\n"
+ ]
+ }
+ ],
+ "source": [
+ "import json\n",
+ "import yaml\n",
+ "from elasticsearch import Elasticsearch, helpers\n",
+ "from sentence_transformers import SentenceTransformer"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Step 1: Elasticsearch client setup using cloud configuration\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def get_client_es():\n",
+ " \"\"\"\n",
+ " Initializes Elasticsearch client using cloud_id and api_key from config.yml\n",
+ " \"\"\"\n",
+ " with open('../config.yml', 'r') as file:\n",
+ " config = yaml.safe_load(file)\n",
+ " return Elasticsearch(\n",
+ " cloud_id=config['cloud_id'],\n",
+ " api_key=config['api_key']\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Step 2: Text Vectorization using SentenceTransformers\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def get_text_vector(sentences):\n",
+ " \"\"\"\n",
+ " Generates sentence embeddings using pre-trained model 'all-MiniLM-L6-v2'.\n",
+ " \"\"\"\n",
+ " model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2')\n",
+ " embeddings = model.encode(sentences)\n",
+ " return embeddings"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Step 3: Read JSON file containing the dataset\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def read_json_file(file_path):\n",
+ " \"\"\"\n",
+ " Reads and loads the dataset from a JSON file.\n",
+ " \"\"\"\n",
+ " with open(file_path, 'r') as file:\n",
+ " data = json.load(file)\n",
+ " return data"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Step 4: Chunk data for batch processing\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def chunk_data(data, batch_size):\n",
+ " \"\"\"\n",
+ " Yields chunks of data in batch sizes for bulk indexing in Elasticsearch.\n",
+ " \"\"\"\n",
+ " for i in range(0, len(data), batch_size):\n",
+ " yield data[i:i + batch_size]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Step 5: Generate bulk actions for Elasticsearch indexing\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def generate_bulk_actions(index_name, data_batch):\n",
+ " \"\"\"\n",
+ " Generates bulk actions for Elasticsearch from data batches.\n",
+ " Adds 'description_embeddings' by encoding the 'description' field.\n",
+ " \"\"\"\n",
+ " for item in data_batch:\n",
+ " document_id = item['id']\n",
+ " item['description_embeddings'] = get_text_vector(item['description'])\n",
+ " yield {\n",
+ " \"_index\": index_name,\n",
+ " \"_id\": document_id,\n",
+ " \"_source\": item\n",
+ " }"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Step 6: Indexing data in batches to Elasticsearch\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def index_data_in_batches(file_path, index_name, batch_size=100):\n",
+ " \"\"\"\n",
+ " Indexes data from the JSON file in batches using Elasticsearch helpers.bulk.\n",
+ " \"\"\"\n",
+ " data = read_json_file(file_path)\n",
+ "\n",
+ " for batch in chunk_data(data, batch_size):\n",
+ " actions = generate_bulk_actions(index_name, batch)\n",
+ " success, failed = helpers.bulk(get_client_es(), actions)\n",
+ " print(f\"Batch indexed: {success} successful, {failed} failed\")\n",
+ "\n",
+ "# main execution block\n",
+ "# if __name__ == '__main__':\n",
+ "# index_data_in_batches(\"../files/dataset/products.json\", \"products-catalog\", batch_size=100)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Batch indexed: 100 successful, [] failed\n",
+ "Batch indexed: 100 successful, [] failed\n"
+ ]
+ },
+ {
+ "ename": "KeyboardInterrupt",
+ "evalue": "",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)",
+ "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mindex_data_in_batches\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m../files/dataset/products.json\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mproducts-catalog-2\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbatch_size\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m100\u001b[39;49m\u001b[43m)\u001b[49m\n",
+ "Cell \u001b[0;32mIn[6], line 9\u001b[0m, in \u001b[0;36mindex_data_in_batches\u001b[0;34m(file_path, index_name, batch_size)\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m batch \u001b[38;5;129;01min\u001b[39;00m chunk_data(data, batch_size):\n\u001b[1;32m 8\u001b[0m actions \u001b[38;5;241m=\u001b[39m generate_bulk_actions(index_name, batch)\n\u001b[0;32m----> 9\u001b[0m success, failed \u001b[38;5;241m=\u001b[39m \u001b[43mhelpers\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbulk\u001b[49m\u001b[43m(\u001b[49m\u001b[43mget_client_es\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mactions\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mBatch indexed: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00msuccess\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m successful, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfailed\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m failed\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/elasticsearch/helpers/actions.py:531\u001b[0m, in \u001b[0;36mbulk\u001b[0;34m(client, actions, stats_only, ignore_status, *args, **kwargs)\u001b[0m\n\u001b[1;32m 529\u001b[0m \u001b[38;5;66;03m# make streaming_bulk yield successful results so we can count them\u001b[39;00m\n\u001b[1;32m 530\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124myield_ok\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[0;32m--> 531\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m ok, item \u001b[38;5;129;01min\u001b[39;00m streaming_bulk(\n\u001b[1;32m 532\u001b[0m client, actions, ignore_status\u001b[38;5;241m=\u001b[39mignore_status, span_name\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhelpers.bulk\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs \u001b[38;5;66;03m# type: ignore[misc]\u001b[39;00m\n\u001b[1;32m 533\u001b[0m ):\n\u001b[1;32m 534\u001b[0m \u001b[38;5;66;03m# go through request-response pairs and detect failures\u001b[39;00m\n\u001b[1;32m 535\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m ok:\n\u001b[1;32m 536\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m stats_only:\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/elasticsearch/helpers/actions.py:427\u001b[0m, in \u001b[0;36mstreaming_bulk\u001b[0;34m(client, actions, chunk_size, max_chunk_bytes, raise_on_error, expand_action_callback, raise_on_exception, max_retries, initial_backoff, max_backoff, yield_ok, ignore_status, span_name, *args, **kwargs)\u001b[0m\n\u001b[1;32m 420\u001b[0m bulk_data: List[\n\u001b[1;32m 421\u001b[0m Union[\n\u001b[1;32m 422\u001b[0m Tuple[_TYPE_BULK_ACTION_HEADER],\n\u001b[1;32m 423\u001b[0m Tuple[_TYPE_BULK_ACTION_HEADER, _TYPE_BULK_ACTION_BODY],\n\u001b[1;32m 424\u001b[0m ]\n\u001b[1;32m 425\u001b[0m ]\n\u001b[1;32m 426\u001b[0m bulk_actions: List[\u001b[38;5;28mbytes\u001b[39m]\n\u001b[0;32m--> 427\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m bulk_data, bulk_actions \u001b[38;5;129;01min\u001b[39;00m _chunk_actions(\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28mmap\u001b[39m(expand_action_callback, actions),\n\u001b[1;32m 429\u001b[0m chunk_size,\n\u001b[1;32m 430\u001b[0m max_chunk_bytes,\n\u001b[1;32m 431\u001b[0m serializer,\n\u001b[1;32m 432\u001b[0m ):\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m attempt \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(max_retries \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m):\n\u001b[1;32m 434\u001b[0m to_retry: List[\u001b[38;5;28mbytes\u001b[39m] \u001b[38;5;241m=\u001b[39m []\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/elasticsearch/helpers/actions.py:234\u001b[0m, in \u001b[0;36m_chunk_actions\u001b[0;34m(actions, chunk_size, max_chunk_bytes, serializer)\u001b[0m\n\u001b[1;32m 227\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 228\u001b[0m \u001b[38;5;124;03mSplit actions into chunks by number or size, serialize them into strings in\u001b[39;00m\n\u001b[1;32m 229\u001b[0m \u001b[38;5;124;03mthe process.\u001b[39;00m\n\u001b[1;32m 230\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 231\u001b[0m chunker \u001b[38;5;241m=\u001b[39m _ActionChunker(\n\u001b[1;32m 232\u001b[0m chunk_size\u001b[38;5;241m=\u001b[39mchunk_size, max_chunk_bytes\u001b[38;5;241m=\u001b[39mmax_chunk_bytes, serializer\u001b[38;5;241m=\u001b[39mserializer\n\u001b[1;32m 233\u001b[0m )\n\u001b[0;32m--> 234\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m action, data \u001b[38;5;129;01min\u001b[39;00m actions:\n\u001b[1;32m 235\u001b[0m ret \u001b[38;5;241m=\u001b[39m chunker\u001b[38;5;241m.\u001b[39mfeed(action, data)\n\u001b[1;32m 236\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ret:\n",
+ "Cell \u001b[0;32mIn[5], line 8\u001b[0m, in \u001b[0;36mgenerate_bulk_actions\u001b[0;34m(index_name, data_batch)\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m item \u001b[38;5;129;01min\u001b[39;00m data_batch:\n\u001b[1;32m 7\u001b[0m document_id \u001b[38;5;241m=\u001b[39m item[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mid\u001b[39m\u001b[38;5;124m'\u001b[39m]\n\u001b[0;32m----> 8\u001b[0m item[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mdescription_embeddings\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[43mget_text_vector\u001b[49m\u001b[43m(\u001b[49m\u001b[43mitem\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mdescription\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m {\n\u001b[1;32m 10\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_index\u001b[39m\u001b[38;5;124m\"\u001b[39m: index_name,\n\u001b[1;32m 11\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_id\u001b[39m\u001b[38;5;124m\"\u001b[39m: document_id,\n\u001b[1;32m 12\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_source\u001b[39m\u001b[38;5;124m\"\u001b[39m: item\n\u001b[1;32m 13\u001b[0m }\n",
+ "Cell \u001b[0;32mIn[2], line 5\u001b[0m, in \u001b[0;36mget_text_vector\u001b[0;34m(sentences)\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mget_text_vector\u001b[39m(sentences):\n\u001b[1;32m 2\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;124;03m Generates sentence embeddings using pre-trained model 'all-MiniLM-L6-v2'.\u001b[39;00m\n\u001b[1;32m 4\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m----> 5\u001b[0m model \u001b[38;5;241m=\u001b[39m \u001b[43mSentenceTransformer\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43msentence-transformers/all-MiniLM-L6-v2\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 6\u001b[0m embeddings \u001b[38;5;241m=\u001b[39m model\u001b[38;5;241m.\u001b[39mencode(sentences)\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m embeddings\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/sentence_transformers/SentenceTransformer.py:95\u001b[0m, in \u001b[0;36mSentenceTransformer.__init__\u001b[0;34m(self, model_name_or_path, modules, device, cache_folder, use_auth_token)\u001b[0m\n\u001b[1;32m 87\u001b[0m snapshot_download(model_name_or_path,\n\u001b[1;32m 88\u001b[0m cache_dir\u001b[38;5;241m=\u001b[39mcache_folder,\n\u001b[1;32m 89\u001b[0m library_name\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124msentence-transformers\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 90\u001b[0m library_version\u001b[38;5;241m=\u001b[39m__version__,\n\u001b[1;32m 91\u001b[0m ignore_files\u001b[38;5;241m=\u001b[39m[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mflax_model.msgpack\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mrust_model.ot\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtf_model.h5\u001b[39m\u001b[38;5;124m'\u001b[39m],\n\u001b[1;32m 92\u001b[0m use_auth_token\u001b[38;5;241m=\u001b[39muse_auth_token)\n\u001b[1;32m 94\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mexists(os\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mjoin(model_path, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmodules.json\u001b[39m\u001b[38;5;124m'\u001b[39m)): \u001b[38;5;66;03m#Load as SentenceTransformer model\u001b[39;00m\n\u001b[0;32m---> 95\u001b[0m modules \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_load_sbert_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 96\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m: \u001b[38;5;66;03m#Load with AutoModel\u001b[39;00m\n\u001b[1;32m 97\u001b[0m modules \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_load_auto_model(model_path)\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/sentence_transformers/SentenceTransformer.py:840\u001b[0m, in \u001b[0;36mSentenceTransformer._load_sbert_model\u001b[0;34m(self, model_path)\u001b[0m\n\u001b[1;32m 838\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m module_config \u001b[38;5;129;01min\u001b[39;00m modules_config:\n\u001b[1;32m 839\u001b[0m module_class \u001b[38;5;241m=\u001b[39m import_from_string(module_config[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtype\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[0;32m--> 840\u001b[0m module \u001b[38;5;241m=\u001b[39m \u001b[43mmodule_class\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mload\u001b[49m\u001b[43m(\u001b[49m\u001b[43mos\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mjoin\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmodule_config\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mpath\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 841\u001b[0m modules[module_config[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m'\u001b[39m]] \u001b[38;5;241m=\u001b[39m module\n\u001b[1;32m 843\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m modules\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/sentence_transformers/models/Transformer.py:137\u001b[0m, in \u001b[0;36mTransformer.load\u001b[0;34m(input_path)\u001b[0m\n\u001b[1;32m 135\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mopen\u001b[39m(sbert_config_path) \u001b[38;5;28;01mas\u001b[39;00m fIn:\n\u001b[1;32m 136\u001b[0m config \u001b[38;5;241m=\u001b[39m json\u001b[38;5;241m.\u001b[39mload(fIn)\n\u001b[0;32m--> 137\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mTransformer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_name_or_path\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minput_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mconfig\u001b[49m\u001b[43m)\u001b[49m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/sentence_transformers/models/Transformer.py:29\u001b[0m, in \u001b[0;36mTransformer.__init__\u001b[0;34m(self, model_name_or_path, max_seq_length, model_args, cache_dir, tokenizer_args, do_lower_case, tokenizer_name_or_path)\u001b[0m\n\u001b[1;32m 26\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdo_lower_case \u001b[38;5;241m=\u001b[39m do_lower_case\n\u001b[1;32m 28\u001b[0m config \u001b[38;5;241m=\u001b[39m AutoConfig\u001b[38;5;241m.\u001b[39mfrom_pretrained(model_name_or_path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mmodel_args, cache_dir\u001b[38;5;241m=\u001b[39mcache_dir)\n\u001b[0;32m---> 29\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_load_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_name_or_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcache_dir\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 31\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtokenizer \u001b[38;5;241m=\u001b[39m AutoTokenizer\u001b[38;5;241m.\u001b[39mfrom_pretrained(tokenizer_name_or_path \u001b[38;5;28;01mif\u001b[39;00m tokenizer_name_or_path \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m model_name_or_path, cache_dir\u001b[38;5;241m=\u001b[39mcache_dir, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mtokenizer_args)\n\u001b[1;32m 33\u001b[0m \u001b[38;5;66;03m#No max_seq_length set. Try to infer from model\u001b[39;00m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/sentence_transformers/models/Transformer.py:49\u001b[0m, in \u001b[0;36mTransformer._load_model\u001b[0;34m(self, model_name_or_path, config, cache_dir)\u001b[0m\n\u001b[1;32m 47\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_load_t5_model(model_name_or_path, config, cache_dir)\n\u001b[1;32m 48\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m---> 49\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mauto_model \u001b[38;5;241m=\u001b[39m \u001b[43mAutoModel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfrom_pretrained\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_name_or_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconfig\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconfig\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcache_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_dir\u001b[49m\u001b[43m)\u001b[49m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/auto/auto_factory.py:463\u001b[0m, in \u001b[0;36m_BaseAutoModelClass.from_pretrained\u001b[0;34m(cls, pretrained_model_name_or_path, *model_args, **kwargs)\u001b[0m\n\u001b[1;32m 461\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28mtype\u001b[39m(config) \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_model_mapping\u001b[38;5;241m.\u001b[39mkeys():\n\u001b[1;32m 462\u001b[0m model_class \u001b[38;5;241m=\u001b[39m _get_model_class(config, \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_model_mapping)\n\u001b[0;32m--> 463\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mmodel_class\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfrom_pretrained\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 464\u001b[0m \u001b[43m \u001b[49m\u001b[43mpretrained_model_name_or_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mmodel_args\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconfig\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconfig\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mhub_kwargs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\n\u001b[1;32m 465\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 466\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 467\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnrecognized configuration class \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mconfig\u001b[38;5;241m.\u001b[39m\u001b[38;5;18m__class__\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m for this kind of AutoModel: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;18m__name__\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 468\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mModel type should be one of \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m, \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(c\u001b[38;5;241m.\u001b[39m\u001b[38;5;18m__name__\u001b[39m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mfor\u001b[39;00m\u001b[38;5;250m \u001b[39mc\u001b[38;5;250m \u001b[39m\u001b[38;5;129;01min\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_model_mapping\u001b[38;5;241m.\u001b[39mkeys())\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 469\u001b[0m )\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/modeling_utils.py:2228\u001b[0m, in \u001b[0;36mPreTrainedModel.from_pretrained\u001b[0;34m(cls, pretrained_model_name_or_path, *model_args, **kwargs)\u001b[0m\n\u001b[1;32m 2225\u001b[0m init_contexts\u001b[38;5;241m.\u001b[39mappend(init_empty_weights())\n\u001b[1;32m 2227\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m ContextManagers(init_contexts):\n\u001b[0;32m-> 2228\u001b[0m model \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mcls\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mmodel_args\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mmodel_kwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2230\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m load_in_8bit:\n\u001b[1;32m 2231\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mutils\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbitsandbytes\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m get_keys_to_not_convert, replace_8bit_linear\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/bert/modeling_bert.py:884\u001b[0m, in \u001b[0;36mBertModel.__init__\u001b[0;34m(self, config, add_pooling_layer)\u001b[0m\n\u001b[1;32m 881\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig \u001b[38;5;241m=\u001b[39m config\n\u001b[1;32m 883\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39membeddings \u001b[38;5;241m=\u001b[39m BertEmbeddings(config)\n\u001b[0;32m--> 884\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mencoder \u001b[38;5;241m=\u001b[39m \u001b[43mBertEncoder\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 886\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpooler \u001b[38;5;241m=\u001b[39m BertPooler(config) \u001b[38;5;28;01mif\u001b[39;00m add_pooling_layer \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 888\u001b[0m \u001b[38;5;66;03m# Initialize weights and apply final processing\u001b[39;00m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/bert/modeling_bert.py:552\u001b[0m, in \u001b[0;36mBertEncoder.__init__\u001b[0;34m(self, config)\u001b[0m\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28msuper\u001b[39m()\u001b[38;5;241m.\u001b[39m\u001b[38;5;21m__init__\u001b[39m()\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig \u001b[38;5;241m=\u001b[39m config\n\u001b[0;32m--> 552\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlayer \u001b[38;5;241m=\u001b[39m nn\u001b[38;5;241m.\u001b[39mModuleList([BertLayer(config) \u001b[38;5;28;01mfor\u001b[39;00m _ \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(config\u001b[38;5;241m.\u001b[39mnum_hidden_layers)])\n\u001b[1;32m 553\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgradient_checkpointing \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mFalse\u001b[39;00m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/bert/modeling_bert.py:552\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28msuper\u001b[39m()\u001b[38;5;241m.\u001b[39m\u001b[38;5;21m__init__\u001b[39m()\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig \u001b[38;5;241m=\u001b[39m config\n\u001b[0;32m--> 552\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlayer \u001b[38;5;241m=\u001b[39m nn\u001b[38;5;241m.\u001b[39mModuleList([\u001b[43mBertLayer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m _ \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(config\u001b[38;5;241m.\u001b[39mnum_hidden_layers)])\n\u001b[1;32m 553\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgradient_checkpointing \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mFalse\u001b[39;00m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/bert/modeling_bert.py:474\u001b[0m, in \u001b[0;36mBertLayer.__init__\u001b[0;34m(self, config)\u001b[0m\n\u001b[1;32m 472\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m should be used as a decoder model if cross attention is added\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 473\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcrossattention \u001b[38;5;241m=\u001b[39m BertAttention(config, position_embedding_type\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mabsolute\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 474\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mintermediate \u001b[38;5;241m=\u001b[39m \u001b[43mBertIntermediate\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconfig\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 475\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39moutput \u001b[38;5;241m=\u001b[39m BertOutput(config)\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/transformers/models/bert/modeling_bert.py:436\u001b[0m, in \u001b[0;36mBertIntermediate.__init__\u001b[0;34m(self, config)\u001b[0m\n\u001b[1;32m 434\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m__init__\u001b[39m(\u001b[38;5;28mself\u001b[39m, config):\n\u001b[1;32m 435\u001b[0m \u001b[38;5;28msuper\u001b[39m()\u001b[38;5;241m.\u001b[39m\u001b[38;5;21m__init__\u001b[39m()\n\u001b[0;32m--> 436\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdense \u001b[38;5;241m=\u001b[39m \u001b[43mnn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mLinear\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconfig\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mhidden_size\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconfig\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mintermediate_size\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 437\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(config\u001b[38;5;241m.\u001b[39mhidden_act, \u001b[38;5;28mstr\u001b[39m):\n\u001b[1;32m 438\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mintermediate_act_fn \u001b[38;5;241m=\u001b[39m ACT2FN[config\u001b[38;5;241m.\u001b[39mhidden_act]\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/torch/nn/modules/linear.py:104\u001b[0m, in \u001b[0;36mLinear.__init__\u001b[0;34m(self, in_features, out_features, bias, device, dtype)\u001b[0m\n\u001b[1;32m 102\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 103\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mregister_parameter(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbias\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m)\n\u001b[0;32m--> 104\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mreset_parameters\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/torch/nn/modules/linear.py:110\u001b[0m, in \u001b[0;36mLinear.reset_parameters\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 106\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mreset_parameters\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 107\u001b[0m \u001b[38;5;66;03m# Setting a=sqrt(5) in kaiming_uniform is the same as initializing with\u001b[39;00m\n\u001b[1;32m 108\u001b[0m \u001b[38;5;66;03m# uniform(-1/sqrt(in_features), 1/sqrt(in_features)). For details, see\u001b[39;00m\n\u001b[1;32m 109\u001b[0m \u001b[38;5;66;03m# https://github.com/pytorch/pytorch/issues/57109\u001b[39;00m\n\u001b[0;32m--> 110\u001b[0m \u001b[43minit\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mkaiming_uniform_\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mweight\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43ma\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmath\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msqrt\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m5\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 111\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbias \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 112\u001b[0m fan_in, _ \u001b[38;5;241m=\u001b[39m init\u001b[38;5;241m.\u001b[39m_calculate_fan_in_and_fan_out(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mweight)\n",
+ "File \u001b[0;32m/Library/Python/3.9/site-packages/torch/nn/init.py:460\u001b[0m, in \u001b[0;36mkaiming_uniform_\u001b[0;34m(tensor, a, mode, nonlinearity, generator)\u001b[0m\n\u001b[1;32m 458\u001b[0m bound \u001b[38;5;241m=\u001b[39m math\u001b[38;5;241m.\u001b[39msqrt(\u001b[38;5;241m3.0\u001b[39m) \u001b[38;5;241m*\u001b[39m std \u001b[38;5;66;03m# Calculate uniform bounds from standard deviation\u001b[39;00m\n\u001b[1;32m 459\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m torch\u001b[38;5;241m.\u001b[39mno_grad():\n\u001b[0;32m--> 460\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mtensor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43muniform_\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m-\u001b[39;49m\u001b[43mbound\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbound\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgenerator\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgenerator\u001b[49m\u001b[43m)\u001b[49m\n",
+ "\u001b[0;31mKeyboardInterrupt\u001b[0m: "
+ ]
+ }
+ ],
+ "source": [
+ "index_data_in_batches(\"../files/dataset/products.json\", \"products-catalog-2\", batch_size=100)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.py b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.py
new file mode 100644
index 00000000..ed755fb0
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/ingestion/ingestion.py
@@ -0,0 +1,55 @@
+import json
+
+import yaml
+from elasticsearch import Elasticsearch, helpers
+from sentence_transformers import SentenceTransformer
+
+
+def get_client_es():
+ with open('../config.yml', 'r') as file:
+ config = yaml.safe_load(file)
+ return Elasticsearch(
+ cloud_id=config['cloud_id'],
+ api_key=config['api_key']
+ )
+
+
+def get_text_vector(sentences):
+ model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2')
+ embeddings = model.encode(sentences)
+ return embeddings
+
+
+def read_json_file(file_path):
+ with open(file_path, 'r') as file:
+ data = json.load(file)
+ return data
+
+
+def chunk_data(data, batch_size):
+ for i in range(0, len(data), batch_size):
+ yield data[i:i + batch_size]
+
+
+def generate_bulk_actions(index_name, data_batch):
+ for item in data_batch:
+ document_id = item['id']
+ item['description_embeddings'] = get_text_vector(item['description'])
+ yield {
+ "_index": index_name,
+ "_id": document_id,
+ "_source": item
+ }
+
+
+def index_data_in_batches(file_path, index_name, batch_size=100):
+ data = read_json_file(file_path)
+
+ for batch in chunk_data(data, batch_size):
+ actions = generate_bulk_actions(index_name, batch)
+ success, failed = helpers.bulk(get_client_es(), actions)
+ print(f"Batch indexed: {success} successful, {failed} failed")
+
+
+if __name__ == '__main__':
+ index_data_in_batches("../files/dataset/products.json", "products-catalog", batch_size=100)
diff --git a/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/requirements.txt b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/requirements.txt
new file mode 100644
index 00000000..974ea3c1
--- /dev/null
+++ b/supporting-blog-content/hybrid-search-for-an-e-commerce-product-catalogue/product-store-search/requirements.txt
@@ -0,0 +1,8 @@
+elasticsearch==8.15.1
+requests~=2.26.0
+sentence-transformers~=2.2.2
+Pillow~=9.2.0
+transformers~=4.23.1
+Flask==2.2.3
+Werkzeug==2.2.2
+Flask-CORS==3.0.10
\ No newline at end of file