================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2019 Ahmad Hussnain
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# Ludus Free Premium E-commerce Template
*I want to thank all of you who give stars and fork the repo. I love you all and I have no words in my heart.*
I've developed another open-source eCommerce template that may work for you. [Demo link](https://github.com/ahmadHuss/groover-free-premium-ecommerce-template)
## Real use case:
This template has also been used in a famous Codecanyon script named DOKANS [Demo link](https://bit.ly/3rTQIqp) which has ~300+ sales.
[Live Preview](https://d2r00w08fz6ft0.cloudfront.net/ludus-demo/index.html)

**40+ Pages still not pressed the star & follow button.**
## Contents
- [Getting Started](#getting-started)
- [Downloaded Folders](#downloaded-folders)
- [HTML Folder](#html-folder)
- [Change Features](#change-features)
- [Sources and Credits](#sources-and-credits)
- [Changelog Updates History](#changelog-updates-history)
- [Version](#version)
## Getting Started
Ludus is complete multipurpose polish e-commerce template built with best practices. It will be a perfect solution for your current or future shop, customizable into any store contains responsiveness & great UI. Well tested on compatible browsers.
The template contains **40+ HTML files**, **3 Homepages**, **3 Header Styles**, **12 Dashboard Pages**,
**3 Product Pages**, **7 Shop Pages**,**5 Blog Pages**, **Box mode** and generated **10 Color variations** but could
create unlimited colors.
### Template Features
- Clean CSS structure **(Most of the styles have specificity level 1)**.
- Clean markup **(Markup correctly formatted with comments for setup things)**.
- Fully responsive **(For your desktop and mobile users)**.
- Cross Browser compatibility **(Work on most of the famous browsers)**.
- Fresh Design **(Modern approaches used by many web apps)**.
- User convenient **(Easy to use for any professional and non-professional)**.
- W3C Validated **(All files are passed from W3C validation service)**.
- Well Documented **(Files are commented for users to understand)**.
### Extra Features
- Intrinsic placeholder loading **(Initially set image container height)**.
- Vertical Mega Menu.
- 10 Color schemes generated.
- Box version included.
- Sass compatible.
## Downloaded Folders
When you unpack downloaded archive you'll get folder containing 1 folder.
Here they are, sorted alphabetically:
- **HTML** - HTML version of template
## HTML Version

Inside the **css** folder, we have all the stylesheets and vendor dependencies which our layout needs. You can use the color scheme according to your likeness.
- css/app.css **(Orange-Red color scheme)**
- css/app.color2.css **(Carmine-Red color scheme)**
- css/app.color3.css **(Blue (RYB) color scheme)**
- css/app.color4.css **(Dark-Spring-Green color scheme)**
- css/app.color5.css **(Electric-Purple color scheme)**
- css/app.color6.css **(Old-Burgundy color scheme)**
- css/app.color7.css **(Blue-Sapphire color scheme)**
- css/app.color8.css **(Yale-Blue color scheme)**
- css/app.color9.css **(Eerie-Black color scheme)**
- css/app.color10.css **(Candy-Apple-Red color scheme)**
Inside the **scss** folder, we have **6** folders and these folders have scss files.

**src/scss/abstracts**
The **abstracts** folder gathers all Sass tools and helpers used across the project. Every global variable, function, and mixin should be put in here. The rule of thumb for this folder is that it should not output a single line of CSS when compiled on its own. These are nothing but Sass helpers. Inside this folder it has another folder named **mixins-module**, the file on this folder has a mixin which will generate space utility classes.
**src/scss/utility.scss**
This file is invoking a mixin from **mixins-module** which will generate space utility classes, these utility classes are also called **low-level utility classes** that make it easy to build complex user interfaces.
**src/scss/base**
The **base** folder holds what we might call the boilerplate code for the project. In there, you might find some typographic rules, defining some standard styles for commonly used HTML elements.
**src/scss/components**
**Components** are reusable styles on the layout. It contains all kind of specific modules like a button, a select-box and anything along those lines. There are usually a lot of folders since the whole site/application should be mostly composed of tiny modules. `_all.scss` is just importing file which contains all code base of the folder. In Bottom, you will see all components file and their usage on different places of the layout.
**src/scss/components/breadcrumb/_breadcrumb.scss**

**src/scss/components/button/_button.scss**

**src/scss/components/checkbox-radio/_checkbox-radio.scss**

**src/scss/components/countdown/_countdown.scss**

**src/scss/components/input-counter/_input-counter.scss**

**src/scss/components/input-text/_input-text.scss**

**src/scss/components/modal/_modal.scss**

**src/scss/components/preload-img-aspect-ratio/_preload-img-aspect-ratio.scss**

### What does it mean preload-img-aspect-ratio component?
It's a **component** that associate with some **CSS classes** and these classes help to set default placeholder on **4:3 (SQUARE)** or **16:9 (WIDE)** images.
```html
```
```css
.aspect {
position: relative; }
.aspect--bg-grey {
background-color: #f5f5f5; }
.aspect--bg-grey-fb {
background-color: #fbfbfb; }
.aspect--square {
padding-bottom: 100%; }
/*
* Add this class to image child element.
*/
.aspect__img {
position: absolute;
width: 100%;
height: 100%; }
```
**Some Points to use Aspect Ratio Component classes**
- Make sure the element on which it adds, it would be a block or inline-block element, if it is not then you could add utility class `'u-d-block'`, `'u-d-inline-block'` or you could directly target that element with CSS to make **inline** or **block**.
- By default `'.aspect--square'` or `'.aspect--16:9: resolution'` class takes height according to the **height of the child image element**.
- But if the **parent element** is a **flex element** then aspect ratio technique doesn't work because `'.aspect--square'` or `'.aspect--16:9: resolution'` contains `padding top/bottom` property with a **percentage** value.
- There are also some cases you do not want to have `'.aspect--square'` or `'.aspect--16:9: resolution'` class to take width & height that match with **child image element**. Then you could append **CSS class** or directly target that **parent element** with **CSS** and set your **custom width & height**.
- If the image has **aspect ratio square, i.e. 4:3** then you would add class `'.aspect--square'` on the element. This class has a `padding-bottom:100%` property. **100%** means to take the **entire height of the image**.
- If the image doesn't have **aspect ratio square** then to make a **custom class** like `'.aspect--imageWidth-imageHeight'` and use ready-made **sass function()** `nonsquare(imageWidth,imageHeight)` that returns `padding-bottom` property with the **value calculated according to image resolution**.
- You could also change the `background-color` of placeholder according to your own choice. By default, only **2 classes** are generated.
**src/scss/components/product/_product.scss**

**src/scss/components/select-box/_select-box.scss**

**src/scss/components/textarea/_textarea.scss**

**src/scss/layout**
The **layout** folder contains everything which takes part in laying out the site or application. This folder could have stylesheets for the main parts of the site (header, footer), the grid system or even CSS styles for all the forms.
**src/scss/pages**
Pages folder contains styles **per page**.
**src/scss/vendors-extensions**
It just overrides vendor dependencies and every vendor dependency file is separately created.
**src/scss/app.scss**
This is the main file that is importing all **other scss files** and compiles into the `app.css` file.
Inside the **js** folder, we have all the javascript and vendor dependencies which our layout needs.

**src/js/app.js**
This is the main file which contains all functionality and plugins invocation of our layout.
**src/js/jquery.shopnav.js**
This plugin contains functionality for navigation. Navigation includes **DROP-DOWNS** and **VERTICAL MEGA-MENU**.

**src/js/map-init.js**
This file contains google maps functionality.
**src/js/vendor.js**
This file contains all vendor libraries source code.
## Change Features
**1. Google Fonts**
The template is using **sans-serif** font **Open Sans** from [Google Fonts](https://fonts.google.com/). You could change according to your choice. Erase that line from `html` files, and put new one here.
```html
```
After that also specify rule in **CSS**.
```css
font-family: "Open Sans", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
```
**2. Disable Preloader from pages**
The template is using **preloader** until **body** configuration class `config` is not removed. **Preloader** will be hidden when the `config` class is removed. But it is not necessary to show **preloader** during page load. If you remove **preloader** then it doesn't affect the look & feel of the page. So you could disable **preloader**. All HTML files have this markup underneath **body** element.
```html
```
Remove this markup from all **html** files.
After that in the `app.js` file, there is a method named `RESHOP.appConfiguration()` inside that method comment the line.
```javascript
RESHOP.appConfiguration = function () {
$('body').removeAttr('class');
// $('.preloader').removeClass('is-active');
};
```
**3. Disable Modal**
Default when you visit the **Homepage** a newsletter modal will pop up. You can disable the newsletter modal by editing the file `app.js`. This file is invoking a method named `showNewsletterModal()` inside `window` `load` event, comment that line modal will not show.
```javascript
$(window).on('load', function () {
// RESHOP.showNewsletterModal();
});
```
**4. Slider Options**
The template contains **8 methods** which are associated with **8 sliders**.
```javascript
/*
* Hero Slider / Primary Slider
* Index, Index-2, Index-3
*/
RESHOP.primarySlider();
/*
* Product Slider
*/
RESHOP.productSlider();
/*
* Tab Slider
* Index-2 (Only)
*/
RESHOP.tabSlider();
/*
* Brand Slider
*/
RESHOP.brandSlider();
/*
* Testimonial Slider
*/
RESHOP.testimonialSlider();
/*
* Blog Post Slider
*/
RESHOP.blogPostGallery();
/*
* Product Detail Slider
* Include Thumbnail Slider
* Remember this method doesn't have
* any relation with (Modal Product Detail Slider)
*/
RESHOP.productDetailInit();
/*
* Product Detail Slider
* Include Thumbnail Slider
*/
RESHOP.modalProductDetailInit();
```
Bottom code is showing **methods body** where you could change the slider options.
```javascript
/*
* Hero Slider / Primary Slider
* Index, Index-2, Index-3
*/
RESHOP.primarySlider = function () {
$primarySlider.owlCarousel({});
};
/*
* Product Slider
*/
RESHOP.productSlider = function () {
thisInstance.owlCarousel({});
};
/*
* Tab Slider
* Index-2 (Only)
*/
RESHOP.tabSlider = function () {
thisInstance.owlCarousel({});
};
/*
* Brand Slider
*/
RESHOP.brandSlider = function () {
.owlCarousel({});
};
/*
* Testimonial Slider
*/
RESHOP.testimonialSlider = function () {
.owlCarousel({});
};
/*
* Blog Post Slider
*/
RESHOP.blogPostGallery = function () {
$(this).owlCarousel({});
};
/*
* Product Detail Slider
* Include Thumbnail Slider
* Remember this method doesn't have any
* relation with (Modal Product Detail Slider)
*/
RESHOP.productDetailInit = function () {
$productDetailElement.slick({});
$productDetailElementThumbnail.slick({});
};
/*
* Product Detail Slider
* Include Thumbnail Slider
*/
RESHOP.modalProductDetailInit = function () {
$modalProductDetailElement.slick({});
$modalProductDetailElementThumbnail.slick({});
};
```
**5. Change color scheme**
All **.html** pages are included with default color scheme i.e. `app.css`.
```html
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
```
You can change the stylesheet according to your **color scheme**, just erase the old `` tag with the new one.
```html
```
**6. Change Template from Wide to Box**
You can see all default pages are **wide**. Change page from **wide** into a **box**, by adding this **CSS** class `boxed` on **html** element.
```html
```
## Sources and Credits
- [BEM - Block Element Modifier](https://en.bem.info/methodology/quick-start/)
- [Normalize.css](https://necolas.github.io/normalize.css/)
- [Bootstrap 4 with components Grid, Nav, Modal, Tooltip & Transitions](https://getbootstrap.com/)
- [Font Awesome 5](https://fontawesome.com/)
- [Animate.css](https://daneden.github.io/animate.css/)
- [Modernizr](https://modernizr.com/)
- [Popper.js](https://popper.js.org/)
- [Owl Carousel 2](https://owlcarousel2.github.io/OwlCarousel2/)
- [Slick Carousel](https://kenwheeler.github.io/slick/)
- [jQuery](https://jquery.com/)
- [jQuery ScrollUp](https://github.com/markgoodyear/scrollup)
- [jQuery Elevate Zoom](http://elevateweb.co.uk/image-zoom)
- [jQuery Light Gallery](https://sachinchoolur.github.io/lightGallery/)
- [jQuery Fitvids](http://fitvidsjs.com/)
- [Isotope](https://isotope.metafizzy.co/)
- [Final Countdown](https://hilios.github.io/jQuery.countdown/)
## Changelog Updates History
Following you'll find a list of all Ludus theme Template releases with a log of features added and bug fixes next to each one.
## Version
Version 1.0.0 - Feburary 2019 Initial Template Release
================================================
FILE: about.html
================================================
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
================================================
FILE: blog-detail.html
================================================
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
It’s Easier to Fool People Than to Convince Them That They Have Been Fooled.— MARK TWAIN
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Life is an extraordinary AdventureLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
25July2018
Everyone can draw but need passion for itLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
25July2018
Rap is not an artLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
Life is an extraordinary AdventureLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
25July2018
Everyone can draw but need passion for itLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
25July2018
Rap is not an artLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.
To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.
================================================
FILE: dashboard.html
================================================
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
From your My Account Dashboard you have the ability to view a snapshot of your recent account activity and update your account information. Select a link below to view or edit information.
Below are frequently asked questions, you may find the answer for yourself.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
================================================
FILE: index-2.html
================================================
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
Find Top Brands10% Off On IntimatesFind Intimates on best pricesStarting At
$100.00SHOP NOW
Find Top Brands10% Off On ElectronicsFind electronics on best pricesStarting At
$1000.00SHOP NOW
Find Top Brands10% Off On OutwearFind outwear on best pricesStarting At
$100.00SHOP NOW
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
================================================
FILE: index.html
================================================
Ludus - Electronics, Apparel, Computers, Books, DVDs & more
Latest Update Stock30% Off On ElectronicsFind electronics on best prices, Also Discover most selling products of electronicsStarting At
$1050.00SHOP NOW
Find Top Brands10% Off On ElectronicsFind electronics on best prices, Also Discover most selling products of electronicsStarting At
$380.00SHOP NOW
Find Top Brands10% Off On ElectronicsFind electronics on best prices, Also Discover most selling products of electronicsStarting At
$550.00SHOP NOW
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
John D. / DVNTR Inc.
"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
================================================
FILE: js/app.js
================================================
/**
* This is main script file that contains JS code.
*/
(function ($) {
// Main Object
var RESHOP = {};
// Predefined variables
var
$filterGridWrapper = $('.filter__grid-wrapper'),
$collectionOfFilterBtn = $('.filter__btn'),
$primarySlider = $('#hero-slider'),
$testimonialSlider = $('#testimonial-slider'),
$collectionaClickScroll = $('[data-click-scroll]'),
$collectionProductSlider = $('.product-slider'),
$collectionTabSlider = $('.tab-slider'),
$collectionInputCounter = $('.input-counter'),
$collectionCountDown = $('[data-countdown]'),
$collectionCartModalLink = $('[data-modal="modal"]'),
$defaultAddressCheckbox = $('#get-address'),
$collectionFormBill = $('[data-bill]'),
$collectionPostGallery = $('.post-gallery'),
$blogMasonry = $('.blog-m'),
$collectionPostVideo = $('.post-video-block'),
// $("iframe[src*="youtube"], iframe[src*="vimeo"]") jQuery Multiple Selector
$collectionEmbedVideo = $('iframe[src*="youtube"]'),
$productDetailElement = $('#pd-o-initiate'),
$productDetailElementThumbnail = $('#pd-o-thumbnail'),
$modalProductDetailElement = $('#js-product-detail-modal'),
$modalProductDetailElementThumbnail = $('#js-product-detail-modal-thumbnail'),
$shopCategoryToggleSpan = $('.shop-w__category-list .has-list > .js-shop-category-span'),// Recursive
$shopGridBtn = $('.js-shop-grid-target'),
$shopListBtn = $('.js-shop-list-target'),
$shopPerspectiveRow = $('.shop-p__collection > div'),
$shopFilterBtn = $('.js-shop-filter-target');
// Bind Scroll Up to all pages
RESHOP.initScrollUp = function() {
$.scrollUp({
scrollName: 'topScroll',
scrollText: '',
easingType: 'linear',
scrollSpeed: 900,
animation: 'fade',
zIndex: 100
});
};
RESHOP.initScrollSpy = function() {
var $bodyScrollSpy = $('#js-scrollspy-trigger');
if ($bodyScrollSpy.length) {
$bodyScrollSpy.scrollspy({
target: '#init-scrollspy'
});
}
};
RESHOP.onClickScroll = function() {
$collectionaClickScroll.on('click', function (e) {
// prevent default behavior means page doesn't move or show up id's on browser status-bar
e.preventDefault();
// Get Target
var target = $(this).data('click-scroll');
// check if anchor has hash
if ($(target).length) {
$('html').animate({
// .offset() is jQuery function and it returns jQuery object which
// has top, left, bottom property and returns total distance from the html container
scrollTop: $(target).offset().top
}, 1000, function () {
});
}
});
};
// Bind Tooltip to all pages
RESHOP.initTooltip = function() {
$('[data-tooltip="tooltip"]').tooltip({
// The default value for trigger is 'hover focus',
// thus the tooltip stay visible after a button is clicked,
// until another button is clicked, because the button is focused.
trigger : 'hover'
});
};
// Bind Modals
RESHOP.initModal = function() {
// Check if these anchors are on page
if ($collectionCartModalLink.length) {
$collectionCartModalLink.on('click',function () {
var getElemId = $(this).data('modal-id');
$(getElemId).modal({
backdrop: 'static',
keyboard: false,
show:true
});
});
}
};
// Default Billing Address
RESHOP.defaultAddressCheckbox = function() {
if ($defaultAddressCheckbox.length) {
$defaultAddressCheckbox.change(function () {
if (this.checked) {
$collectionFormBill.prop("disabled", true);
$('#make-default-address').prop("checked", false);
} else {
$collectionFormBill.prop("disabled", false);
}
});
}
};
RESHOP.reshopNavigation = function() {
$('#navigation').shopNav();
$('#navigation1').shopNav();
$('#navigation2').shopNav();
$('#navigation3').shopNav();
};
RESHOP.onTabActiveRefreshSlider = function() {
// When showing a new tab, the events fire.
// Specificity = 2
$('.tab-list [data-toggle="tab"]').on('shown.bs.tab', function (e) {
// Get the current click id of tab
var currentID = $(e.target).attr('href');
// Trigger refresh `event` to current active `tab`
$(currentID + '.active').find('.tab-slider').trigger('refresh.owl.carousel');
});
};
// Bind all sliders into the page
RESHOP.primarySlider = function() {
if ($primarySlider.length) {
$primarySlider.owlCarousel({
items: 1,
autoplayTimeout: 8000,
loop: true,
margin: -1,
dots: false,
smartSpeed: 1500,
rewind: false, // Go backwards when the boundary has reached
nav: false,
responsive: {
992: {
dots: true
}
}
});
}
};
// Bind all sliders into the page
RESHOP.productSlider = function() {
// 0 is falsy value, 1 is truthy
if ($collectionProductSlider.length) {
$collectionProductSlider.on('initialize.owl.carousel', function () {
$(this).closest('.slider-fouc').removeAttr('class');
}).each(function () {
var thisInstance = $(this);
var itemPerLine = thisInstance.data('item');
thisInstance.owlCarousel({
autoplay: false,
loop: false,
dots: false,
rewind: true,
smartSpeed: 1500,
nav: true,
navElement: 'div',
navClass: ['p-prev', 'p-next'],
navText: ['', ''],
responsive: {
0: {
items: 1
},
768: {
items: itemPerLine - 2
},
991: {
items: itemPerLine - 1
},
1200: {
items: itemPerLine
}
}
});
});
}
};
// Bind all sliders into the page
RESHOP.tabSlider = function() {
if ($collectionTabSlider.length) {
$collectionTabSlider.on('initialize.owl.carousel', function () {
$(this).closest('.slider-fouc').removeAttr('class');
}).each(function () {
var thisInstance = $(this);
var itemPerLine = thisInstance.data('item');
thisInstance.owlCarousel({
autoplay: false,
loop: false,
dots: false,
rewind: true,
smartSpeed: 1500,
nav: true,
navElement: 'div',
navClass: ['t-prev', 't-next'],
navText: ['', ''],
responsive: {
0: {
items: 1
},
768: {
items: itemPerLine - 2
},
991: {
items: itemPerLine - 1
},
1200: {
items: itemPerLine
}
}
});
});
}
};
// Bind Brand slider
RESHOP.brandSlider = function() {
var $brandSlider = $('#brand-slider');
// Check if brand slider on the page
if ($brandSlider.length) {
var itemPerLine = $brandSlider.data('item');
$brandSlider.on('initialize.owl.carousel', function () {
$(this).closest('.slider-fouc').removeAttr('class');
}).owlCarousel({
autoplay: false,
loop: false,
dots: false,
rewind: true,
nav: true,
navElement: 'div',
navClass: ['b-prev', 'b-next'],
navText: ['', ''],
responsive: {
0: {
items: 1
},
768: {
items: 3,
},
991: {
items: itemPerLine
},
1200: {
items: itemPerLine
}
}
});
}
};
// Testimonial Slider
RESHOP.testimonialSlider = function() {
// Check if Testimonial-Slider on the page
if ($testimonialSlider.length) {
$testimonialSlider.on('initialize.owl.carousel', function () {
$(this).closest('.slider-fouc').removeAttr('class');
}).owlCarousel({
items:1,
autoplay: false,
loop: false,
dots: true,
rewind: false,
smartSpeed: 1500,
nav: false
});
}
};
// Remove Class from body element
RESHOP.appConfiguration = function() {
$('body').removeAttr('class');
$('.preloader').removeClass('is-active');
};
// Bind isotope filter plugin
RESHOP.isotopeFilter = function() {
// Check if filter grid wrapper on the page
if ($filterGridWrapper.length) {
$filterGridWrapper.isotope({
itemSelector:'.filter__item',
filter: '*'
});
}
// Check if filter buttons are on page then attach click
if ($collectionOfFilterBtn.length) {
// Attack click event to these filter buttons
$collectionOfFilterBtn.on('click',function(){
// Get Value of the attribute data-filter
var selectorValue = $(this).attr('data-filter');
// Now initialize isotope plugin
$filterGridWrapper.isotope({
filter:selectorValue
});
$(this).closest('.filter-category-container').find('.js-checked').removeClass('js-checked');
$(this).addClass('js-checked');
});
}
};
// Bind countdown plugin
RESHOP.timerCountDown = function() {
// Check if Count Down on the page
if ($collectionCountDown.length) {
$collectionCountDown.each(function () {
var $this = $(this),
finalDate = $(this).data('countdown');
$this.countdown(finalDate, function (event) {
$this.html(event.strftime('
%DDays
%HHours
%MMins
%SSecs
'));
});
});
}
};
// Input Counter
RESHOP.initInputCounter = function() {
// Check if Input Counters on the page
if ($collectionInputCounter.length) {
// Attach Click event to plus button
$collectionInputCounter.find('.input-counter__plus').on('click',function () {
var $input = $(this).parent().find('input');
var count = parseInt($input.val()) + 1; // Number + Number
$input.val(count).change();
});
// Attach Click event to minus button
$collectionInputCounter.find('.input-counter__minus').on('click',function () {
var $input = $(this).parent().find('input');
var count = parseInt($input.val()) - 1; // Number - Number
$input.val(count).change();
});
// Fires when the value of the element is changed
$collectionInputCounter.find('input').change(function () {
var $this = $(this);
var min = $this.data('min');
var max = $this.data('max');
var val = parseInt($this.val());// Current value
// Restrictions check
if (!val) {
val = 1;
}
// The min() method returns the number with the lowest value
val = Math.min(val,max);
// The max() method returns the number with the highest value
val = Math.max(val,min);
// Sets the Value
$this.val(val);
});
}
};
// Blog Post Gallery
RESHOP.blogPostGallery = function() {
if ($collectionPostGallery.length) {
$collectionPostGallery.on('initialize.owl.carousel', function () {
$(this).closest('.slider-fouc').removeAttr('class');
}).each(function () {
$(this).owlCarousel({
items:1,
autoplay: false,
loop: false,
dots: false,
rewind: true,
smartSpeed: 1500,
nav: true,
navElement: 'div',
navClass: ['post-prev', 'post-next'],
navText: ['', ''],
});
});
}
};
// Blog Post Masonry
RESHOP.blogPostMasonry = function() {
if ($blogMasonry.length) {
$blogMasonry.find('.blog-m-init').isotope({
itemSelector: '.blog-m__element',
layoutMode: 'masonry'
});
}
};
// Blog Post Video
RESHOP.blogPostVideo = function() {
if ($collectionPostVideo.length) {
$collectionPostVideo.on('click',function (e) {
e.preventDefault();
var $this = $(this);
// Find immediate child that has .bp__video class
var myVideo = $this.find('.post-video')[0];
// Add ended event
$(myVideo).on('ended',function () {
$this.removeClass('process');// Add play icon
});
// By default it is paused
if (myVideo.paused) {
// Play Video
myVideo.play();
$(this).addClass('process');
if ($(this).hasClass('pause')) {
$(this).removeClass('pause');
}
} // if user again click that block just pause the video and add icon
else {
myVideo.pause();
$(this).addClass('pause');
}
});
}
};
// Blog Post Embed Video
RESHOP.blogPostEmbedVideo = function() {
if ($collectionEmbedVideo.length) {
$collectionEmbedVideo.parent().fitVids();
}
};
// Product Detail Init
RESHOP.productDetailInit = function() {
if ($productDetailElement.length && $productDetailElementThumbnail.length) {
var ELEVATE_ZOOM_OBJ = {
borderSize: 1,
autoWidth:true,
zoomWindowWidth: 540,
zoomWindowHeight: 540,
zoomWindowOffetx: 10,
borderColour: '#e9e9e9',
cursor: 'pointer'
};
// Fires after first initialization
$productDetailElement.on('init', function () {
$(this).closest('.slider-fouc').removeClass('slider-fouc');
});
$productDetailElement.slick({
slidesToShow: 1,
slidesToScroll: 1,
infinite:false,
arrows: false,
dots: false,
fade: true,
asNavFor: $productDetailElementThumbnail
});
// Init elevate zoom plugin to the first image
$('#pd-o-initiate .slick-current img').elevateZoom(ELEVATE_ZOOM_OBJ);
// Fires before slide change
$productDetailElement.on('beforeChange', function(event, slick, currentSlide, nextSlide){
// Get the next slide image
var $img = $(slick.$slides[nextSlide]).find('img');
// Remove old zoom elements
$('.zoomWindowContainer,.zoomContainer').remove();
// Reinit elevate zoom plugin to the next slide image
$($img).elevateZoom(ELEVATE_ZOOM_OBJ);
});
// Init Lightgallery plugin
$productDetailElement.lightGallery({
selector: '.pd-o-img-wrap',// lightgallery-core
download: false,// lightgallery-core
thumbnail: false,// Thumbnails
autoplayControls: false,// Autoplay-plugin
actualSize: false,// Zoom-plugin: Enable actual pixel icon
hash: false, // Hash-plugin
share: false// share-plugin
});
// Thumbnail images
// Fires after first initialization
$productDetailElementThumbnail.on('init', function () {
$(this).closest('.slider-fouc').removeAttr('class');
});
$productDetailElementThumbnail.slick({
slidesToShow: 4,
slidesToScroll: 1,
infinite:false,
arrows: true,
dots: false,
focusOnSelect: true,
asNavFor: $productDetailElement,
prevArrow:'
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Buyer Protection.
Full Refund if you don't receive your order.
Returns accepted if product not as described.
PRODUCT INFORMATION
Main Material
Cotton
Color
Green, Blue, Red
Sleeves
Long Sleeve
Top Fit
Regular
Print
Not Printed
Neck
Round Neck
Pieces Count
1 Piece
Occasion
Casual
Shipping Weight (kg)
0.5
ADD YOUR TAGS
Use spaces to separate tags. Use single quotes (') for phrases.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Buyer Protection.
Full Refund if you don't receive your order.
Returns accepted if product not as described.
PRODUCT INFORMATION
Main Material
Cotton
Color
Green, Blue, Red
Sleeves
Long Sleeve
Top Fit
Regular
Print
Not Printed
Neck
Round Neck
Pieces Count
1 Piece
Occasion
Casual
Shipping Weight (kg)
0.5
ADD YOUR TAGS
Use spaces to separate tags. Use single quotes (') for phrases.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Buyer Protection.
Full Refund if you don't receive your order.
Returns accepted if product not as described.
PRODUCT INFORMATION
Main Material
Cotton
Color
Green, Blue, Red
Sleeves
Long Sleeve
Top Fit
Regular
Print
Not Printed
Neck
Round Neck
Pieces Count
1 Piece
Occasion
Casual
Shipping Weight (kg)
0.5
ADD YOUR TAGS
Use spaces to separate tags. Use single quotes (') for phrases.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
By creating an account with our store, you will be able to move through the checkout process faster, store shipping addresses, view and track your orders in your account and more.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
ReplyLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
ReplyLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
ReplyLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
ReplyLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Reply