<script type="text/javascript">(function() {

    function TheGemAdvancedAnimation() {
        this.animateClass = 'thegem-advanced-animation';
        this.animatedClass = 'thegem-advanced-animation-animated';
    }

    TheGemAdvancedAnimation.prototype = {
        initialize: function () {
            let items =  document.querySelectorAll('.'+this.animateClass);

            if ('IntersectionObserver' in window) {
                let intersectionObserver = new IntersectionObserver((entries, observer)=>{
                    entries.forEach((entry)=> {
                        if (entry.isIntersecting) {
                            this.startAnimation(entry.target);
                            intersectionObserver.unobserve(entry.target);
                        }
                    });
                });

                items.forEach((item)=>{
                    intersectionObserver.observe(item);
                });
            } else {
                items.forEach((item)=>{
                    this.startAnimation(item);
                });
            }
        },

        startAnimation: function (element) {
            if (element.classList.contains(this.animateClass)) {
                setTimeout(() => {
                    element.classList.remove(this.animateClass);
                    element.classList.add(this.animatedClass);
                }, 300);
            }
        }
    };

    window.theGemAdvancedAnimation= new TheGemAdvancedAnimation();
    document.addEventListener('DOMContentLoaded', function() {
        window.theGemAdvancedAnimation.initialize();
    });

    if (window.parent.vc) {
        window.parent.vc.events.on('shortcodeView:updated', function (event) {
            let element = event.view.el.querySelector('.thegem-advanced-animation');
            window.theGemAdvancedAnimation.startAnimation(element);
        });

        window.parent.vc.events.on('app.render', function () {
            window.theGemAdvancedAnimation.initialize();
        });
    }
})();</script>{"id":6643,"date":"2024-08-28T05:28:51","date_gmt":"2024-08-28T05:28:51","guid":{"rendered":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/?page_id=6643"},"modified":"2025-06-27T12:12:46","modified_gmt":"2025-06-27T12:12:46","slug":"shop-landing","status":"publish","type":"page","link":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/","title":{"rendered":"Home"},"content":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;15000&#8243; ken_burns_enabled=&#8221;true&#8221; css=&#8221;.vc_custom_1638441875010{margin-bottom: 0px !important;padding-top: 185px !important;padding-bottom: 190px !important;}&#8221; ken_burns_image=&#8221;9410&#8243; el_class=&#8221;custom-bg&#8221;][vc_column css=&#8221;.vc_custom_1638441370854{padding-top: 0px !important;}&#8221;]<div class=\"thegem-te-heading thegem-custom-69e860dc403488790\" ><script type=\"text\/javascript\">(function() { function TheGemHeading() { this.selector = '.thegem-heading'; this.animateClass = 'thegem-heading-animate'; this.animatedClass = 'thegem-heading-animated'; this.rotatingSelector = '.thegem-heading-rotating'; } TheGemHeading.prototype = { initialize: function () { let items = document.querySelectorAll(this.selector); if ('IntersectionObserver' in window) { let intersectionObserver = new IntersectionObserver((entries, observer)=>{ entries.forEach((entry)=> { if (entry.isIntersecting) { this.startAnimation(entry.target); intersectionObserver.unobserve(entry.target); } }); }); items.forEach((item)=>{ intersectionObserver.observe(item); setTimeout(()=>this.prepareAnimation(item), 300); }); } else { items.forEach((item)=>{ this.prepareAnimation(item); this.startAnimation(item); }); } }, startAnimation: function (element) { if (element.classList.contains(this.animateClass)) { setTimeout(()=>{ element.classList.remove(this.animateClass); element.classList.add(this.animatedClass); }, 300); } let rotatingItem = element.querySelector(this.rotatingSelector); if (typeof(rotatingItem) != 'undefined' && rotatingItem != null) { document.fonts.ready.then(()=>{ this.rotating(rotatingItem); }); } }, isRotating: function (element) { return element.querySelector(this.rotatingSelector) !== null; }, isDesktop: function () { return window.innerWidth > 1024; }, isTablet: function () { return window.innerWidth <= 1024 && window.innerWidth >= 768; }, isMobile: function () { return window.innerWidth < 768; }, prepareAnimation: function (element) { if (!element || this.isRotating(element)) { return; } if (element.classList.contains('thegem-heading-animate-disable-desktop') && this.isDesktop()) return; if (element.classList.contains('thegem-heading-animate-disable-tablet') && this.isTablet()) return; if (element.classList.contains('thegem-heading-animate-disable-mobile') && this.isMobile()) return; const animationName = element.dataset.animationName; const animationDelay = parseInt(element.dataset.animationDelay) || 0; const animationInterval = parseInt(element.dataset.animationInterval) || 0; switch (animationName) { case 'lines-slide-up': case 'lines-slide-up-random': const animationLineTagWrap = '<span class=\"thegem-heading-line-wrap\">'; function animationLineTag (index) { let styles = ''; if (animationName === 'lines-slide-up' && (animationDelay > 0 || animationInterval > 0)) { styles = `animation-delay: ${(animationDelay + (animationInterval*(index+1)))}ms;`; } return '<span class=\"thegem-heading-line\"' + (styles!== '' ? ' style=\"'+styles+'\"' : '') + '>'; } let nodes = element.childNodes; let currentOffset = nodes[0].offsetTop; let index = 0; let idx = 0; let html = animationLineTagWrap + animationLineTag(index); for (let i = 0; i < nodes.length; i++) { if (nodes[i].nodeType === 3) continue; if (nodes[i].offsetTop > currentOffset + nodes[i].scrollHeight\/2) { index++; html += '<\/span><\/span>' + animationLineTagWrap + animationLineTag(index); currentOffset = nodes[i].offsetTop; if (animationName === 'lines-slide-up-random') idx = 0; } if (animationName === 'lines-slide-up-random' && (animationDelay > 0 || animationInterval > 0)) { nodes[i].style.animationDelay = (animationDelay + animationInterval*(idx+1)) + 'ms'; } html += nodes[i].outerHTML + ' '; if (animationName === 'lines-slide-up-random') idx++; } html += '<\/span><\/span>'; element.innerHTML = html; break; } }, rotating: function (element) { let items = Array.from(element.getElementsByClassName('thegem-heading-rotating-text')); if (items.length === 0) return; let duration = element.dataset.duration !== undefined ? parseInt(element.dataset.duration) : 1400; let animation = element.dataset.animation; let current = items[0]; if (animation === 'fade') { let maxWidth = Math.max(...items.map((item)=>item.clientWidth)); items.forEach((item)=>item.style.width = maxWidth + 'px'); setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; current.style.opacity = 0; setTimeout(()=>{ current.style.position = 'absolute'; next.style.position = 'relative'; next.style.opacity = 1; current = next; }, 700); }, 1000 + duration); } else { current.style.width = element.clientWidth+'px'; items.forEach((item)=>item.dataset.width = item.clientWidth); setInterval(()=>{ let next = current.nextElementSibling !== null ? current.nextElementSibling : element.childNodes[0]; let nextWidth = next.dataset.width; let currentWidth = current.dataset.width; element.style.width = nextWidth + 'px'; current.style.width = '1px'; current.style.opacity = 0; next.style.width = '1px'; setTimeout(()=>{ current.style.position = 'absolute'; current.style.width = currentWidth + 'px'; next.style.position = 'relative'; next.style.opacity = 1; next.style.width = nextWidth + 'px'; current = next; }, 500); }, 1000 + duration); } } }; window.theGemHeading = new TheGemHeading(); document.addEventListener('DOMContentLoaded', function(event) { window.theGemHeading.initialize(); }); if (window.parent.vc) { window.parent.vc.events.on('shortcodeView:updated', function (event) { let element = event.view.el.querySelector('.thegem-heading'); window.theGemHeading.prepareAnimation(element); window.theGemHeading.startAnimation(element); }); window.parent.vc.events.on('app.render', function () { window.theGemHeading.initialize(); }); }\n})();<\/script><h1 id=\"thegem-heading-69e860dc4027c\" class=\"thegem-heading custom-year letters-slide-up thegem-heading-animate\" style=\"text-align: right;\" ><span class=\"thegem-heading-word\" style=\"color: rgba(255,255,255,0.3); transition: color 0.3s;\"><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1500ms\">2<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1700ms\">0<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1900ms\">2<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 2100ms\">5<\/span><\/span><\/span><\/h1><style type=\"text\/css\">#thegem-heading-69e860dc4027c {margin: 0;}#thegem-heading-69e860dc4027c {margin-left: auto; margin-right: 0;}#thegem-heading-69e860dc4027c {font-size: 440px;}#thegem-heading-69e860dc4027c {line-height: 440px;}#thegem-heading-69e860dc4027c {letter-spacing: 0px;}#thegem-heading-69e860dc4027c, #thegem-heading-69e860dc4027c .light {text-transform: none;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4027c {font-size: 280px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4027c {line-height: 280px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4027c {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4027c {font-size: 175px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4027c {line-height: 175px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4027c {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4027c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4027c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4027c.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4027c.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc4027c .light, #thegem-heading-69e860dc4027c {font-family:Playfair Display SC; font-weight:900; font-style:normal; }#thegem-heading-69e860dc4027c .thegem-heading-letter {animation-timing-function: cubic-bezier(0.25,1,0.5,1);}#thegem-heading-69e860dc4027c a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1638436971642{margin-top: 21px !important;margin-left: 21px !important;}&#8221; tablet_margin_left=&#8221;0&#8243; mobile_margin_left=&#8221;0&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 55px;\"><\/div><div class=\"thegem-te-heading thegem-custom-69e860dc404081493\" ><h1 id=\"thegem-heading-69e860dc403da\" class=\"thegem-heading words-slide-right thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 80ms\">Charming<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 160ms\">brilliance<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 240ms\">&<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 320ms\">timeless<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 400ms\">elegance!<\/span><\/span><\/h1><style type=\"text\/css\">#thegem-heading-69e860dc403da {margin: 0;}#thegem-heading-69e860dc403da {font-size: 18px;}#thegem-heading-69e860dc403da {line-height: 20px;}#thegem-heading-69e860dc403da {letter-spacing: 0px;}#thegem-heading-69e860dc403da, #thegem-heading-69e860dc403da .light {text-transform: uppercase;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc403da {font-size: 14px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc403da {line-height: 14px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc403da {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc403da {font-size: 12px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc403da {line-height: 12px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc403da {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc403da.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc403da.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc403da.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc403da.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc403da .light, #thegem-heading-69e860dc403da {font-family:Montserrat; font-weight:700; font-style:normal; }#thegem-heading-69e860dc403da a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69e860dc404875575\" ><div id=\"thegem-heading-69e860dc4046c\" class=\"thegem-heading title-h1 vc_custom_1638975848129 words-slide-right thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 380ms\">The<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 460ms\">new<\/span><\/span> <span class=\"thegem-heading-word-wrap\"><span class=\"thegem-heading-word\" style=\"color: #0f0f0f; transition: color 0.3s; animation-delay: 540ms\">fashion<\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69e860dc4046c {margin: 0;}#thegem-heading-69e860dc4046c {letter-spacing: 0px;}#thegem-heading-69e860dc4046c, #thegem-heading-69e860dc4046c .light {text-transform: uppercase;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4046c {font-size: 30px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4046c {line-height: 30px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4046c {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4046c {font-size: 24px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4046c {line-height: 24px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4046c {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4046c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4046c.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4046c.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4046c.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc4046c a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69e860dc4050a807\" ><div id=\"thegem-heading-69e860dc404e7\" class=\"thegem-heading title-xlarge letters-slide-up thegem-heading-animate\" style=\"text-align: left;\" ><span class=\"thegem-heading-word\" style=\"color: #ffffff; transition: color 0.3s;\"><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 700ms\">C<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 800ms\">o<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 900ms\">l<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1000ms\">l<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1100ms\">e<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1200ms\">c<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1300ms\">t<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1400ms\">i<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1500ms\">o<\/span><\/span><span class=\"thegem-heading-letter-wrap\"><span class=\"thegem-heading-letter\" style=\"animation-delay: 1600ms\">n<\/span><\/span><\/span><\/div><style type=\"text\/css\">#thegem-heading-69e860dc404e7 {margin: 0;}#thegem-heading-69e860dc404e7 {font-size: 111px;}#thegem-heading-69e860dc404e7 {line-height: 111px;}#thegem-heading-69e860dc404e7 {letter-spacing: 0px;}#thegem-heading-69e860dc404e7, #thegem-heading-69e860dc404e7 .light {text-transform: uppercase;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc404e7 {font-size: 71px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc404e7 {line-height: 71px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc404e7 {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc404e7 {font-size: 44px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc404e7 {line-height: 44px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc404e7 {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc404e7.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc404e7.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc404e7.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc404e7.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc404e7 .light, #thegem-heading-69e860dc404e7 {font-family:Montserrat Subrayada; font-weight:700; font-style:normal; }#thegem-heading-69e860dc404e7 .thegem-heading-letter {animation-timing-function: cubic-bezier(0.77,0,0.175,1);}#thegem-heading-69e860dc404e7 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 57px;\"><\/div><style type=\"text\/css\">.thegem-button-69e860dc405762470 .gem-button {opacity:0;animation-delay:800ms !important}<\/style><div class=\"gem-button-container gem-button-position-left thegem-button-69e860dc405762470 thegem-advanced-animation thegem-advanced-animation-slide-right\"  ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\" style=\"border-radius: 0px;background-color: #0f0f0f;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#0f0f0f';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#ffffff';this.style.color='#0f0f0f';\" href=\"#\" target=\"_self\">The lookbook<\/a><\/div> [\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1632323466910{margin-top: 0px !important;margin-bottom: 0px !important;}&#8221; el_id=&#8221;link&#8221;][vc_column css=&#8221;.vc_custom_1632316652193{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243; css=&#8221;.vc_custom_1632316699347{padding-top: 70px !important;padding-bottom: 50px !important;}&#8221;][vc_single_image image=&#8221;9245&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; css_animation=&#8221;none&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 107px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f0e9de;\">sale<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">Big Sale<br \/>\nSummer<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">Check Our Sales <\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<p style=\"text-align: center; max-width: 433px; margin: 0 auto;\"><span style=\"color: #000000;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\u00a0<\/span><\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div><div class=\"gem-button-container gem-button-position-center thegem-button-69e860dc405e71116\"  ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;background-color: #000000;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#000000';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#ecd9c0';this.style.color='#000000';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/sale\/\" target=\"_self\">read more<\/a><\/div> [\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243; css=&#8221;.vc_custom_1632316706629{padding-top: 70px !important;padding-bottom: 50px !important;}&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -24px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f0e9de;\">new<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">New Product<br \/>\ncollection<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">Check Our Newcomings <\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 37px;\"><\/div>[vc_column_text css_animation=&#8221;none&#8221;]<\/p>\n<p style=\"text-align: center; max-width: 433px; margin: 0 auto;\"><span style=\"color: #000000;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\u00a0<\/span><\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 28px;\"><\/div><div class=\"gem-button-container gem-button-position-center thegem-button-69e860dc4063d1205\"  ><a class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;background-color: #000000;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#000000';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#ecd9c0';this.style.color='#000000';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/new-in\/\" target=\"_self\">read more<\/a><\/div> <div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 112px;\"><\/div>[vc_single_image image=&#8221;9244&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221; css_animation=&#8221;none&#8221;][\/vc_column][vc_column width=&#8221;1\/4&#8243; css_animation=&#8221;none&#8221; el_class=&#8221;inner-custom-back&#8221; css=&#8221;.vc_custom_1548948836888{padding-top: 380px !important;padding-bottom: 380px !important;background-color: #eed9bf !important;}&#8221; offset=&#8221;vc_col-lg-2 vc_hidden-xs&#8221;][\/vc_column][vc_column css=&#8221;.vc_custom_1632323457143{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 100px;\"><\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1638800445914{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 110px !important;padding-bottom: 120px !important;background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/layer-639.jpg?id=6696) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; mobile_padding_top=&#8221;40&#8243; mobile_padding_bottom=&#8221;0&#8243; tablet_padding_top=&#8221;60&#8243; tablet_padding_bottom=&#8221;70&#8243;][vc_column width=&#8221;1\/6&#8243; css=&#8221;.vc_custom_1638800890026{padding-top: 0px !important;padding-right: 0px !important;}&#8221; offset=&#8221;vc_col-lg-2 vc_col-md-2 vc_col-xs-3&#8243; mobile_padding_left=&#8221;6&#8243; mobile_padding_right=&#8221;0&#8243; tablet_padding_top=&#8221;10&#8243; mobile_padding_top=&#8221;0&#8243;]<div class=\"thegem-te-heading thegem-custom-69e860dc406ca4745\" ><div id=\"thegem-heading-69e860dc406a9\" class=\"thegem-heading title-h4 fade-lr thegem-heading-animate\" style=\"text-align: right;\" ><span style=\"color: #ffffff; transition: color 0.3s;\">Discounts\nUp to<\/span><\/div><style type=\"text\/css\">#thegem-heading-69e860dc406a9 {margin: 0;}#thegem-heading-69e860dc406a9 {margin-left: auto; margin-right: 0;}#thegem-heading-69e860dc406a9 {letter-spacing: 0px;}#thegem-heading-69e860dc406a9, #thegem-heading-69e860dc406a9 .light {text-transform: uppercase;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc406a9 {font-size: 16px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc406a9 {line-height: 25px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc406a9 {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc406a9 {font-size: 12px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc406a9 {line-height: 18px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc406a9 {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc406a9.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc406a9.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc406a9.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc406a9.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc406a9 .light, #thegem-heading-69e860dc406a9 {font-family:Montserrat Subrayada; font-weight:700; font-style:normal; }#thegem-heading-69e860dc406a9 {animation-duration: 1000ms;}#thegem-heading-69e860dc406a9 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[\/vc_column][vc_column width=&#8221;1\/4&#8243; css=&#8221;.vc_custom_1638801195267{padding-top: 0px !important;}&#8221; offset=&#8221;vc_col-lg-3 vc_col-md-4 vc_col-xs-3&#8243; mobile_padding_left=&#8221;15&#8243; mobile_padding_right=&#8221;5&#8243;]<div class=\"thegem-te-heading thegem-custom-69e860dc407503787\" ><h1 id=\"thegem-heading-69e860dc40732\" class=\"thegem-heading vc_custom_1638806121706 fade-lr thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #edcb9d; transition: color 0.3s;\">50<\/span><\/h1><style type=\"text\/css\">#thegem-heading-69e860dc40732 {margin: 0;}#thegem-heading-69e860dc40732 {font-size: 250px;}#thegem-heading-69e860dc40732 {letter-spacing: 0px;}#thegem-heading-69e860dc40732, #thegem-heading-69e860dc40732 .light {text-transform: none;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc40732 {font-size: 150px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc40732 {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc40732 {font-size: 70px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc40732 {line-height: 25px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc40732 {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc40732.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc40732.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc40732.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc40732.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc40732 .light, #thegem-heading-69e860dc40732 {font-family:Playfair Display SC; font-weight:900; font-style:normal; }#thegem-heading-69e860dc40732 {animation-duration: 1000ms;}#thegem-heading-69e860dc40732 {animation-delay: 100ms;}#thegem-heading-69e860dc40732 a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div>[\/vc_column][vc_column width=&#8221;1\/4&#8243; disable_custom_paddings_tablet=&#8221;true&#8221; css=&#8221;.vc_custom_1638801238343{padding-top: 0px !important;padding-left: 32px !important;}&#8221; offset=&#8221;vc_col-lg-3 vc_col-md-3 vc_col-xs-6&#8243; mobile_padding_left=&#8221;5&#8243; mobile_padding_right=&#8221;0&#8243; mobile_margin_top=&#8221;-10&#8243; tablet_padding_left=&#8221;21&#8243;]<div class=\"thegem-te-heading thegem-custom-69e860dc407c43769\" ><h1 id=\"thegem-heading-69e860dc407aa\" class=\"thegem-heading fade-rl thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #edcb9d; transition: color 0.3s;\">%<\/span><\/h1><style type=\"text\/css\">#thegem-heading-69e860dc407aa {margin: 0;}#thegem-heading-69e860dc407aa {font-size: 100px;}#thegem-heading-69e860dc407aa {letter-spacing: 0px;}#thegem-heading-69e860dc407aa, #thegem-heading-69e860dc407aa .light {text-transform: none;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc407aa {font-size: 60px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc407aa {letter-spacing: 0px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc407aa {font-size: 40px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc407aa {letter-spacing: 0px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc407aa.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc407aa.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc407aa.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc407aa.thegem-heading {padding-right: 5px !important;}}#thegem-heading-69e860dc407aa .light, #thegem-heading-69e860dc407aa {font-family:Playfair Display SC; font-weight:900; font-style:normal; }#thegem-heading-69e860dc407aa {animation-duration: 1000ms;}#thegem-heading-69e860dc407aa {animation-delay: 200ms;}#thegem-heading-69e860dc407aa a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div><div class=\"thegem-te-heading thegem-custom-69e860dc408384612\" ><div id=\"thegem-heading-69e860dc4081e\" class=\"thegem-heading title-h4 vc_custom_1638805958736 fade-rl thegem-heading-animate\" style=\"text-align: left;\" ><span style=\"color: #ffffff; transition: color 0.3s;\">This summer<\/span><\/div><style type=\"text\/css\">#thegem-heading-69e860dc4081e {margin: 0;}#thegem-heading-69e860dc4081e {letter-spacing: 0px;}#thegem-heading-69e860dc4081e, #thegem-heading-69e860dc4081e .light {text-transform: uppercase;}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4081e {font-size: 16px;}}@media screen and (max-width: 1023px) and (min-width: 768px) {#thegem-heading-69e860dc4081e {line-height: 25px;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4081e {font-size: 12px;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4081e.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4081e.thegem-heading {padding-left: 5px !important;}}@media screen and (max-width: 1023px) {#thegem-heading-69e860dc4081e.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4081e.thegem-heading {padding-right: 5px !important;}}@media screen and (max-width: 767px) {#thegem-heading-69e860dc4081e.thegem-heading {margin-top: -10px !important;}}#thegem-heading-69e860dc4081e .light, #thegem-heading-69e860dc4081e {font-family:Montserrat Subrayada; font-weight:700; font-style:normal; }#thegem-heading-69e860dc4081e {animation-duration: 1000ms;}#thegem-heading-69e860dc4081e {animation-delay: 300ms;}#thegem-heading-69e860dc4081e a:hover span {color: var(--thegem-to-menu-level1-color-hover, #00BCD4) !important;}<\/style><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1632324130542{margin-top: 50px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1632324124767{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div>[\/vc_column][vc_column][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f1e9dd;\">SUMMER ESSENTIALS<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">SUMMER ESSENTIALS<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5 style=\"text-align: center;\">JUST ARRIVED<\/h5>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; equal_height=&#8221;yes&#8221; css=&#8221;.vc_custom_1632383329443{margin-top: 50px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;custom-border&#8221;][vc_column css=&#8221;.vc_custom_1632324246587{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1632208364132{background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/13.jpg?id=6703) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column][vc_column offset=&#8221;vc_col-lg-6&#8243; el_class=&#8221;splash-custom-labels summer-essentials&#8221;]<style>#grid_2303798.item-separator .portfolio-item { padding: calc(0px\/2) !important; }#grid_2303798:not(.item-separator) .fullwidth-block { padding: 0 calc(0px) !important; }.grid_2303798 .portfolio-item { padding: calc(0px\/2); }.grid_2303798 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); }@media (min-width: 768px) { #grid_2303798.item-separator .portfolio-item { padding: calc(0px\/2) !important; }#grid_2303798:not(.item-separator) .fullwidth-block { padding: 0 calc(0px) !important; }.grid_2303798 .portfolio-item { padding: calc(0px\/2); }.grid_2303798 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); } }@media (min-width: 992px) { #grid_2303798.item-separator .portfolio-item { padding: calc(0px\/2) !important; }#grid_2303798:not(.item-separator) .fullwidth-block { padding: 0 calc(0px) !important; }.grid_2303798 .portfolio-item { padding: calc(0px\/2); }.grid_2303798 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); } }#grid_2303798 .categories { display: none }#grid_2303798.item-separator .portfolio-item:before,#grid_2303798.item-separator .portfolio-item:after,#grid_2303798.item-separator .portfolio-item .item-separator-box:before,#grid_2303798.item-separator .portfolio-item .item-separator-box:after { border-width: 1px; border-color: #0f0f0f;}#grid_2303798.item-separator .portfolio-item .item-separator-box:before,#grid_2303798.item-separator .portfolio-item .item-separator-box:after { width: calc(100% + 1px); left: calc(-1px\/2);}#grid_2303798.item-separator .portfolio-item:before,#grid_2303798.item-separator .portfolio-item:after { height: calc(100% + 1px); top: calc(-1px\/2);}#grid_2303798.item-separator .owl-carousel .owl-stage-outer { padding: calc(1px\/2); width: calc(100% + 1px); margin-left: calc(-1px\/2);}#grid_2303798.item-separator .portfolio-item:before { transform: translateX(-0px) !important; top: -0px !important;}#grid_2303798.item-separator .portfolio-item:after { transform: translateX(1px) !important; top: -0px !important;}#grid_2303798.item-separator .portfolio-item .item-separator-box:before { transform: translateY(-0px) !important; left: -0px !important;}#grid_2303798 .portfolio-item .item-separator-box:after { transform: translateY(1px) !important; left: -0px !important;}#grid_2303798.item-separator .owl-carousel .owl-stage-outer { padding: 1px !important; width: calc(100% + 1px * 2) !important; margin-left: calc(-1px) !important; }#grid_2303798 .portfolio-item .product-info .product-rating .empty-rating:before { border-width: 1px }#grid_2303798 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_2303798 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button { flex-direction: row }<\/style><style><\/style> <div class=\"preloader skeleton-carousel grid_2303798\"> <div class=\"skeleton\"> <div class=\"skeleton-posts row portfolio-row\"> <div class=\"portfolio-item product col-xs-12 col-sm-6 col-md-6 bigger size-item post-6643 page type-page status-publish\"> <\/div> <div class=\"portfolio-item product col-xs-12 col-sm-6 col-md-6 bigger size-item post-6643 page type-page status-publish\"> <\/div> <div class=\"portfolio-item product col-xs-12 col-sm-6 col-md-6 bigger size-item post-6643 page type-page status-publish\"> <\/div> <div class=\"portfolio-item product col-xs-12 col-sm-6 col-md-6 bigger size-item post-6643 page type-page status-publish\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-preloader-wrapper\"> <div id=\"grid_2303798\" class=\"portfolio portfolio-grid extended-products-grid extended-products-grid-carousel extended-carousel-grid woocommerce products no-padding disable-isotope portfolio-preset-hover-shadow-hover portfolio-style-justified background-style-transparent caption-position-hover aspect-ratio-portrait hover-default title-on-hover arrows-position-on no-gaps hover-title columns-desktop-2x columns-tablet-2x columns-mobile-1x item-separator arrows-hover carousel-scroll-init\" data-portfolio-uid=\"grid_2303798\" data-columns-mobile=\"1\" data-columns-tablet=\"2\" data-columns-desktop=\"2\" data-margin-mobile=\"0\" data-margin-tablet=\"0\" data-margin-desktop=\"0\" data-hover=\"default\" data-dots='0' data-arrows='1' data-loop='1' data-sliding-animation='one-by-one' data-autoscroll-speed='4000'> <div class=\"portfolio-row-outer \"> <div class=\"portfolio-filter-tabs-content\"> <div class=\"extended-products-grid-carousel-item active\" data-num=\"1\"> <div class=\"portfolio-row clearfix\"> <div class=\"portfolio-set\"> <div class=\"portfolio-item product shoes-accessories style classic col-xs-12 col-sm-6 col-md-6 bigger post-7309 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-7309 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-double.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-l.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-double-l.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-xl.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-double-xl.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/49-thegem-product-justified-portrait-xl.jpg\" width=\"700\" height=\"875\" class=\"attachment-thegem-product-justified-portrait-xl\" alt=\"Washed &#038; Go\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=7309\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"7309\" data-product_sku=\"4565HZ-3\" aria-label=\"Add Washed & Go to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-7309 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"7309\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:7309,&quot;parent_product_id&quot;:7309,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=7309\" rel=\"nofollow\" data-product-id=\"7309\" data-product-type=\"simple\" data-original-product-id=\"7309\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Washed+%26%23038%3B+Go&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F&#038;description=Washed+%26%23038%3B+Go\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F&#038;title=Washed+%26%23038%3B+Go&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla.%0D%0A%0D%0ADuis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia+deserunt+mollit+anim+id+est+laborum.+Sed+ut+perspiciatis+unde+omnis+iste+natus+error+sit+voluptatem+accusantium+doloremque+laudantium%2C+totam+rem+aperiam%2C+eaque+ipsa+quae+ab+illo+inventore+veritatis+et+quasi+architecto+beatae+vitae+dicta+sunt+explicabo.+Nemo+enim+ipsam+voluptatem+quia+voluptas+sit+aspernatur+aut+odit+aut+fugit%2C+sed+quia+consequuntur+magni+dolores+eos+qui+ratione+voluptatem+sequi+nesciunt.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwashed-go-3%2F&#038;title=Washed+%26%23038%3B+Go\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/washed-go-3\/\">Washed &#038; Go<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>49.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/washed-go-3\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-1\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-28%<\/span><\/span><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories style classic col-xs-12 col-sm-6 col-md-6 bigger post-7308 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-7308 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-double.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-l.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-double-l.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-xl.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-double-xl.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/48-thegem-product-justified-portrait-xl.jpg\" width=\"700\" height=\"875\" class=\"attachment-thegem-product-justified-portrait-xl\" alt=\"Navy Shoes\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/navy-shoes\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button \" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-7308 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"7308\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:7308,&quot;parent_product_id&quot;:7308,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=7308\" rel=\"nofollow\" data-product-id=\"7308\" data-product-type=\"variable\" data-original-product-id=\"7308\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Navy+Shoes&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F&#038;description=Navy+Shoes\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F&#038;title=Navy+Shoes&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat+fugiat+nulla.+Aliqua+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco%0D%0A%0D%0A%5Bgem_list+type%3D%22check-style-1%22+color%3D%224%22%5D%0D%0A%3Cul%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ELorem+ipsum+dolor+sit+amet%2C+consectetur+dipisicing+elit%3C%2Fli%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ESed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna%3C%2Fli%3E%0D%0A%3C%2Ful%3E%0D%0A%5B%2Fgem_list%5D\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnavy-shoes%2F&#038;title=Navy+Shoes\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/navy-shoes\/\">Navy Shoes<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>86.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>55.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/navy-shoes\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-1\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-36%<\/span><\/span><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories style col-xs-12 col-sm-6 col-md-6 bigger has-rating post-6638 type-product status-publish has-post-thumbnail product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6638 product type-product status-publish has-post-thumbnail product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-double.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-l.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-double-l.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-xl.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-double-xl.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-1-thegem-product-justified-portrait-xl.jpg\" width=\"700\" height=\"875\" class=\"attachment-thegem-product-justified-portrait-xl\" alt=\"New Belt\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/new-belt\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button \" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6638 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6638\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6638,&quot;parent_product_id&quot;:6638,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6638\" rel=\"nofollow\" data-product-id=\"6638\" data-product-type=\"variable\" data-original-product-id=\"6638\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=New+Belt&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F&#038;description=New+Belt\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F&#038;title=New+Belt&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia.%0D%0A%5Bgem_list+type%3D%22check-style-1%22+color%3D%224%22%5D%0D%0A%3Cul%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ELorem+ipsum+dolor+sit+amet%2C+consectetur+dipisicing+elit%3C%2Fli%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ESed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna%3C%2Fli%3E%0D%0A%3C%2Ful%3E%0D%0A%5B%2Fgem_list%5D\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fnew-belt%2F&#038;title=New+Belt\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/new-belt\/\">New Belt<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>86.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>56.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/new-belt\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-1\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-34%<\/span><\/span><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories style col-xs-12 col-sm-6 col-md-6 bigger post-6634 type-product status-publish has-post-thumbnail product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6634 product type-product status-publish has-post-thumbnail product_cat-shoes-accessories product_cat-style product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-double.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-l.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-double-l.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-xl.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-double-xl.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/26-thegem-product-justified-portrait-xl.jpg\" width=\"700\" height=\"875\" class=\"attachment-thegem-product-justified-portrait-xl\" alt=\"Awa Shirt\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6634\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6634\" data-product_sku=\"4565HZ\" aria-label=\"Add Awa Shirt to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6634 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6634\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6634,&quot;parent_product_id&quot;:6634,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6634\" rel=\"nofollow\" data-product-id=\"6634\" data-product-type=\"simple\" data-original-product-id=\"6634\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Awa+Shirt&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F&#038;description=Awa+Shirt\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F&#038;title=Awa+Shirt&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat+Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat+Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fawa-shirt%2F&#038;title=Awa+Shirt\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/awa-shirt\/\">Awa Shirt<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>49.99<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/awa-shirt\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-1\"> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <\/div><!-- .row--> <div class=\"slider-prev-icon position-on\"> <i class=\"default\"><\/i> <\/div> <div class=\"slider-next-icon position-on\"> <i class=\"default\"><\/i> <\/div> <\/div> <\/div> <div class=\"thegem-popup-notification-wrap grid_2303798\"> <div class=\"thegem-popup-notification cart\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to cart <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/cart\/\">View Cart<\/a> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/checkout\/\">Checkout<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-add\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to wishlist <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wishlist\/\">View Wishlist<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-remove\" data-timing=\"4000\"> <div class=\"notification-message\"> Item removed from wishlist <\/div> <\/div> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][vc_column css=&#8221;.vc_custom_1632390849261{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 130px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; equal_height=&#8221;yes&#8221; css=&#8221;.vc_custom_1632388013037{margin-top: 70px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 180px !important;}&#8221; el_class=&#8221;hidden-padding-on-mobile&#8221;][vc_column offset=&#8221;vc_hidden-lg vc_hidden-md&#8221;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/16.jpg\" alt=\"\"\/><\/div><\/div><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632390854659{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-lg vc_hidden-md&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 40px;\"><\/div>[\/vc_column][vc_column offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -10px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\">fashion week awards<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5><span style=\"color: #000000;\">Stylist overview<br \/>\n<\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"styled-subtitle\">\n<p><span style=\"color: #0f0f0f;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris , consectetur adipisicing nivvsi ut aliquip ex ea commod.<br \/>\n<\/span><\/p>\n<p><span style=\"color: #0f0f0f;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\/span><\/div>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243; offset=&#8221;vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"centered-box gem-image-centered-box\"><div class=\"gem-image gem-wrapbox gem-wrapbox-style-default gem-wrapbox-position-centered lazy-loading\"  style=\"\"><div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\"><img class=\"gem-wrapbox-element img-responsive\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/08\/116.jpg\" alt=\"\"\/><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243; offset=&#8221;vc_col-lg-2 vc_col-md-3 vc_hidden-xs&#8221; el_class=&#8221;inner-custom-back&#8221; css=&#8221;.vc_custom_1548948959310{padding-top: 250px !important;padding-bottom: 250px !important;background-color: #eed9bf !important;}&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1548924229743{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column el_class=&#8221;splash-custom-labels hot-tranding&#8221;][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f1e9dd;\">HOT TRENDING<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">HOT TRENDING<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">IN THIS WEEK<\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632383086932{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632383113835{padding-top: 0px !important;}&#8221;]<style>#grid_66e25d8 .portfolio-item:not(.size-item) { padding: calc(32px\/2) !important; }#grid_66e25d8 .portfolio-item.size-item { padding: 0 calc(32px\/2) !important; }#grid_66e25d8:not(.item-separator) .portfolio-row { margin: calc(-32px\/2); }#grid_66e25d8.item-separator .portfolio-row { margin: 0 calc(-32px\/2); }#grid_66e25d8.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-32px\/2) 0; }#grid_66e25d8.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_66e25d8 .fullwidth-block:not(.no-paddings) { padding-left: 32px; padding-right: 32px; }#grid_66e25d8 .fullwidth-block .portfolio-row { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 32px; padding-right: 32px; }#grid_66e25d8.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 32px; }.grid_66e25d8 .portfolio-item { padding: calc(32px\/2); }.grid_66e25d8 .skeleton-posts.portfolio-row { margin: calc(-32px\/2); }@media (min-width: 768px) { #grid_66e25d8 .portfolio-item:not(.size-item) { padding: calc(32px\/2) !important; }#grid_66e25d8 .portfolio-item.size-item { padding: 0 calc(32px\/2) !important; }#grid_66e25d8:not(.item-separator) .portfolio-row { margin: calc(-32px\/2); }#grid_66e25d8.item-separator .portfolio-row { margin: 0 calc(-32px\/2); }#grid_66e25d8.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-32px\/2) 0; }#grid_66e25d8.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_66e25d8 .fullwidth-block:not(.no-paddings) { padding-left: 32px; padding-right: 32px; }#grid_66e25d8 .fullwidth-block .portfolio-row { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 32px; padding-right: 32px; }#grid_66e25d8.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 32px; }.grid_66e25d8 .portfolio-item { padding: calc(32px\/2); }.grid_66e25d8 .skeleton-posts.portfolio-row { margin: calc(-32px\/2); } }@media (min-width: 992px) { #grid_66e25d8 .portfolio-item:not(.size-item) { padding: calc(32px\/2) !important; }#grid_66e25d8 .portfolio-item.size-item { padding: 0 calc(32px\/2) !important; }#grid_66e25d8:not(.item-separator) .portfolio-row { margin: calc(-32px\/2); }#grid_66e25d8.item-separator .portfolio-row { margin: 0 calc(-32px\/2); }#grid_66e25d8.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-32px\/2) 0; }#grid_66e25d8.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_66e25d8 .fullwidth-block:not(.no-paddings) { padding-left: 32px; padding-right: 32px; }#grid_66e25d8 .fullwidth-block .portfolio-row { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 32px; padding-right: 32px; }#grid_66e25d8.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(32px\/2); padding-right: calc(32px\/2); }#grid_66e25d8.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 32px; }.grid_66e25d8 .portfolio-item { padding: calc(32px\/2); }.grid_66e25d8 .skeleton-posts.portfolio-row { margin: calc(-32px\/2); } }#grid_66e25d8 .categories { display: none }#grid_66e25d8 .reviews { display: none }#grid_66e25d8 .portfolio-item .wrap > .caption { text-align: center }#grid_66e25d8 .portfolio-item .wrap > .caption .star-rating,#grid_66e25d8 .portfolio-item .wrap > .caption .product-rating .empty-rating:before,#grid_66e25d8 .portfolio-item .wrap > .caption .categories,#grid_66e25d8 .portfolio-item .wrap > .caption .product-bottom,#grid_66e25d8 .portfolio-item .wrap > .caption .product-bottom > *:first-child { margin-center: 0 }#grid_66e25d8 .portfolio-item .wrap > .caption { background-color: #ffffff }#grid_66e25d8 .portfolio-item .product-info .product-rating .empty-rating:before { border-width: 1px }#grid_66e25d8 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_66e25d8 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button,.grid_66e25d8 .thegem-popup-notification .notification-message a.button,#grid_66e25d8 .portfolio-item.product .actions .button { border-radius: 0px }#grid_66e25d8 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_66e25d8 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button { flex-direction: row }#grid_66e25d8 .portfolio-load-more .gem-button { border-width: 2px }<\/style><style><\/style> <div class=\"portfolio-preloader-wrapper panel-sidebar-position-left \"> <div id=\"grid_66e25d8\" class=\"portfolio portfolio-grid extended-products-grid woocommerce products no-padding portfolio-preset-below-rectangle-button-01 portfolio-pagination-normal portfolio-style-justified background-style-white caption-position-page aspect-ratio-portrait hover-fade title-on-page portfolio-disable-socials columns-desktop-3x columns-tablet-3x columns-mobile-1x disable-isotope \" data-per-page=\"3\" data-current-page=\"1\" data-next-page=\"2\" data-next-tab=\"0\" data-pages-count=\"2\" data-portfolio-uid=\"grid_66e25d8\" data-hover=\"fade\" data-portfolio-filter='' data-portfolio-filter-attributes='null' data-portfolio-filter-status='null' data-portfolio-filter-price='null' data-portfolio-filter-search=''> <div class=\"portfolio-row-outer \"> <div class=\"row portfolio-row clearfix\"> <div class=\"portfolio-set\" data-max-row-height=\"380\"> <div class=\"portfolio-item product shoes-accessories classic col-xs-12 col-sm-4 col-md-4 image-hover post-6628 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-black product_tag-elegant product_tag-lingerie product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6628 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-black product_tag-elegant product_tag-lingerie product_tag-summer\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/46-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Blue Boots\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/28-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"image-hover hover-fade\" alt=\"Blue Boots\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/stylish-blue-boots\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <div class=\"caption post-6628 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-black product_tag-elegant product_tag-lingerie product_tag-summer\"> <div class=\"product-info clearfix\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/stylish-blue-boots\/\">Blue Boots<\/a><\/div> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>2,190.00<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <\/div> <div class=\"portfolio-icons product-bottom clearfix \"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/stylish-blue-boots\/\" data-quantity=\"1\" class=\"cart button product_type_variable add_to_cart_button type_button \" rel=\"nofollow\"> <span>Select Options<\/span> <\/a> <div class=\"icons-top\"> <!-- YITH --> <!-- Sharing --> <\/div> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories classic col-xs-12 col-sm-4 col-md-4 image-hover has-rating post-6631 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-classic product_tag-elegant product_tag-shoes\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6631 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-classic product_tag-elegant product_tag-shoes\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/29-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Floral print\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/30-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"image-hover hover-fade\" alt=\"Floral print\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/floral-print\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <div class=\"caption post-6631 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-classic product_tag-elegant product_tag-shoes\"> <div class=\"product-info clearfix\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/floral-print\/\">Floral print<\/a><\/div> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>99.99<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <\/div> <div class=\"portfolio-icons product-bottom clearfix \"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/floral-print\/\" data-quantity=\"1\" class=\"cart button product_type_variable add_to_cart_button type_button \" rel=\"nofollow\"> <span>Select Options<\/span> <\/a> <div class=\"icons-top\"> <!-- YITH --> <!-- Sharing --> <\/div> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories classic col-xs-12 col-sm-4 col-md-4 image-hover post-6633 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6633 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/47-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Leather bag\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/31-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\" class=\"image-hover hover-fade\" alt=\"Leather bag\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/shirts-variations\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <div class=\"caption post-6633 product type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <div class=\"product-info clearfix\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/shirts-variations\/\">Leather bag<\/a><\/div> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>149.99<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <\/div> <div class=\"portfolio-icons product-bottom clearfix \"> <!-- Add to cart --> <a href=\"?add-to-cart=6633\" data-quantity=\"1\" class=\"cart button product_type_simple add_to_cart_button ajax_add_to_cart type_button \" data-product_id=\"6633\" data-product_sku=\"4565HZ\" aria-label=\"Add Leather bag to your cart\" rel=\"nofollow\"> <span>Add To Cart<\/span> <\/a> <div class=\"icons-top\"> <!-- YITH --> <!-- Sharing --> <\/div> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item product col-xs-12 col-sm-4 col-md-4 size-item post-6633 type-product status-publish has-post-thumbnail product_cat-classic product_cat-shoes-accessories product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"thegem-popup-notification-wrap grid_66e25d8\"> <div class=\"thegem-popup-notification cart\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to cart <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/cart\/\">View Cart<\/a> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/checkout\/\">Checkout<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-add\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to wishlist <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wishlist\/\">View Wishlist<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-remove\" data-timing=\"4000\"> <div class=\"notification-message\"> Item removed from wishlist <\/div> <\/div> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][vc_column css=&#8221;.vc_custom_1632387162213{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 90px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; css=&#8221;.vc_custom_1638972618525{margin-top: 60px !important;margin-bottom: 0px !important;padding-top: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1638972644466{padding-top: 0px !important;}&#8221;]<div id=\"fullwidth-block-69e860dc7b6b5\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 75px;padding-bottom: 50px;padding-left: 21px;padding-right: 21px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69e860dc7b6b5\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/19.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\">[vc_row_inner css=&#8221;.vc_custom_1638972687940{margin-bottom: 0px !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1638972963455{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 25px;\"><\/div>[\/vc_column_inner][\/vc_row_inner][vc_custom_heading text=&#8221;JUST ARRIVED&#8221; font_container=&#8221;tag:h1|font_size:150px|text_align:center|color:rgba(255%2C255%2C255%2C0.1)|line_height:160px&#8221; google_fonts=&#8221;font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal&#8221; css_animation=&#8221;bottom-to-top&#8221; css=&#8221;.vc_custom_1548949107364{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;custom-text&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -120px;\"><\/div>[vc_custom_heading text=&#8221;JUST ARRIVED&#8221; font_container=&#8221;tag:h2|font_size:80px|text_align:center|color:%23f9f4ed|line_height:80px&#8221; google_fonts=&#8221;font_family:Montserrat%20Subrayada%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal&#8221; css_animation=&#8221;bottom-to-top&#8221; css=&#8221;.vc_custom_1548949112932{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221; el_class=&#8221;custom-text&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 30px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h5\" style=\"text-align: center;\"><span style=\"color: #f9f4ed;\">See what&#8217;s next season<\/span><\/div>\n<p>[\/vc_column_text][vc_row_inner css=&#8221;.vc_custom_1638972687940{margin-bottom: 0px !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1638972680258{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[\/vc_column_inner][\/vc_row_inner]<\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; equal_height=&#8221;yes&#8221; css=&#8221;.vc_custom_1551441531281{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column el_class=&#8221;splash-custom-labels crew&#8221;]<style>#grid_ec4ad99 .portfolio-item:not(.size-item) { padding: calc(0px\/2) !important; }#grid_ec4ad99 .portfolio-item.size-item { padding: 0 calc(0px\/2) !important; }#grid_ec4ad99:not(.item-separator) .portfolio-row { margin: calc(-0px\/2); }#grid_ec4ad99.item-separator .portfolio-row { margin: 0 calc(-0px\/2); }#grid_ec4ad99.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-0px\/2) 0; }#grid_ec4ad99.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_ec4ad99 .fullwidth-block:not(.no-paddings) { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99 .fullwidth-block .portfolio-row { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 0px; }.grid_ec4ad99 .portfolio-item { padding: calc(0px\/2); }.grid_ec4ad99 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); }@media (min-width: 768px) { #grid_ec4ad99 .portfolio-item:not(.size-item) { padding: calc(0px\/2) !important; }#grid_ec4ad99 .portfolio-item.size-item { padding: 0 calc(0px\/2) !important; }#grid_ec4ad99:not(.item-separator) .portfolio-row { margin: calc(-0px\/2); }#grid_ec4ad99.item-separator .portfolio-row { margin: 0 calc(-0px\/2); }#grid_ec4ad99.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-0px\/2) 0; }#grid_ec4ad99.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_ec4ad99 .fullwidth-block:not(.no-paddings) { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99 .fullwidth-block .portfolio-row { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 0px; }.grid_ec4ad99 .portfolio-item { padding: calc(0px\/2); }.grid_ec4ad99 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); } }@media (min-width: 992px) { #grid_ec4ad99 .portfolio-item:not(.size-item) { padding: calc(0px\/2) !important; }#grid_ec4ad99 .portfolio-item.size-item { padding: 0 calc(0px\/2) !important; }#grid_ec4ad99:not(.item-separator) .portfolio-row { margin: calc(-0px\/2); }#grid_ec4ad99.item-separator .portfolio-row { margin: 0 calc(-0px\/2); }#grid_ec4ad99.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-0px\/2) 0; }#grid_ec4ad99.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_ec4ad99 .fullwidth-block:not(.no-paddings) { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99 .fullwidth-block .portfolio-row { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 0px; padding-right: 0px; }#grid_ec4ad99.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(0px\/2); padding-right: calc(0px\/2); }#grid_ec4ad99.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 0px; }.grid_ec4ad99 .portfolio-item { padding: calc(0px\/2); }.grid_ec4ad99 .skeleton-posts.portfolio-row { margin: calc(-0px\/2); } }#grid_ec4ad99 .categories { display: none }#grid_ec4ad99 .reviews { display: none }#grid_ec4ad99 .portfolio-item .product-info .product-rating .empty-rating:before { border-width: 1px }#grid_ec4ad99 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_ec4ad99 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button { flex-direction: row }#grid_ec4ad99 .portfolio-load-more .gem-button { border-width: 2px }<\/style><style><\/style><div class=\"preloader save-space\"><div class=\"preloader-spin\"><\/div><\/div> <div class=\"portfolio-preloader-wrapper panel-sidebar-position-left \"> <div id=\"grid_ec4ad99\" class=\"portfolio portfolio-grid extended-products-grid woocommerce products no-padding portfolio-preset-image-default-cart-icon portfolio-pagination-normal portfolio-style-justified background-style-transparent caption-container-preset-dark caption-alignment- caption-position-image aspect-ratio-square hover-fade title-on-page no-gaps hover-title portfolio-disable-socials columns-desktop-4x columns-tablet-4x columns-mobile-2x \" data-per-page=\"4\" data-current-page=\"1\" data-next-page=\"0\" data-next-tab=\"0\" data-pages-count=\"1\" data-portfolio-uid=\"grid_ec4ad99\" data-hover=\"fade\" data-portfolio-filter='' data-portfolio-filter-attributes='null' data-portfolio-filter-status='null' data-portfolio-filter-price='null' data-portfolio-filter-search=''> <div class=\"portfolio-row-outer \"> <div class=\"row portfolio-row clearfix\"> <div class=\"portfolio-set\" data-max-row-height=\"380\"> <div class=\"portfolio-item product clothes crew col-xs-12 col-sm-6 col-md-6 double-item double-item-squared image-hover post-6971 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6971 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-denim product_tag-style product_tag-urban product_tag-washed\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1006-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Washed &#038; Go\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/14-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"image-hover hover-fade\" alt=\"Washed &#038; Go\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6971\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart hide-tablet hide-mobile\" data-product_id=\"6971\" data-product_sku=\"4565HZ-1\" aria-label=\"Add Washed & Go to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6971 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6971\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6971,&quot;parent_product_id&quot;:6971,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6971\" rel=\"nofollow\" data-product-id=\"6971\" data-product-type=\"simple\" data-original-product-id=\"6971\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <\/div> <div class=\"overlay-line\"><\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/washed-go-2\/\">Washed &#038; Go<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>49.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>39.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/washed-go-2\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes crew col-xs-12 col-sm-6 col-md-6 double-item double-item-squared image-hover has-rating post-6970 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6970 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-denim product_tag-glamour product_tag-shorts product_tag-summer\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/32-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Navy Denim Look\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/21-1-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"image-hover hover-fade\" alt=\"Navy Denim Look\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6970\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart hide-tablet hide-mobile\" data-product_id=\"6970\" data-product_sku=\"46373RTE-1\" aria-label=\"Add Navy Denim Look to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6970 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6970\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6970,&quot;parent_product_id&quot;:6970,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6970\" rel=\"nofollow\" data-product-id=\"6970\" data-product-type=\"simple\" data-original-product-id=\"6970\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <\/div> <div class=\"overlay-line\"><\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/navy-denim-look-copy\/\">Navy Denim Look<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>86.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>56.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/navy-denim-look-copy\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes crew col-xs-12 col-sm-6 col-md-6 double-item double-item-squared image-hover has-rating post-6973 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-classic product_tag-elegant product_tag-shoes\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6973 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-classic product_tag-elegant product_tag-shoes\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/34-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Shirt with print\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"image-hover hover-fade\" alt=\"Shirt with print\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6973\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart hide-tablet hide-mobile\" data-product_id=\"6973\" data-product_sku=\"4567EB-1\" aria-label=\"Add Shirt with print to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6973 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6973\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6973,&quot;parent_product_id&quot;:6973,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6973\" rel=\"nofollow\" data-product-id=\"6973\" data-product-type=\"simple\" data-original-product-id=\"6973\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <\/div> <div class=\"overlay-line\"><\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/shirt-with-floral-print\/\">Shirt with print<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>99.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>89.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/shirt-with-floral-print\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes crew col-xs-12 col-sm-6 col-md-6 double-item double-item-squared image-hover post-6972 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6972 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/75-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Leather Bots\" \/> <\/picture> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-s.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-2-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"image-hover hover-fade\" alt=\"Leather Bots\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/leather-bots\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button hide-tablet hide-mobile\" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6972 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6972\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6972,&quot;parent_product_id&quot;:6972,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6972\" rel=\"nofollow\" data-product-id=\"6972\" data-product-type=\"variable\" data-original-product-id=\"6972\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <\/div> <div class=\"overlay-line\"><\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/leather-bots\/\">Leather Bots<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>159.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>150.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/leather-bots\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item product col-xs-6 col-sm-3 col-md-3 size-item post-6972 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-crew product_tag-shirt product_tag-shorts product_tag-style product_tag-urban\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"thegem-popup-notification-wrap grid_ec4ad99\"> <div class=\"thegem-popup-notification cart\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to cart <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/cart\/\">View Cart<\/a> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/checkout\/\">Checkout<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-add\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to wishlist <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wishlist\/\">View Wishlist<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-remove\" data-timing=\"4000\"> <div class=\"notification-message\"> Item removed from wishlist <\/div> <\/div> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1638972997875{margin-top: 0px !important;margin-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1638973022803{padding-top: 0px !important;}&#8221;]<div id=\"fullwidth-block-69e860dc876b4\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 50px;padding-bottom: 50px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69e860dc876b4\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/19.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\">[vc_row_inner css=&#8221;.vc_custom_1638973083963{margin-bottom: 0px !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1638973079300{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 85px;\"><\/div>[\/vc_column_inner][\/vc_row_inner]<div class=\"gem-button-container gem-button-position-center thegem-button-69e860dc87736897 gem-button-with-separator\"  ><div class=\"gem-button-separator gem-button-separator-type-soft-double\"><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #c0a067;\"><\/div><\/div><div class=\"gem-button-separator-button\"><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-normal\"data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;background-color: #c0a067;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#c0a067';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#f3e4d1';this.style.color='#0f0f0f';\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/shop\/\" target=\"_self\">view all products<\/a><\/div><div class=\"gem-button-separator-holder\"><div class=\"gem-button-separator-line\" style=\"border-color: #c0a067;\"><\/div><\/div><\/div><\/div> [vc_row_inner css=&#8221;.vc_custom_1638973083963{margin-bottom: 0px !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1638973079300{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-md vc_hidden-sm vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div>[\/vc_column_inner][\/vc_row_inner]<\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1632383585534{margin-top: 65px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1632383608120{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 65px;\"><\/div>[\/vc_column][vc_column][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f1e9dd;\">BEST SELLING<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider custom-divider-mobile\" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">BEST SELLING<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">products<\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 65px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632383644793{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 35px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632383632352{padding-top: 0px !important;}&#8221;]<style>#grid_c6bfbe7 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_c6bfbe7 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_c6bfbe7:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_c6bfbe7.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_c6bfbe7.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_c6bfbe7.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_c6bfbe7 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_c6bfbe7 .portfolio-item { padding: calc(12px\/2); }.grid_c6bfbe7 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); }@media (min-width: 768px) { #grid_c6bfbe7 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_c6bfbe7 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_c6bfbe7:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_c6bfbe7.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_c6bfbe7.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_c6bfbe7.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_c6bfbe7 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_c6bfbe7 .portfolio-item { padding: calc(12px\/2); }.grid_c6bfbe7 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); } }@media (min-width: 992px) { #grid_c6bfbe7 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_c6bfbe7 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_c6bfbe7:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_c6bfbe7.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_c6bfbe7.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_c6bfbe7.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_c6bfbe7 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_c6bfbe7.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_c6bfbe7 .portfolio-item { padding: calc(12px\/2); }.grid_c6bfbe7 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); } }#grid_c6bfbe7 .portfolio-row-outer.fullwidth-block .portfolio-top-panel, #grid_c6bfbe7 .portfolio-item.not-found .wrap { padding-left: 21px; padding-right: 21px; }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 21px;}@media (min-width: 768px) { #grid_c6bfbe7 .portfolio-row-outer.fullwidth-block .portfolio-top-panel, #grid_c6bfbe7 .portfolio-item.not-found .wrap { padding-left: 21px; padding-right: 21px; }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 21px;}}@media (min-width: 992px) { #grid_c6bfbe7 .portfolio-row-outer.fullwidth-block .portfolio-top-panel, #grid_c6bfbe7 .portfolio-item.not-found .wrap { padding-left: 21px; padding-right: 21px; }#grid_c6bfbe7.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 21px;}}#grid_c6bfbe7 .categories { display: none }#grid_c6bfbe7 .portfolio-item .product-info .product-rating .empty-rating:before { border-width: 1px }#grid_c6bfbe7 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_c6bfbe7 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button { flex-direction: row }#grid_c6bfbe7 .portfolio-load-more .gem-button { border-width: 2px }<\/style><style>#grid_c6bfbe7 .portfolio-filter-tabs.style-default .portfolio-filter-tabs-title { margin-bottom: 100px }<\/style><div class=\"preloader save-space\"><div class=\"preloader-spin\"><\/div><\/div> <div class=\"portfolio-preloader-wrapper panel-sidebar-position-left \"> <div id=\"grid_c6bfbe7\" class=\"portfolio portfolio-grid extended-products-grid woocommerce products no-padding portfolio-preset-hover-default portfolio-pagination-normal portfolio-style-justified background-style-transparent caption-position-hover aspect-ratio-square hover-gradient title-on-hover fullwidth-columns fullwidth-columns-desktop-5 hover-title columns-desktop-5 columns-tablet-3x columns-mobile-2x disable-isotope \" data-per-page=\"10\" data-current-page=\"1\" data-next-page=\"2\" data-next-tab=\"1\" data-pages-count=\"2\" data-portfolio-uid=\"grid_c6bfbe7\" data-hover=\"gradient\" data-portfolio-filter='' data-portfolio-filter-attributes='null' data-portfolio-filter-status='null' data-portfolio-filter-price='null' data-portfolio-filter-search=''> <div class=\"portfolio-row-outer fullwidth-block no-paddings\"> <div class=\"portfolio-top-panel\"> <div class=\"portfolio-filter-tabs style-default alignment- separator\"> <ul class=\"portfolio-filter-tabs-list\"> <li class=\"portfolio-filter-tabs-list-tab active\" data-num=\"1\" data-filter=\"recent\" data-filter-cat=\"\"> Show All <\/li> <li class=\"portfolio-filter-tabs-list-tab \" data-num=\"2\" data-filter=\"categories\" data-filter-cat=\"bags\"> Bags <\/li> <li class=\"portfolio-filter-tabs-list-tab \" data-num=\"3\" data-filter=\"categories\" data-filter-cat=\"glasses\"> Glasses <\/li> <li class=\"portfolio-filter-tabs-list-tab \" data-num=\"4\" data-filter=\"categories\" data-filter-cat=\"shirts\"> Shirts <\/li> <\/ul> <\/div> <\/div> <div class=\"row portfolio-row clearfix\"> <div class=\"portfolio-set\" data-max-row-height=\"380\"> <div class=\"portfolio-item product clothes extravagant shoes-accessories bags col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6589 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-shoes-accessories product_tag-denim product_tag-sexy product_tag-shorts product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6589 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-shoes-accessories product_tag-denim product_tag-sexy product_tag-shorts product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/44-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Denim Shorts\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6589\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6589\" data-product_sku=\"67YER35\" aria-label=\"Add Denim Shorts to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6589 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6589\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6589,&quot;parent_product_id&quot;:6589,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6589\" rel=\"nofollow\" data-product-id=\"6589\" data-product-type=\"simple\" data-original-product-id=\"6589\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Denim+Shorts&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F&#038;description=Denim+Shorts\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F&#038;title=Denim+Shorts&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fdenim-shorts%2F&#038;title=Denim+Shorts\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/denim-shorts\/\">Denim Shorts<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>359.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>259.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/denim-shorts\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-28%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes shirts shoes-accessories bags col-xs-6 col-sm-4 columns-desktop-5 post-6584 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-shirts product_cat-shoes-accessories product_tag-accessories product_tag-bag\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6584 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-shirts product_cat-shoes-accessories product_tag-accessories product_tag-bag\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/43-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Pink Illusion\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6584\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6584\" data-product_sku=\"52733WER\" aria-label=\"Add Pink Illusion to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6584 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6584\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6584,&quot;parent_product_id&quot;:6584,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6584\" rel=\"nofollow\" data-product-id=\"6584\" data-product-type=\"simple\" data-original-product-id=\"6584\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Pink+Illusion&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F&#038;description=Pink+Illusion\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F&#038;title=Pink+Illusion&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fpink-illusion%2F&#038;title=Pink+Illusion\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/pink-illusion\/\">Pink Illusion<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>149.99<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/pink-illusion\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes extravagant shirts col-xs-6 col-sm-4 columns-desktop-5 post-6579 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-extravagant product_cat-shirts product_tag-extravagant product_tag-fashion product_tag-shoes\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6579 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-extravagant product_cat-shirts product_tag-extravagant product_tag-fashion product_tag-shoes\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/42-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Emerald Charms\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6579\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6579\" data-product_sku=\"567323EF\" aria-label=\"Add Emerald Charms to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6579 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6579\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6579,&quot;parent_product_id&quot;:6579,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6579\" rel=\"nofollow\" data-product-id=\"6579\" data-product-type=\"simple\" data-original-product-id=\"6579\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Emerald+Charms&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F&#038;description=Emerald+Charms\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F&#038;title=Emerald+Charms&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia+deserunt+mollit+anim+id+est+laborum.+Sed+ut+perspiciatis+unde+omnis+iste+natus%0D%0A%0D%0A%5Bgem_list+type%3D%22check-style-1%22+color%3D%224%22%5D%0D%0A%3Cul%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ELorem+ipsum+dolor+sit+amet%2C+consectetur+dipisicing+elit%3C%2Fli%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ESed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna%3C%2Fli%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3EAliqua+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco%3C%2Fli%3E%0D%0A+%09%3Cli+style%3D%22color%3A+%23d0a454%3B%22%3ELaboris+nisi+ut+aliquip+ex+ea+commodo+consequat+lorem+ipsum%3C%2Fli%3E%0D%0A%3C%2Ful%3E%0D%0A%5B%2Fgem_list%5D\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Femerald-charms%2F&#038;title=Emerald+Charms\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/emerald-charms\/\">Emerald Charms<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>395.67<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/emerald-charms\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes shirts shoes-accessories bags glasses col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6569 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-glasses product_cat-shirts product_cat-shoes-accessories product_tag-elegant product_tag-lingerie product_tag-white\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6569 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-glasses product_cat-shirts product_cat-shoes-accessories product_tag-elegant product_tag-lingerie product_tag-white\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/41-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"White Sensuality\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6569\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6569\" data-product_sku=\"gfh4kk\" aria-label=\"Add White Sensuality to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6569 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6569\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6569,&quot;parent_product_id&quot;:6569,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6569\" rel=\"nofollow\" data-product-id=\"6569\" data-product-type=\"simple\" data-original-product-id=\"6569\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=White+Sensuality&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F&#038;description=White+Sensuality\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F&#038;title=White+Sensuality&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fwhite-sensuality%2F&#038;title=White+Sensuality\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/white-sensuality\/\">White Sensuality<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>499.00<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/white-sensuality\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes extravagant shoes-accessories bags col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6541 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-shoes-accessories product_tag-accessories product_tag-fashion product_tag-luxary product_tag-style\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6541 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-shoes-accessories product_tag-accessories product_tag-fashion product_tag-luxary product_tag-style\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/56-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Special Sunglasses\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6541\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6541\" data-product_sku=\"563736DE\" aria-label=\"Add Special Sunglasses to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6541 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6541\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6541,&quot;parent_product_id&quot;:6541,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6541\" rel=\"nofollow\" data-product-id=\"6541\" data-product-type=\"simple\" data-original-product-id=\"6541\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Special+Sunglasses&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F&#038;description=Special+Sunglasses\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F&#038;title=Special+Sunglasses&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fspecial-sunglasses%2F&#038;title=Special+Sunglasses\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/special-sunglasses\/\">Special Sunglasses<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>99.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>89.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 4.00 out of 5\"><span style=\"width:80%\">Rated <strong class=\"rating\">4.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/special-sunglasses\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-10%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes shirts shoes-accessories bags col-xs-6 col-sm-4 columns-desktop-5 post-6525 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-shirts product_cat-shoes-accessories product_tag-dress product_tag-style product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6525 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-shirts product_cat-shoes-accessories product_tag-dress product_tag-style product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/55-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Beige Dress\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6525 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6525\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6525,&quot;parent_product_id&quot;:6525,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6525\" rel=\"nofollow\" data-product-id=\"6525\" data-product-type=\"variable\" data-original-product-id=\"6525\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Beige+Dress&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F&#038;description=Beige+Dress\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F&#038;title=Beige+Dress&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fbeige-dress%2F&#038;title=Beige+Dress\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/beige-dress\/\">Beige Dress<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>75.00<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/beige-dress\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label out-of-stock-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">Out of stock<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes extravagant shoes-accessories glasses col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6520 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-extravagant product_cat-glasses product_cat-shoes-accessories product_tag-lingerie product_tag-sexy product_tag-urban\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6520 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-extravagant product_cat-glasses product_cat-shoes-accessories product_tag-lingerie product_tag-sexy product_tag-urban\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/54-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Street Style\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/street-style\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button \" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6520 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6520\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6520,&quot;parent_product_id&quot;:6520,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6520\" rel=\"nofollow\" data-product-id=\"6520\" data-product-type=\"variable\" data-original-product-id=\"6520\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Street+Style&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F&#038;description=Street+Style\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F&#038;title=Street+Style&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat+cillum+dolore+eu+fugiat+nulla.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstreet-style%2F&#038;title=Street+Style\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/street-style\/\">Street Style<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>239.95<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>186.76<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/street-style\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-22%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes shirts shoes-accessories bags glasses col-xs-6 col-sm-4 columns-desktop-5 post-6513 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-glasses product_cat-shirts product_cat-shoes-accessories product_tag-denim product_tag-style product_tag-urban\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6513 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-glasses product_cat-shirts product_cat-shoes-accessories product_tag-denim product_tag-style product_tag-urban\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/53-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Party Queen\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6513\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6513\" data-product_sku=\"56RT2Q\" aria-label=\"Add Party Queen to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6513 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6513\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6513,&quot;parent_product_id&quot;:6513,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6513\" rel=\"nofollow\" data-product-id=\"6513\" data-product-type=\"simple\" data-original-product-id=\"6513\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Party+Queen&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F&#038;description=Party+Queen\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F&#038;title=Party+Queen&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia+deserunt+mollit+anim+id+est+laborum.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fparty-queen%2F&#038;title=Party+Queen\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/party-queen\/\">Party Queen<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>89.99<\/bdi><\/span><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/party-queen\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes extravagant shoes-accessories bags glasses col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6478 type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-glasses product_cat-shoes-accessories product_tag-bag product_tag-elegant product_tag-luxary\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6478 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-clothes product_cat-extravagant product_cat-glasses product_cat-shoes-accessories product_tag-bag product_tag-elegant product_tag-luxary\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/52-1-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Crocodile Dandy\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6478\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6478\" data-product_sku=\"52438Z\" aria-label=\"Add Crocodile Dandy to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6478 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6478\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6478,&quot;parent_product_id&quot;:6478,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6478\" rel=\"nofollow\" data-product-id=\"6478\" data-product-type=\"simple\" data-original-product-id=\"6478\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Crocodile+Dandy&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F&#038;description=Crocodile+Dandy\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F&#038;title=Crocodile+Dandy&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fcrocodile-dandy%2F&#038;title=Crocodile+Dandy\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/crocodile-dandy\/\">Crocodile Dandy<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>176.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>99.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/crocodile-dandy\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-44%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product shoes-accessories bags glasses col-xs-6 col-sm-4 columns-desktop-5 has-rating post-6471 type-product status-publish has-post-thumbnail product_cat-bags product_cat-glasses product_cat-shoes-accessories product_tag-black product_tag-extravagant product_tag-shoes\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6471 product type-product status-publish has-post-thumbnail product_cat-bags product_cat-glasses product_cat-shoes-accessories product_tag-black product_tag-extravagant product_tag-shoes\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-double-m.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/05\/51-thegem-product-justified-square-m.jpg\" width=\"400\" height=\"400\" class=\"attachment-thegem-product-justified-square-m\" alt=\"Blue Seduction\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6471\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6471\" data-product_sku=\"QW63524\" aria-label=\"Add Blue Seduction to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6471 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6471\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6471,&quot;parent_product_id&quot;:6471,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6471\" rel=\"nofollow\" data-product-id=\"6471\" data-product-type=\"simple\" data-original-product-id=\"6471\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Blue+Seduction&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F&#038;description=Blue+Seduction\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F&#038;title=Blue+Seduction&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla.+Duis+aute+irure+dolor+in.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblue-seduction%2F&#038;title=Blue+Seduction\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/blue-seduction\/\">Blue Seduction<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>45.99<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>39.99<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/blue-seduction\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-13%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item product col-xs-6 col-sm-4 columns-desktop-5 size-item post-6471 type-product status-publish has-post-thumbnail product_cat-bags product_cat-glasses product_cat-shoes-accessories product_tag-black product_tag-extravagant product_tag-shoes\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"thegem-popup-notification-wrap grid_c6bfbe7\"> <div class=\"thegem-popup-notification cart\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to cart <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/cart\/\">View Cart<\/a> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/checkout\/\">Checkout<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-add\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to wishlist <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wishlist\/\">View Wishlist<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-remove\" data-timing=\"4000\"> <div class=\"notification-message\"> Item removed from wishlist <\/div> <\/div> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1632384241365{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 60px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1632383849626{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div>[\/vc_column][vc_column][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f1e9dd;\">our brands<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">our brands<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;fadeIn&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">We offer finest brands in our store<\/span><\/h5>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<p style=\"text-align: center; max- width: 1043px; margin: 0 auto;\"><span style=\"color: #0f0f0f;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\/span><\/p>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 24px;\"><\/div><div class=\"fullwidth-block\"> <div class=\"gem-client-set-title\"> <div class=\"container\"> <div class=\"clients_title\"><h3> <\/h3><\/div> <\/div> <\/div> <div class=\"gem_client-carousel disable-grayscale lazy-loading\" > <div class=\"preloader\"> <div class=\"preloader-spin\"><\/div> <\/div> <div class=\" gem_client_carousel-items\" data-autoscroll='0'> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/2-thegem-person.png\" class=\" wp-post-image\" alt=\"2\" \/><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/5-thegem-person.png\" class=\" wp-post-image\" alt=\"5\" \/><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/4-thegem-person.png\" class=\" wp-post-image\" alt=\"4\" \/><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/3-thegem-person.png\" class=\" wp-post-image\" alt=\"3\" \/><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/6-thegem-person.png\" class=\" wp-post-image\" alt=\"6\" \/><\/div> <div class=\"gem-client-item lazy-loading-item\" data-ll-effect=\"drop-right\"> <img width=\"400\" height=\"400\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/1-thegem-person.png\" class=\" wp-post-image\" alt=\"1\" \/><\/div> <\/div> <\/div> <\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632384249334{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 100px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1548924229743{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69e860dc9c237\" class=\"fullwidth-block fullwidth-block-parallax-vertical clearfix\" data-mobile-parallax-enable=\"0\" style=\"padding-top: 140px;padding-bottom: 140px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69e860dc9c237\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2021\/08\/1018.jpg);background-repeat: no-repeat; background-size: cover;background-position: center center;\"><\/div><div class=\"fullwidth-block-inner\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: rgba(249,244,237,0.15);\">FOLLOW us<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\"><span style=\"color: #f9f4ed;\">happy clients<\/span><\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #f9f4ed;\">customers about us<\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 105px;\"><\/div><div class=\"preloader\"><div class=\"preloader-spin\"><\/div><\/div><div class=\"size-medium style1 gem-testimonials fullwidth-block\" style=background-color:> <div id=\"post-6827\" class=\"gem-testimonial-item post-6827 thegem_testimonial type-thegem_testimonial status-publish has-post-thumbnail\"> <div class=\"gem-testimonial-wrapper quote-color-added \"> <div class=\"gem-testimonial-image\"> <img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/24-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"24\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/24-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #d0a454\">Jeniffer Burns<\/div> <div class=\"gem-testimonial-company\" style=\"color: #aaaaaa\">Creative Heads Inc.<\/div> <div class=\"gem-testimonial-text\" style=\"color: #ffffff\"> <div class=\"styled-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.<\/div> <\/div> <\/div> <span style=\"color: #eed9bf \" class=\"custom-color-blockqute-mark\">&#xe60c;<\/span> <\/div> <\/div> <div id=\"post-6828\" class=\"gem-testimonial-item post-6828 thegem_testimonial type-thegem_testimonial status-publish has-post-thumbnail\"> <div class=\"gem-testimonial-wrapper quote-color-added \"> <div class=\"gem-testimonial-image\"> <img width=\"160\" height=\"160\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/28-thegem-person-160.jpg\" class=\"img-responsive img-circle wp-post-image\" alt=\"28\" srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/28-thegem-testimonial.jpg 2x\" sizes=\"100vw\" \/> <\/div> <div class=\"gem-testimonial-content\"> <div class=\"gem-testimonial-name\" style=\"color: #d0a454\">Mark Anderson<\/div> <div class=\"gem-testimonial-position\" style=\"color: #aaaaaa\">Creative Heads Inc.<\/div> <div class=\"gem-testimonial-text\" style=\"color: #ffffff\"> <div class=\"styled-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.<\/div> <\/div> <\/div> <span style=\"color: #eed9bf \" class=\"custom-color-blockqute-mark\">&#xe60c;<\/span> <\/div> <\/div> <div class=\"testimonials_svg\"><svg style=\"fill: \" width=\"100\" height=\"50\"><path d=\"M 0,-1 Q 45,5 50,50 Q 55,5 100,-1\" \/><\/svg><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1632384779211{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 65px !important;padding-bottom: 70px !important;}&#8221;][vc_column css=&#8221;.vc_custom_1632384627805{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 85px;\"><\/div>[\/vc_column][vc_column el_class=&#8221;splash-custom-labels your-look&#8221;][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: #f1e9dd;\">Refresh your look<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">Refresh your look<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<h5 style=\"text-align: center;\"><span style=\"color: #000000;\">with these quality pieces from the Spring-Summer Collection<\/span><\/h5>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 60px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632384666566{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[\/vc_column][vc_column css=&#8221;.vc_custom_1632384657589{padding-top: 0px !important;}&#8221;]<style>#grid_d6a5f98 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_d6a5f98 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_d6a5f98:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_d6a5f98.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_d6a5f98.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_d6a5f98.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_d6a5f98 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_d6a5f98 .portfolio-item { padding: calc(12px\/2); }.grid_d6a5f98 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); }@media (min-width: 768px) { #grid_d6a5f98 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_d6a5f98 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_d6a5f98:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_d6a5f98.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_d6a5f98.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_d6a5f98.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_d6a5f98 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_d6a5f98 .portfolio-item { padding: calc(12px\/2); }.grid_d6a5f98 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); } }@media (min-width: 992px) { #grid_d6a5f98 .portfolio-item:not(.size-item) { padding: calc(12px\/2) !important; }#grid_d6a5f98 .portfolio-item.size-item { padding: 0 calc(12px\/2) !important; }#grid_d6a5f98:not(.item-separator) .portfolio-row { margin: calc(-12px\/2); }#grid_d6a5f98.item-separator .portfolio-row { margin: 0 calc(-12px\/2); }#grid_d6a5f98.fullwidth-columns:not(.item-separator) .portfolio-row { margin: calc(-12px\/2) 0; }#grid_d6a5f98.fullwidth-columns.item-separator .portfolio-row { margin: 0; }#grid_d6a5f98 .fullwidth-block:not(.no-paddings) { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98 .fullwidth-block .portfolio-row { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98:not(.item-separator) .fullwidth-block .portfolio-top-panel { padding-left: 12px; padding-right: 12px; }#grid_d6a5f98.item-separator .fullwidth-block .portfolio-top-panel { padding-left: calc(12px\/2); padding-right: calc(12px\/2); }#grid_d6a5f98.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 12px; }.grid_d6a5f98 .portfolio-item { padding: calc(12px\/2); }.grid_d6a5f98 .skeleton-posts.portfolio-row { margin: calc(-12px\/2); } }#grid_d6a5f98 .categories { display: none }#grid_d6a5f98 .portfolio-item .product-info .product-rating .empty-rating:before { border-width: 1px }#grid_d6a5f98 .portfolio-item .wrap > .caption .product-bottom .add_to_cart_button.type_button,#grid_d6a5f98 .portfolio-item .image .overlay .links .caption .add_to_cart_button.type_button { flex-direction: row }#grid_d6a5f98 .portfolio-load-more .gem-button { border-width: 2px }<\/style><style><\/style><div class=\"preloader save-space\"><div class=\"preloader-spin\"><\/div><\/div> <div class=\"portfolio-preloader-wrapper panel-sidebar-position-left \"> <div id=\"grid_d6a5f98\" class=\"portfolio portfolio-grid extended-products-grid woocommerce products no-padding portfolio-preset-hover-default portfolio-pagination-normal portfolio-style-justified background-style-transparent caption-position-hover aspect-ratio-square hover-zooming-blur title-on-hover hover-title columns-desktop-4x columns-tablet-3x columns-mobile-2x \" data-per-page=\"6\" data-current-page=\"1\" data-next-page=\"0\" data-next-tab=\"0\" data-pages-count=\"1\" data-portfolio-uid=\"grid_d6a5f98\" data-hover=\"zooming-blur\" data-portfolio-filter='' data-portfolio-filter-attributes='null' data-portfolio-filter-status='null' data-portfolio-filter-price='null' data-portfolio-filter-search=''> <div class=\"portfolio-row-outer \"> <div class=\"row portfolio-row clearfix\"> <div class=\"portfolio-set\" data-max-row-height=\"380\"> <div class=\"portfolio-item product clothes fashion col-xs-12 col-sm-8 col-md-6 double-item double-item-squared has-rating post-4952 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-black product_tag-elegant product_tag-lace product_tag-lingerie\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-4952 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-black product_tag-elegant product_tag-lace product_tag-lingerie\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/37-1-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Black Dreams\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/black-dreams\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button \" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-4952 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"4952\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:4952,&quot;parent_product_id&quot;:4952,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=4952\" rel=\"nofollow\" data-product-id=\"4952\" data-product-type=\"variable\" data-original-product-id=\"4952\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Black+Dreams&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F&#038;description=Black+Dreams\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F&#038;title=Black+Dreams&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fblack-dreams%2F&#038;title=Black+Dreams\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/black-dreams\/\">Black Dreams<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>123.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>100.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 4.00 out of 5\"><span style=\"width:80%\">Rated <strong class=\"rating\">4.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/black-dreams\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-19%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes fashion shirts col-xs-6 col-sm-4 col-md-3 post-5149 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_cat-shirts product_tag-dress product_tag-elegant product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-5149 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_cat-shirts product_tag-dress product_tag-elegant product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/36-1-thegem-product-justified-square-s.jpg\" width=\"300\" height=\"300\" class=\"attachment-thegem-product-justified-square-s\" alt=\"Urban Gem-Shirt\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=5149\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"5149\" data-product_sku=\"4565HZ\" aria-label=\"Add Urban Gem-Shirt to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5149 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"5149\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5149,&quot;parent_product_id&quot;:5149,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=5149\" rel=\"nofollow\" data-product-id=\"5149\" data-product-type=\"simple\" data-original-product-id=\"5149\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Urban+Gem-Shirt&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F&#038;description=Urban+Gem-Shirt\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F&#038;title=Urban+Gem-Shirt&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia+deserunt+mollit+anim+id+est+laborum.+Sed+ut+perspiciatis+unde+omnis+iste+natus%0D%0A\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Furban-gem-shirt%2F&#038;title=Urban+Gem-Shirt\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/urban-gem-shirt\/\">Urban Gem-Shirt<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>55.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>45.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/urban-gem-shirt\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-18%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes fashion col-xs-6 col-sm-4 col-md-3 has-rating post-5494 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-5494 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/35-1-thegem-product-justified-square-s.jpg\" width=\"300\" height=\"300\" class=\"attachment-thegem-product-justified-square-s\" alt=\"Stylish Sunglasses\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5494 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"5494\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5494,&quot;parent_product_id&quot;:5494,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=5494\" rel=\"nofollow\" data-product-id=\"5494\" data-product-type=\"simple\" data-original-product-id=\"5494\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Stylish+Sunglasses&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F&#038;description=Stylish+Sunglasses\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F&#038;title=Stylish+Sunglasses&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat.\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fstylish-sunglasses%2F&#038;title=Stylish+Sunglasses\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/stylish-sunglasses\/\">Stylish Sunglasses<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>100.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>67.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/stylish-sunglasses\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label out-of-stock-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">Out of stock<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-33%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product fashion col-xs-12 col-sm-8 col-md-6 double-item double-item-squared has-rating post-6300 type-product status-publish has-post-thumbnail product_cat-fashion product_tag-dress product_tag-elegant product_tag-evening product_tag-princess\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6300 product type-product status-publish has-post-thumbnail product_cat-fashion product_tag-dress product_tag-elegant product_tag-evening product_tag-princess\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/40-1-thegem-product-justified-square-double-s.jpg\" width=\"600\" height=\"600\" class=\"attachment-thegem-product-justified-square-double-s\" alt=\"Princess Eve\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6300\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6300\" data-product_sku=\"HJ345T\" aria-label=\"Add Princess Eve to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6300 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6300\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6300,&quot;parent_product_id&quot;:6300,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6300\" rel=\"nofollow\" data-product-id=\"6300\" data-product-type=\"simple\" data-original-product-id=\"6300\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Princess+Eve&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F&#038;description=Princess+Eve\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F&#038;title=Princess+Eve&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla+pariatur.+Excepteur+sint+occaecat+cupidatat+non+proident%2C+sunt+in+culpa+qui+officia+deserunt+mollit+anim+id+est+laborum.+Sed+ut+perspiciatis+unde+omnis+iste+natus.%0D%0A\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fprincess-eve%2F&#038;title=Princess+Eve\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/princess-eve\/\">Princess Eve<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>200.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>160.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 4.00 out of 5\"><span style=\"width:80%\">Rated <strong class=\"rating\">4.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/princess-eve\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-20%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes fashion col-xs-6 col-sm-4 col-md-3 post-5503 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-extravagant product_tag-fashion product_tag-shoes\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-5503 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-extravagant product_tag-fashion product_tag-shoes\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/38-thegem-product-justified-square-s.jpg\" width=\"300\" height=\"300\" class=\"attachment-thegem-product-justified-square-s\" alt=\"Exclusive Shoes\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/exclusive-shoes\/\" data-quantity=\"1\" class=\"icon cart button product_type_variable add_to_cart_button \" rel=\"nofollow\"> <i class=\"default\"><\/i> Select options <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-5503 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"5503\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:5503,&quot;parent_product_id&quot;:5503,&quot;product_type&quot;:&quot;variable&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=5503\" rel=\"nofollow\" data-product-id=\"5503\" data-product-type=\"variable\" data-original-product-id=\"5503\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Exclusive+Shoes&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F&#038;description=Exclusive+Shoes\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F&#038;title=Exclusive+Shoes&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fexclusive-shoes%2F&#038;title=Exclusive+Shoes\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/exclusive-shoes\/\">Exclusive Shoes<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>55.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>50.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/exclusive-shoes\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-9%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item product clothes fashion col-xs-6 col-sm-4 col-md-3 has-rating post-6064 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-dress product_tag-elegant product_tag-summer\"> <div class=\"item-separator-box\"><\/div> <div class=\"actions woocommerce_before_shop_loop_item\"> <\/div> <div class=\"wrap clearfix\"> <div class=\"image post-6064 product type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-dress product_tag-elegant product_tag-summer\"> <div class=\"image-inner fallback-zooming\"> <picture> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 767px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-m.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-double-m.jpg 2x\" media=\"(max-width: 992px)\" sizes=\"100vw\"> <source srcset=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-s.jpg 1x, https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-double-s.jpg 2x\" sizes=\"100vw\"> <img src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2016\/02\/39-1-thegem-product-justified-square-s.jpg\" width=\"300\" height=\"300\" class=\"attachment-thegem-product-justified-square-s\" alt=\"Summer Feeling\" \/> <\/picture> <\/div> <div class=\"overlay\"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons product-bottom\"> <div class=\"portfolio-icons-inner clearfix\"> <!-- Add to cart --> <a href=\"?add-to-cart=6064\" data-quantity=\"1\" class=\"icon cart button product_type_simple add_to_cart_button ajax_add_to_cart \" data-product_id=\"6064\" data-product_sku=\"4569HZ\" aria-label=\"Add Summer Feeling to your cart\" rel=\"nofollow\"> <i class=\"default\"><\/i> Add to cart <\/a> <!-- YITH --> <span class=\"icon yith-icon\"> <i class=\"add-wishlist-icon default\"><\/i> <i class=\"added-wishlist-icon default\"><\/i> <div class=\"yith-wcwl-add-to-wishlist add-to-wishlist-6064 gem-list-wl-button wishlist-fragment on-first-load\" data-fragment-ref=\"6064\" data-fragment-options=\"{&quot;base_url&quot;:&quot;&quot;,&quot;in_default_wishlist&quot;:false,&quot;is_single&quot;:false,&quot;show_exists&quot;:false,&quot;product_id&quot;:6064,&quot;parent_product_id&quot;:6064,&quot;product_type&quot;:&quot;simple&quot;,&quot;show_view&quot;:false,&quot;browse_wishlist_text&quot;:&quot;Browse Wishlist&quot;,&quot;already_in_wishslist_text&quot;:&quot;The product is already in the wishlist!&quot;,&quot;product_added_text&quot;:&quot;Product added!&quot;,&quot;heading_icon&quot;:&quot;&quot;,&quot;available_multi_wishlist&quot;:false,&quot;disable_wishlist&quot;:false,&quot;show_count&quot;:false,&quot;ajax_loading&quot;:false,&quot;loop_position&quot;:&quot;after_add_to_cart&quot;,&quot;item&quot;:&quot;add_to_wishlist&quot;}\"\n> <!-- ADD TO WISHLIST --> <div class=\"yith-wcwl-add-button\"> <a href=\"?add_to_wishlist=6064\" rel=\"nofollow\" data-product-id=\"6064\" data-product-type=\"simple\" data-original-product-id=\"6064\" class=\"add_to_wishlist single_add_to_wishlist\" data-title=\"Add to Wishlist\"> <span>Add to Wishlist<\/span> <\/a> <\/div> <!-- COUNT TEXT --> <\/div> <\/span> <a href=\"javascript: void(0);\" class=\"icon share\"> <i class=\"default\"><\/i> <\/a> <\/div> <div class=\"overlay-line\"><\/div> <div class=\"portfolio-sharing-pane\"> <div class=\"socials-sharing socials socials-colored-hover \"> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F\" title=\"Facebook\"><i class=\"socials-item-icon facebook\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/twitter.com\/intent\/tweet?text=Summer+Feeling&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F\" title=\"Twitter\"><i class=\"socials-item-icon twitter\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F&#038;description=Summer+Feeling\" title=\"Pinterest\"><i class=\"socials-item-icon pinterest\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"http:\/\/tumblr.com\/widgets\/share\/tool?canonicalUrl=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F\" title=\"Tumblr\"><i class=\"socials-item-icon tumblr\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F&#038;title=Summer+Feeling&amp;summary=Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipisicing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.+Duis+aute+irure+dolor+in+reprehenderit+in+voluptate+velit+esse+cillum+dolore+eu+fugiat+nulla\" title=\"LinkedIn\"><i class=\"socials-item-icon linkedin\"><\/i><\/a> <a class=\"socials-item\" target=\"_blank\" href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fcodex-themes.com%2Fthegem%2Fsites%2Fshop-landing%2Fproduct%2Fsummer-feeling%2F&#038;title=Summer+Feeling\" title=\"Reddit\"><i class=\"socials-item-icon reddit\"><\/i><\/a> <\/div> <\/div> <\/div> <div class=\"caption\"> <div class=\"actions woocommerce_before_shop_loop_item_title\"> <\/div> <div class=\"title title-h4\"> <a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/summer-feeling\/\">Summer Feeling<\/a> <\/div> <div class=\"product-info clearfix \"> <div class=\"actions woocommerce_shop_loop_item_title\"> <\/div> <div class=\"product-price\"><span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>33.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>29.00<\/bdi><\/span><\/ins><\/span><\/div> <div class=\"actions woocommerce_after_shop_loop_item_title\"> <\/div> <div class=\"reviews\"><div class=\"product-rating\"><div class=\"star-rating\" role=\"img\" aria-label=\"Rated 5.00 out of 5\"><span style=\"width:100%\">Rated <strong class=\"rating\">5.00<\/strong> out of 5<\/span><\/div><\/div><\/div> <div class=\"actions woocommerce_after_shop_loop_item\"> <\/div> <\/div> <\/div> <\/div> <\/div> <a class=\"product-link\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/product\/summer-feeling\/\"><\/a> <\/div> <\/div> <div class=\"labels-outer \"> <div class=\"product-labels style-4\"> <span class=\"label onsale title-h6\"><span class=\"rotate-back\"><span class=\"text\">-12%<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><svg height=\"100%\" viewBox=\"0 0 4 19\" preserveAspectRatio=\"none\" shape-rendering=\"geometricPrecision\"><polygon points=\"0,0 0,19 4,0 \"\/><\/svg><\/span> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-3 size-item post-6064 type-product status-publish has-post-thumbnail product_cat-clothes product_cat-fashion product_tag-dress product_tag-elegant product_tag-summer\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"thegem-popup-notification-wrap grid_d6a5f98\"> <div class=\"thegem-popup-notification cart\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to cart <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/cart\/\">View Cart<\/a> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/checkout\/\">Checkout<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-add\" data-timing=\"4000\"> <div class=\"notification-message\"> Item added to wishlist <span class=\"buttons\"> <a class=\"button\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wishlist\/\">View Wishlist<\/a> <\/span> <\/div> <\/div> <div class=\"thegem-popup-notification wishlist-remove\" data-timing=\"4000\"> <div class=\"notification-message\"> Item removed from wishlist <\/div> <\/div> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column][vc_column css=&#8221;.vc_custom_1632384741347{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 80px;\"><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; css=&#8221;.vc_custom_1638973200528{margin-top: 0px !important;margin-bottom: 0px !important;}&#8221;][vc_column]<div id=\"fullwidth-block-69e860dca8ddb\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 115px;padding-bottom: 110px;padding-left: 21px;padding-right: 21px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69e860dca8ddb\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/19.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\">[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-xlarge\" style=\"text-align: center;\"><span style=\"color: rgba(249,244,237,0.15);\">Sign up to newsletter<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: -100px;\"><\/div>[vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\"><span style=\"color: #f9f4ed;\">Sign up to newsletter<\/span><\/div>\n<p>[\/vc_column_text]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[vc_row_inner][vc_column_inner width=&#8221;1\/3&#8243; offset=&#8221;vc_col-lg-4 vc_col-md-2 vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-4 vc_col-md-8&#8243;][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]\n\t<section id=\"yikes-mailchimp-container-1\" class=\"yikes-mailchimp-container yikes-mailchimp-container-1 \">\n\t\t\t\t<form id=\"page-newsletter-1\" class=\"yikes-easy-mc-form yikes-easy-mc-form-1 yikes-mailchimp-form-inline  page-newsletter\" method=\"POST\" data-attr-form-id=\"1\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"yikes-easy-mc-form-1-EMAIL\"  class=\"label-inline EMAIL-label yikes-mailchimp-field-required \">\n\n\t\t\t\t\t\t\t\t\t\t<!-- dictate label visibility -->\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<!-- Description Above -->\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<input id=\"yikes-easy-mc-form-1-EMAIL\"  name=\"EMAIL\"  placeholder=\"Your email adress\"  class=\"yikes-easy-mc-email field-no-label\"  required=\"required\" type=\"email\"  value=\"\">\n\n\t\t\t\t\t\t\t\t\t\t<!-- Description Below -->\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t<!-- Honeypot Trap -->\n\t\t\t\t<input type=\"hidden\" name=\"yikes-mailchimp-honeypot\" id=\"yikes-mailchimp-honeypot-1\" value=\"\">\n\n\t\t\t\t<!-- List ID -->\n\t\t\t\t<input type=\"hidden\" name=\"yikes-mailchimp-associated-list-id\" id=\"yikes-mailchimp-associated-list-id-1\" value=\"7718c3133e\">\n\n\t\t\t\t<!-- The form that is being submitted! Used to display error\/success messages above the correct form -->\n\t\t\t\t<input type=\"hidden\" name=\"yikes-mailchimp-submitted-form\" id=\"yikes-mailchimp-submitted-form-1\" value=\"1\">\n\n\t\t\t\t<!-- Submit Button -->\n\t\t\t\t<label class=\"empty-form-inline-label submit-button-inline-label\"><span class=\"empty-label labels-hidden\">&nbsp;<\/span><button type=\"submit\" class=\"yikes-easy-mc-submit-button yikes-easy-mc-submit-button-1 btn btn-primary  gem-button\"> <span class=\"yikes-mailchimp-submit-button-span-text\">sign up<\/span><\/button><\/label>\t\t\t\t<!-- Nonce Security Check -->\n\t\t\t\t<input type=\"hidden\" id=\"yikes_easy_mc_new_subscriber_1\" name=\"yikes_easy_mc_new_subscriber\" value=\"0b95f6306b\">\n\t\t\t\t<input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/pages\/6643\" \/>\t\t\t\t\n\t\t\t<\/form>\n\t\t\t<!-- Mailchimp Form generated by Easy Forms for Mailchimp v6.8.5 (https:\/\/wordpress.org\/plugins\/yikes-inc-easy-mailchimp-extender\/) -->\n\n\t\t\t<\/section>\n\t[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243; offset=&#8221;vc_col-lg-4 vc_col-md-2 vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column_inner][\/vc_row_inner]<\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; css=&#8221;.vc_custom_1599222202336{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-color: #f1e9dd !important;}&#8221;][vc_column css=&#8221;.vc_custom_1548945274306{background-color: #eed9bf !important;}&#8221; offset=&#8221;vc_col-lg-7 vc_col-md-7&#8243;]<div id=\"fullwidth-block-69e860dca9201\" class=\"fullwidth-block clearfix\"  style=\"padding-top: 30px;padding-bottom: 25px;\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-69e860dca9201\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner content_placement=&#8221;middle&#8221;][vc_column_inner css=&#8221;.vc_custom_1632386105455{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 70px;\"><\/div>[\/vc_column_inner][vc_column_inner offset=&#8221;vc_hidden-lg vc_hidden-md&#8221; css=&#8221;.vc_custom_1632386806464{margin-bottom: 50px !important;}&#8221;][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">latest news<br \/>\nfrom the blog<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h5\" style=\"text-align: center;\">Stay in touch recent events<\/div>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner css=&#8221;.vc_custom_1632386813376{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 50px;\"><\/div>[\/vc_column_inner][vc_column_inner disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; offset=&#8221;vc_col-lg-6 vc_col-md-6&#8243;]<div class=\"blog blog-style-compact clearfix item-animation-move-up\" data-next-page=\"0\"> <article id=\"post-8132\" class=\"no-image item-animations-not-inited clearfix post-8132 post type-post status-publish format-standard has-post-thumbnail category-latest-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/lookbook-post\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/27-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"27\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/lookbook-post\/\" rel=\"bookmark\">05 Nov: <span class=\"light\">Lookbook Post<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-8132 --> <article id=\"post-8130\" class=\"no-image item-animations-not-inited clearfix post-8130 post type-post status-publish format-standard has-post-thumbnail category-latest-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/fashion-post\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/26-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"26\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/fashion-post\/\" rel=\"bookmark\">05 Nov: <span class=\"light\">Fashion Post<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-8130 --> <article id=\"post-6867\" class=\"no-image item-animations-not-inited clearfix post-6867 post type-post status-publish format-standard has-post-thumbnail category-latest-news tag-brands tag-clothes tag-fashion tag-online tag-perfect tag-woman\"> <div class=\"gem-compact-item-left\"> <div class=\"gem-compact-item-image\"> <a class=\"default\" href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/new-trands\/\"><img width=\"366\" height=\"296\" src=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-content\/uploads\/2017\/08\/28-thegem-blog-compact.jpg\" class=\"img-responsive wp-post-image\" alt=\"28\" \/><\/a> <\/div> <\/div> <div class=\"gem-compact-item-right\"> <div class=\"gem-compact-item-content\"> <div class=\"post-title\"> <h5 class=\"entry-title reverse-link-color\"><a href=\"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/new-trands\/\" rel=\"bookmark\">28 Aug: <span class=\"light\">New Trends<\/span><\/a><\/h5> <\/div> <div class=\"post-text\"> <div class=\"summary\"> <p>Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bi bendum auctor, nisi elit consequat ipsum<\/p> <\/div> <\/div> <\/div> <div class=\"post-meta date-color\"> <div class=\"entry-meta clearfix gem-post-date\"> <div class=\"post-meta-right\"> <\/div> <div class=\"post-meta-left\"> <span class=\"post-meta-author\">By John Doe<\/span> <\/div> <\/div><!-- .entry-meta --> <\/div> <\/div> <\/article><!-- #post-6867 --> <\/div>[\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_hidden-xs&#8221;][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h1\" style=\"text-align: center;\">latest news<br \/>\nfrom the blog<\/div>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;bottom-to-top&#8221;]<\/p>\n<div class=\"title-h5\" style=\"text-align: center;\">Stay in touch recent events<\/div>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner css=&#8221;.vc_custom_1632386680912{padding-top: 0px !important;}&#8221; offset=&#8221;vc_hidden-xs&#8221;]<div class=\"clearboth\"><\/div><div class=\"gem-divider \" style=\"margin-top: 55px;\"><\/div>[\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;5\/12&#8243; offset=&#8221;vc_col-lg-5 vc_col-md-5 vc_hidden-sm vc_hidden-xs&#8221;][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; ken_burns_direction=&#8221;zoom_out&#8221; ken_burns_transition_speed=&#8221;15000&#8243; ken_burns_enabled=&#8221;true&#8221; css=&#8221;.vc_custom_1638441875010{margin-bottom: 0px !important;padding-top: 185px !important;padding-bottom: 190px !important;}&#8221; ken_burns_image=&#8221;9410&#8243; el_class=&#8221;custom-bg&#8221;][vc_column css=&#8221;.vc_custom_1638441370854{padding-top: 0px !important;}&#8221;][\/vc_column][vc_column css=&#8221;.vc_custom_1638436971642{margin-top: 21px !important;margin-left:&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/pages\/6643"}],"collection":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/comments?post=6643"}],"version-history":[{"count":641,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/pages\/6643\/revisions"}],"predecessor-version":[{"id":9840,"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/pages\/6643\/revisions\/9840"}],"wp:attachment":[{"href":"https:\/\/codex-themes.com\/thegem\/sites\/shop-landing\/wp-json\/wp\/v2\/media?parent=6643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}