It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://thekoda.online/

  1. <!doctype html>
  2.  
  3. <html class="no-js" lang="en" dir="ltr">
  4.  <head>
  5. <!-- Added by HKTApps -->
  6. <script>
  7.    var HKTSeoApps = HKTSeoApps || {};
  8.    
  9.    HKTSeoApps.theme = "Impact-premium-theme | OPT";
  10.  
  11.    function hktappsMakeRequest(url, method = 'GET', data = null) {
  12.        // Create the XHR request
  13.        const request = new XMLHttpRequest();
  14.  
  15.        // Return it as a Promise
  16.        return new Promise(function(resolve, reject) {
  17.            // Setup our listener to process completed requests
  18.            request.onreadystatechange = function() {
  19.                // Only run if the request is complete
  20.                if (request.readyState !== 4) return;
  21.  
  22.                // Process the response
  23.                if (
  24.                    request.status >= 200 &&
  25.                    request.status < 300 &&
  26.                    request.status !== 204
  27.                ) {
  28.                    resolve(JSON.parse(request.responseText));
  29.                } else {
  30.                    // If failed
  31.                    // eslint-disable-next-line prefer-promise-reject-errors
  32.                    reject({
  33.                        status: request.status,
  34.                        statusText: request.statusText
  35.                    });
  36.                }
  37.            };
  38.  
  39.            // Setup our HTTP request
  40.            request.open(method, url, true);
  41.  
  42.            // Send the request
  43.            if (data) {
  44.                request.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');
  45.                request.send(JSON.stringify(data));
  46.            } else {
  47.                request.send(data);
  48.            }
  49.        });
  50.    }
  51.    (function(funcName, baseObj) {
  52.        // The public function name defaults to window.docReady
  53.        // but you can pass in your own object and own function name and those will be used
  54.        // if you want to put them in a different namespace
  55.        funcName = funcName || "docReady";
  56.        baseObj = baseObj || window;
  57.        var readyList = [];
  58.        var readyFired = false;
  59.        var readyEventHandlersInstalled = false;
  60.  
  61.        // call this when the document is ready
  62.        // this function protects itself against being called more than once
  63.        function ready() {
  64.            if (!readyFired) {
  65.                // this must be set to true before we start calling callbacks
  66.                readyFired = true;
  67.                for (var i = 0; i < readyList.length; i++) {
  68.                    // if a callback here happens to add new ready handlers,
  69.                    // the docReady() function will see that it already fired
  70.                    // and will schedule the callback to run right after
  71.                    // this event loop finishes so all handlers will still execute
  72.                    // in order and no new ones will be added to the readyList
  73.                    // while we are processing the list
  74.                    readyList[i].fn.call(window, readyList[i].ctx);
  75.                }
  76.                // allow any closures held by these functions to free
  77.                readyList = [];
  78.            }
  79.        }
  80.  
  81.        function readyStateChange() {
  82.            if ( document.readyState === "complete" ) {
  83.                ready();
  84.            }
  85.        }
  86.  
  87.        // This is the one public interface
  88.        // docReady(fn, context);
  89.        // the context argument is optional - if present, it will be passed
  90.        // as an argument to the callback
  91.        baseObj[funcName] = function(callback, context) {
  92.            if (typeof callback !== "function") {
  93.                throw new TypeError("callback for docReady(fn) must be a function");
  94.            }
  95.            // if ready has already fired, then just schedule the callback
  96.            // to fire asynchronously, but right away
  97.            if (readyFired) {
  98.                setTimeout(function() {callback(context);}, 1);
  99.                return;
  100.            } else {
  101.                // add the function and context to the list
  102.                readyList.push({fn: callback, ctx: context});
  103.            }
  104.            // if document already ready to go, schedule the ready function to run
  105.            if (document.readyState === "complete") {
  106.                setTimeout(ready, 1);
  107.            } else if (!readyEventHandlersInstalled) {
  108.                // otherwise if we don't have event handlers installed, install them
  109.                if (document.addEventListener) {
  110.                    // first choice is DOMContentLoaded event
  111.                    document.addEventListener("DOMContentLoaded", ready, false);
  112.                    // backup is window load event
  113.                    window.addEventListener("load", ready, false);
  114.                } else {
  115.                    // must be IE
  116.                    document.attachEvent("onreadystatechange", readyStateChange);
  117.                    window.attachEvent("onload", ready);
  118.                }
  119.                readyEventHandlersInstalled = true;
  120.            }
  121.        }
  122.    })("hktappsDocReady", window);
  123. </script>
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.    
  157.  
  158. <!-- Added by HKTApps  -->
  159. <script type="application/ld-json">{
  160.  "@context": "https://schema.org",
  161.  "@type": "BreadcrumbList",
  162.  "itemListElement": [{
  163.    "@type": "ListItem",
  164.    "position": 1,
  165.    "name": "Home",
  166.    "item": "https://thekoda.online"
  167.  }]
  168. }
  169. </script>
  170. <!-- Added by HKTApps -->
  171.  
  172.  
  173.  
  174.  
  175.    
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.    
  189.  
  190. <!-- hktapps-instant-page -->
  191. <script type="module">
  192.    let urlToPreload
  193.    let mouseoverTimer
  194.    let lastTouchTimestamp
  195.  
  196.    const prefetcher = document.createElement('link')
  197.    const isSupported = prefetcher.relList && prefetcher.relList.supports && prefetcher.relList.supports('prefetch')
  198.    const isDataSaverEnabled = navigator.connection && navigator.connection.saveData
  199.    const allowQueryString = 'instantAllowQueryString' in document.body.dataset
  200.    const allowExternalLinks = 'instantAllowExternalLinks' in document.body.dataset
  201.    const useWhitelist = 'instantWhitelist' in document.body.dataset
  202.  
  203.    let delayOnHover = 65
  204.    let useMousedown = false
  205.    let useMousedownOnly = false
  206.    if ('instantIntensity' in document.body.dataset) {
  207.        if (document.body.dataset.instantIntensity.substr(0, 'mousedown'.length) == 'mousedown') {
  208.            useMousedown = true
  209.            if (document.body.dataset.instantIntensity == 'mousedown-only') {
  210.                useMousedownOnly = true
  211.            }
  212.        }
  213.        else {
  214.            const milliseconds = parseInt(document.body.dataset.instantIntensity)
  215.            if (milliseconds != NaN) {
  216.                delayOnHover = milliseconds
  217.            }
  218.        }
  219.    }
  220.    if (isSupported && !isDataSaverEnabled) {
  221.        prefetcher.rel = 'prefetch'
  222.        document.head.appendChild(prefetcher)
  223.  
  224.        const eventListenersOptions = {
  225.            capture: true,
  226.            passive: true,
  227.        }
  228.  
  229.        if (!useMousedownOnly) {
  230.            document.addEventListener('touchstart', touchstartListener, eventListenersOptions)
  231.        }
  232.  
  233.        if (!useMousedown) {
  234.            document.addEventListener('mouseover', mouseoverListener, eventListenersOptions)
  235.        }
  236.        else {
  237.            document.addEventListener('mousedown', mousedownListener, eventListenersOptions)
  238.        }
  239.    }
  240.    function touchstartListener(event) {
  241.        /* Chrome on Android calls mouseover before touchcancel so `lastTouchTimestamp`
  242.         * must be assigned on touchstart to be measured on mouseover. */
  243.        lastTouchTimestamp = performance.now()
  244.  
  245.        const linkElement = event.target.closest('a')
  246.  
  247.        if (!isPreloadable(linkElement)) {
  248.            return
  249.        }
  250.  
  251.        linkElement.addEventListener('touchcancel', touchendAndTouchcancelListener, {passive: true})
  252.        linkElement.addEventListener('touchend', touchendAndTouchcancelListener, {passive: true})
  253.  
  254.        urlToPreload = linkElement.href
  255.        preload(linkElement.href)
  256.    }
  257.  
  258.    function touchendAndTouchcancelListener() {
  259.        urlToPreload = undefined
  260.        stopPreloading()
  261.    }
  262.  
  263.    function mouseoverListener(event) {
  264.        if (performance.now() - lastTouchTimestamp < 1100) {
  265.            return
  266.        }
  267.  
  268.        const linkElement = event.target.closest('a')
  269.  
  270.        if (!isPreloadable(linkElement)) {
  271.            return
  272.        }
  273.  
  274.        linkElement.addEventListener('mouseout', mouseoutListener, {passive: true})
  275.  
  276.        urlToPreload = linkElement.href
  277.  
  278.        mouseoverTimer = setTimeout(() => {
  279.            preload(linkElement.href)
  280.            mouseoverTimer = undefined
  281.        }, delayOnHover)
  282.    }
  283.  
  284.    function mousedownListener(event) {
  285.        const linkElement = event.target.closest('a')
  286.  
  287.        if (!isPreloadable(linkElement)) {
  288.            return
  289.        }
  290.  
  291.        linkElement.addEventListener('mouseout', mouseoutListener, {passive: true})
  292.  
  293.        urlToPreload = linkElement.href
  294.  
  295.        preload(linkElement.href)
  296.    }
  297.  
  298.    function mouseoutListener(event) {
  299.        if (event.relatedTarget && event.target.closest('a') == event.relatedTarget.closest('a')) {
  300.            return
  301.        }
  302.  
  303.        if (mouseoverTimer) {
  304.            clearTimeout(mouseoverTimer)
  305.            mouseoverTimer = undefined
  306.        }
  307.  
  308.        urlToPreload = undefined
  309.  
  310.        stopPreloading()
  311.    }
  312.    function isPreloadable(linkElement) {
  313.        if (!linkElement || !linkElement.href) {
  314.            return
  315.        }
  316.  
  317.        if (urlToPreload == linkElement.href) {
  318.            return
  319.        }
  320.  
  321.        if (useWhitelist && !('instant' in linkElement.dataset)) {
  322.            return
  323.        }
  324.  
  325.        if (!allowExternalLinks && linkElement.origin != location.origin && !('instant' in linkElement.dataset)) {
  326.            return
  327.        }
  328.  
  329.        if (!['http:', 'https:'].includes(linkElement.protocol)) {
  330.            return
  331.        }
  332.  
  333.        if (linkElement.protocol == 'http:' && location.protocol == 'https:') {
  334.            return
  335.        }
  336.  
  337.        if (!allowQueryString && linkElement.search && !('instant' in linkElement.dataset)) {
  338.            return
  339.        }
  340.  
  341.        if (linkElement.hash && linkElement.pathname + linkElement.search == location.pathname + location.search) {
  342.            return
  343.        }
  344.        if ('noInstant' in linkElement.dataset) {
  345.            return
  346.        }
  347.  
  348.        return true
  349.    }
  350.  
  351.    function preload(url) {
  352.        prefetcher.href = url
  353.    }
  354.  
  355.    function stopPreloading() {
  356.        prefetcher.removeAttribute('href')
  357.    }
  358. </script>
  359. <!-- End - hktapps-instant-page -->
  360.  
  361.  
  362.  
  363.  
  364.    
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.    
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.    
  380.  
  381. <!-- Added by HKTApps  -->
  382. <script type="application/ld-json">{
  383.  "@context": "https://schema.org",
  384.  "@type": "WebSite",
  385.  "url": "https://thekoda.online",
  386.  "potentialAction": {
  387.  "@type": "SearchAction",
  388.  "target": "https://thekoda.online/search?q={search_term_string}",
  389.  "query-input": "required name=search_term_string"
  390.  }
  391. }
  392. </script>
  393. <!-- Added by HKTApps -->
  394.  
  395.  
  396.  
  397.    
  398.  
  399. <!-- Added by HKTApps  -->
  400. <script type="application/ld-json">{
  401.  "@context": "https://schema.org",
  402.  "@type": "Organization",
  403.  "name": "thekodaonline",
  404.  "url": "https:\/\/thekoda.online",
  405.    "sameAs": [
  406.    
  407.  ]
  408. }
  409. </script>
  410. <!-- Added by HKTApps -->
  411.  
  412.  
  413.  
  414.  
  415.  
  416. <script>
  417.    function hktappsAddTargetBlank() {
  418.        let links = document.links;
  419.        for (let i = 0; i< links.length; i++) {
  420.            let a = links[i];
  421.            if (a.host !== location.host) {
  422.                a.target = '_blank';
  423.            }
  424.        }
  425.    }
  426.    hktappsDocReady(function() {hktappsAddTargetBlank();});
  427. </script>
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434. <script>
  435.    function hktappsListenClickLink() {
  436.        let links = document.links;
  437.        for (let i = 0; i < links.length; i++) {
  438.            let a = links[i];
  439.            a.addEventListener('click', function () {
  440.                try {
  441.                    let payload = {
  442.                        shop: Shopify.shop,
  443.                        customer_id: HKTSeoApps.customerId,
  444.                        customer_email: HKTSeoApps.customerEmail,
  445.                        to_url: a.href,
  446.                        from_url: location.href,
  447.                        rel: a.rel,
  448.                        target: a.target,
  449.                    }
  450.                    hktappsMakeRequest("https://seo.hktapps.com/api/storefront/track-link-click.json", 'POST', payload);
  451.                } catch (e) {
  452.  
  453.                }
  454.            });
  455.        }
  456.    }
  457.    hktappsDocReady(function() {hktappsListenClickLink();});
  458. </script>
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465. <!-- Added by HKTApps  -->
  466. <script type="application/ld-json">
  467. {
  468.    "@context": "https://schema.org",
  469.    "type": [
  470.        "LocalBusiness"
  471.    ],
  472.    "name": "Koda online",
  473.    "image": "",
  474.    "@id": "https://thekoda.online/",
  475.    "url": "https://thekoda.online/",
  476.    "telephone": "8137107540",
  477.    "priceRange": "$",
  478.    "address": {
  479.        "@type": "PostalAddress",
  480.        "streetAddress": "4004 North 30th Street",
  481.        "addressLocality": "",
  482.        "postalCode": "33610",
  483.        "addressRegion": "Florida",
  484.        "addressCountry": "United States (US)"
  485.    },
  486.    "review": {
  487.        "@type": "Review",
  488.        "reviewRating": {
  489.            "@type": "Rating",
  490.            "ratingValue": "5",
  491.            "bestRating": "5"
  492.        },
  493.        "author": {
  494.            "@type": "Person",
  495.            "name": "HKT Apps"
  496.        }
  497.    },
  498.    "geo": {
  499.        "@type": "GeoCoordinates",
  500.        "latitude": "",
  501.        "longitude": ""
  502.    }
  503.        ,"openingHoursSpecification": [
  504.                                                                                                                    ]
  505.    }
  506. </script>
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513. <aside id="hktapps-preloader" aria-hidden="true">
  514.    <style>
  515.        @keyframes fadeInHktappsPreloader {
  516.            0% {
  517.                opacity: 0;
  518.            }
  519.            100% {
  520.                opacity: 1;
  521.            }
  522.        }
  523.        @keyframes fadeOutHktappsPreloader {
  524.            0% {
  525.                opacity: 1;
  526.            }
  527.            100% {
  528.                opacity: 0;
  529.            }
  530.        }
  531.  
  532.        .hktapps-preloader {
  533.            position: fixed;
  534.            z-index: 9999999;
  535.            top: 0;
  536.            left: 0;
  537.                            background-color: #132f40;
  538.                        width: 100vw;
  539.            height: 100vh;
  540.            opacity: 1;
  541.            visibility: visible;
  542.            will-change: opacity, visibility;
  543.                                                animation: fadeOutHktappsPreloader 1s forwards;
  544.                    animation-delay: 1.5s;
  545.                                      pointer-events: none;
  546.        }
  547.  
  548.        .hktapps-preloader--fadeOut {
  549.            animation: fadeOutHktappsPreloader 1s forwards;
  550.        }
  551.  
  552.        .hktapps-preloader--fadeIn {
  553.            animation: fadeInHktappsPreloader 1s forwards;
  554.        }
  555.  
  556.        .hktapps-preloader__inner {
  557.            width: 100%;
  558.            height: 100%;
  559.            display: flex;
  560.            align-items: center;
  561.            justify-content: center;
  562.        }
  563.  
  564.        .hktapps-preloader__image {
  565.            opacity: 100%;
  566.            width: 5%;
  567.            height: auto;
  568.            max-height: 100%;
  569.  
  570.        }
  571.  
  572.        @media screen and (max-width: 480px) {
  573.            .hktapps-preloader {
  574.                            }
  575.  
  576.            .hktapps-preloader__image {
  577.  
  578.            }
  579.        }
  580.  
  581.        @media screen and (min-width: 481px) and (max-width: 1024px) {
  582.            .hktapps-preloader {
  583.                            }
  584.            .hktapps-preloader__image {
  585.  
  586.            }
  587.        }
  588.  
  589.        @media screen and (min-width: 1025px) {
  590.            .hktapps-preloader {
  591.                            }
  592.  
  593.            .hktapps-preloader__image {
  594.  
  595.            }
  596.        }
  597.  
  598.    </style>
  599.  
  600.    <div class="hktapps-preloader">
  601.        <div class="hktapps-preloader__inner">
  602.                            <img class="hktapps-preloader__image"
  603.                     src="https://seo.hktapps.com/images/2023/preloader/circle_wheel.svg"
  604.                     width="96" height="54"
  605.                     tabindex="-1"
  606.                     alt="HKT: SEO All In One preloader image"
  607.                >
  608.                    </div>
  609.    </div>
  610.  
  611.            <script>
  612.            (function () {
  613.                const videoTarget = document.querySelector('video.hktapps-preloader__image');
  614.                const pointerElement = document.querySelector('.hktapps-preloader');
  615.                if (videoTarget && pointerElement) {
  616.                    pointerElement.style.pointerEvents = 'auto';
  617.                    videoTarget.addEventListener("playing", function () {
  618.                        pointerElement.style.pointerEvents = 'none';
  619.                    })
  620.                }
  621.  
  622.                function handlePreloaderFadeOut() {
  623.                    const preloaderHtml = document.getElementsByClassName('hktapps-preloader')[0];
  624.                    if (preloaderHtml) {
  625.                        preloaderHtml.classList.add('hktapps-preloader--fadeOut');
  626.                    }
  627.                }
  628.  
  629.                window.addEventListener('load', handlePreloaderFadeOut)
  630.  
  631.  
  632.            
  633.                
  634.                
  635.                
  636.                
  637.                
  638.                
  639.                
  640.  
  641.                            if
  642.                (window.NodeList && !NodeList.prototype.forEach)
  643.                {
  644.                    NodeList.prototype.forEach = Array.prototype.forEach;
  645.                }
  646.  
  647.                function removeLastSlash(str) {
  648.                    let retStr = str;
  649.                    if (str.charAt(str.length - 1) === '/') {
  650.                        retStr = str.slice(0, -1);
  651.                    }
  652.                    return retStr;
  653.                }
  654.  
  655.                function containsExcluded(class_list, excluded_classes) {
  656.                    for (let el of class_list) {
  657.                        for (let elExcluded of excluded_classes) {
  658.                            if (el.includes(elExcluded)) return true;
  659.                        }
  660.                    }
  661.                    return false;
  662.                }
  663.  
  664.                function handlePreloaderFadeIn() {
  665.                    const links = document.querySelectorAll('a');
  666.                    const preloaderHtml = document.getElementsByClassName('hktapps-preloader')[0];
  667.                    const windowLocationPathnameTrim = removeLastSlash(window.location.pathname);
  668.                    const domain = 'blog-ads-2.myshopify.com';
  669.                    const permanent_domain = 'blog-ads-2.myshopify.com';
  670.                    const excluded_classes = ["js-", "cart", "ajax", "toggle"];
  671.                    if (preloaderHtml) {
  672.                        links.forEach(link => {
  673.                            const isExcluded = containsExcluded(link.classList, excluded_classes);
  674.                            const url = link.getAttribute('href');
  675.                            const isNewWindow = link.getAttribute('target');
  676.                            const isSameDomain = (link.hostname === domain || link.hostname === permanent_domain);
  677.                            const linkPathnameTrim = removeLastSlash(link.pathname);
  678.                            let navigatingWithinPage = true;
  679.                            if (isSameDomain) {
  680.                                navigatingWithinPage = url.startsWith('#') ||
  681.                                    (linkPathnameTrim === windowLocationPathnameTrim && url.includes((link.pathname + '#')));
  682.                            }
  683.                            if (!isNewWindow && isSameDomain && !navigatingWithinPage && !isExcluded) {
  684.                                link.addEventListener('click', function (event) {
  685.                                    event.preventDefault();
  686.                                    const url = this.getAttribute('href');
  687.                                    preloaderHtml.classList.add('hktapps-preloader--fadeIn');
  688.                                    setTimeout(() => window.location.href = url, 0.5 * 1000)
  689.                                })
  690.                            }
  691.                        })
  692.                    }
  693.                }
  694.  
  695.                document.addEventListener('DOMContentLoaded', handlePreloaderFadeIn);
  696.                // fix for safari
  697.                window.addEventListener('pageshow', function (event) {
  698.                    if (event.persisted) {
  699.                        const preloaderHtml = document.getElementsByClassName('hktapps-preloader')[0];
  700.                        preloaderHtml.classList.remove('hktapps-preloader--fadeIn');
  701.                    }
  702.                });
  703.  
  704.                            })();
  705.        </script>
  706.    </aside>
  707.  
  708.  
  709.  
  710. <!-- /Added by HKTApps -->
  711. <!-- ! Yoast SEO -->
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.    
  720.    <!-- Added by AVADA SEO Suite -->
  721.  
  722. <!-- /Added by AVADA SEO Suite -->
  723.    
  724.  
  725.    <meta charset="utf-8">
  726.    <meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height, minimum-scale=1.0, maximum-scale=1.0">
  727.    <meta name="theme-color" content="#ffffff">
  728.  
  729.    
  730.  
  731.  
  732.  
  733.  <script type="application/ld-json">
  734.  {
  735.    "@context": "https://schema.org",
  736.    "@type": "BreadcrumbList",
  737.  "itemListElement": [{
  738.      "@type": "ListItem",
  739.      "position": 1,
  740.      "name": "Home",
  741.      "item": "https://thekoda.online"
  742.    }]
  743.  }
  744.  </script>
  745.  
  746. <style>/* Typography (heading) */
  747.  @font-face {
  748.  font-family: "DIN Next";
  749.  font-weight: 700;
  750.  font-style: normal;
  751.  font-display: fallback;
  752.  src: url("//thekoda.online/cdn/fonts/din_next/dinnext_n7.57888b0b2051a4dba7d02aad7ca64db99eca3cf1.woff2?h1=OTBhNzkwLWRjLTIuYWNjb3VudC5teXNob3BpZnkuY29t&h2=dGhla29kYS5vbmxpbmU&hmac=cc932554203c7663b2f258f8ea53451691f8b45b2f11c08471ef5c6e62800be5") format("woff2"),
  753.       url("//thekoda.online/cdn/fonts/din_next/dinnext_n7.8ca52ee0f403ce0c89c90387f16284e4637c1b10.woff?h1=OTBhNzkwLWRjLTIuYWNjb3VudC5teXNob3BpZnkuY29t&h2=dGhla29kYS5vbmxpbmU&hmac=ae9b8fb067b71ad3e658e05613e31a140a90001f56c8d887e0c9153377d2d922") format("woff");
  754. }
  755.  
  756. @font-face {
  757.  font-family: "DIN Next";
  758.  font-weight: 700;
  759.  font-style: italic;
  760.  font-display: fallback;
  761.  src: url("//thekoda.online/cdn/fonts/din_next/dinnext_i7.3e0968fa491d382704988ea5c9fc6209193f03d0.woff2?h1=OTBhNzkwLWRjLTIuYWNjb3VudC5teXNob3BpZnkuY29t&h2=dGhla29kYS5vbmxpbmU&hmac=661baf3b3829b5e7907f36221044fa9ef38643ae2217f055d4b5ae488b8684d3") format("woff2"),
  762.       url("//thekoda.online/cdn/fonts/din_next/dinnext_i7.28611b7c75be07249f4251b10e48a8d9f8dbf8ba.woff?h1=OTBhNzkwLWRjLTIuYWNjb3VudC5teXNob3BpZnkuY29t&h2=dGhla29kYS5vbmxpbmU&hmac=8b6fe62cd5dc838e5a69a883c18c2ef79638224eed1c99e00356e2d494a63163") format("woff");
  763. }
  764.  
  765. /* Typography (body) */
  766.  
  767. :root {
  768.    /**
  769.     * ---------------------------------------------------------------------
  770.     * SPACING VARIABLES
  771.     *
  772.     * We are using a spacing inspired from frameworks like Tailwind CSS.
  773.     * ---------------------------------------------------------------------
  774.     */
  775.    --spacing-0-5: 0.125rem; /* 2px */
  776.    --spacing-1: 0.25rem; /* 4px */
  777.    --spacing-1-5: 0.375rem; /* 6px */
  778.    --spacing-2: 0.5rem; /* 8px */
  779.    --spacing-2-5: 0.625rem; /* 10px */
  780.    --spacing-3: 0.75rem; /* 12px */
  781.    --spacing-3-5: 0.875rem; /* 14px */
  782.    --spacing-4: 1rem; /* 16px */
  783.    --spacing-4-5: 1.125rem; /* 18px */
  784.    --spacing-5: 1.25rem; /* 20px */
  785.    --spacing-5-5: 1.375rem; /* 22px */
  786.    --spacing-6: 1.5rem; /* 24px */
  787.    --spacing-6-5: 1.625rem; /* 26px */
  788.    --spacing-7: 1.75rem; /* 28px */
  789.    --spacing-7-5: 1.875rem; /* 30px */
  790.    --spacing-8: 2rem; /* 32px */
  791.    --spacing-8-5: 2.125rem; /* 34px */
  792.    --spacing-9: 2.25rem; /* 36px */
  793.    --spacing-9-5: 2.375rem; /* 38px */
  794.    --spacing-10: 2.5rem; /* 40px */
  795.    --spacing-11: 2.75rem; /* 44px */
  796.    --spacing-12: 3rem; /* 48px */
  797.    --spacing-14: 3.5rem; /* 56px */
  798.    --spacing-16: 4rem; /* 64px */
  799.    --spacing-18: 4.5rem; /* 72px */
  800.    --spacing-20: 5rem; /* 80px */
  801.    --spacing-24: 6rem; /* 96px */
  802.    --spacing-28: 7rem; /* 112px */
  803.    --spacing-32: 8rem; /* 128px */
  804.    --spacing-36: 9rem; /* 144px */
  805.    --spacing-40: 10rem; /* 160px */
  806.    --spacing-44: 11rem; /* 176px */
  807.    --spacing-48: 12rem; /* 192px */
  808.    --spacing-52: 13rem; /* 208px */
  809.    --spacing-56: 14rem; /* 224px */
  810.    --spacing-60: 15rem; /* 240px */
  811.    --spacing-64: 16rem; /* 256px */
  812.    --spacing-72: 18rem; /* 288px */
  813.    --spacing-80: 20rem; /* 320px */
  814.    --spacing-96: 24rem; /* 384px */
  815.  
  816.    /* Container */
  817.    --container-max-width: 1600px;
  818.    --container-narrow-max-width: 1350px;
  819.    --container-gutter: var(--spacing-5);
  820.    --section-outer-spacing-block: var(--spacing-12);
  821.    --section-inner-max-spacing-block: var(--spacing-10);
  822.    --section-inner-spacing-inline: var(--container-gutter);
  823.    --section-stack-spacing-block: var(--spacing-8);
  824.  
  825.    /* Grid gutter */
  826.    --grid-gutter: var(--spacing-5);
  827.  
  828.    /* Product list settings */
  829.    --product-list-row-gap: var(--spacing-8);
  830.    --product-list-column-gap: var(--grid-gutter);
  831.  
  832.    /* Form settings */
  833.    --input-gap: var(--spacing-2);
  834.    --input-height: 2.625rem;
  835.    --input-padding-inline: var(--spacing-4);
  836.  
  837.    /* Other sizes */
  838.    --sticky-area-height: calc(var(--sticky-announcement-bar-enabled, 0) * var(--announcement-bar-height, 0px) + var(--sticky-header-enabled, 0) * var(--header-height, 0px));
  839.  
  840.    /* RTL support */
  841.    --transform-logical-flip: 1;
  842.    --transform-origin-start: left;
  843.    --transform-origin-end: right;
  844.  
  845.    /**
  846.     * ---------------------------------------------------------------------
  847.     * TYPOGRAPHY
  848.     * ---------------------------------------------------------------------
  849.     */
  850.  
  851.    /* Font properties */
  852.    --heading-font-family: "DIN Next", sans-serif;
  853.    --heading-font-weight: 700;
  854.    --heading-font-style: normal;
  855.    --heading-text-transform: normal;
  856.    --heading-letter-spacing: -0.02em;
  857.    --text-font-family: "New York", Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  858.    --text-font-weight: 400;
  859.    --text-font-style: normal;
  860.    --text-letter-spacing: 0.0em;
  861.  
  862.    /* Font sizes */
  863.    --text-h0: 3rem;
  864.    --text-h1: 2.5rem;
  865.    --text-h2: 2rem;
  866.    --text-h3: 1.5rem;
  867.    --text-h4: 1.375rem;
  868.    --text-h5: 1.125rem;
  869.    --text-h6: 1rem;
  870.    --text-xs: 0.6875rem;
  871.    --text-sm: 0.75rem;
  872.    --text-base: 0.875rem;
  873.    --text-lg: 1.125rem;
  874.  
  875.    /**
  876.     * ---------------------------------------------------------------------
  877.     * COLORS
  878.     * ---------------------------------------------------------------------
  879.     */
  880.  
  881.    /* Color settings */--accent: 206 83 76;
  882.    --text-primary: 26 26 26;
  883.    --background-primary: 255 255 255;
  884.    --dialog-background: 255 255 255;
  885.    --border-color: var(--text-color, var(--text-primary)) / 0.12;
  886.  
  887.    /* Button colors */
  888.    --button-background-primary: 206 83 76;
  889.    --button-text-primary: 255 255 255;
  890.    --button-background-secondary: 240 196 23;
  891.    --button-text-secondary: 26 26 26;
  892.  
  893.    /* Status colors */
  894.    --success-background: 224 244 232;
  895.    --success-text: 0 163 65;
  896.    --warning-background: 255 246 233;
  897.    --warning-text: 255 183 74;
  898.    --error-background: 254 231 231;
  899.    --error-text: 248 58 58;
  900.  
  901.    /* Product colors */
  902.    --on-sale-text: 248 58 58;
  903.    --on-sale-badge-background: 248 58 58;
  904.    --on-sale-badge-text: 255 255 255;
  905.    --sold-out-badge-background: 0 0 0;
  906.    --sold-out-badge-text: 255 255 255;
  907.    --primary-badge-background: 128 60 238;
  908.    --primary-badge-text: 255 255 255;
  909.    --star-color: 255 183 74;
  910.    --product-card-background: 255 255 255;
  911.    --product-card-text: 26 26 26;
  912.  
  913.    /* Header colors */
  914.    --header-background: 255 255 255;
  915.    --header-text: 26 26 26;
  916.  
  917.    /* Footer colors */
  918.    --footer-background: 255 255 255;
  919.    --footer-text: 0 0 0;
  920.  
  921.    /* Rounded variables (used for border radius) */
  922.    --rounded-xs: 0.25rem;
  923.    --rounded-sm: 0.375rem;
  924.    --rounded: 0.75rem;
  925.    --rounded-lg: 1.5rem;
  926.    --rounded-full: 9999px;
  927.  
  928.    --rounded-button: 3.75rem;
  929.    --rounded-input: 0.5rem;
  930.  
  931.    /* Box shadow */
  932.    --shadow-sm: 0 2px 8px rgb(var(--text-primary) / 0.1);
  933.    --shadow: 0 5px 15px rgb(var(--text-primary) / 0.1);
  934.    --shadow-md: 0 5px 30px rgb(var(--text-primary) / 0.1);
  935.    --shadow-block: 0px 18px 50px rgb(var(--text-primary) / 0.1);
  936.  
  937.    /**
  938.     * ---------------------------------------------------------------------
  939.     * OTHER
  940.     * ---------------------------------------------------------------------
  941.     */
  942.  
  943.    --cursor-close-svg-url: url(//thekoda.online/cdn/shop/t/6/assets/cursor-close.svg?v=147174565022153725511725539845);
  944.    --cursor-zoom-in-svg-url: url(//thekoda.online/cdn/shop/t/6/assets/cursor-zoom-in.svg?v=154953035094101115921725539845);
  945.    --cursor-zoom-out-svg-url: url(//thekoda.online/cdn/shop/t/6/assets/cursor-zoom-out.svg?v=16155520337305705181725539845);
  946.    --checkmark-svg-url: url(//thekoda.online/cdn/shop/t/6/assets/checkmark.svg?v=77552481021870063511725539845);
  947.  }
  948.  
  949.  [dir="rtl"]:root {
  950.    /* RTL support */
  951.    --transform-logical-flip: -1;
  952.    --transform-origin-start: right;
  953.    --transform-origin-end: left;
  954.  }
  955.  
  956.  @media screen and (min-width: 700px) {
  957.    :root {
  958.      /* Typography (font size) */
  959.      --text-h0: 4rem;
  960.      --text-h1: 3rem;
  961.      --text-h2: 2.5rem;
  962.      --text-h3: 2rem;
  963.      --text-h4: 1.625rem;
  964.      --text-h5: 1.25rem;
  965.      --text-h6: 1.125rem;
  966.  
  967.      --text-xs: 0.75rem;
  968.      --text-sm: 0.875rem;
  969.      --text-base: 1.0rem;
  970.      --text-lg: 1.25rem;
  971.  
  972.      /* Spacing */
  973.      --container-gutter: 2rem;
  974.      --section-outer-spacing-block: var(--spacing-16);
  975.      --section-inner-max-spacing-block: var(--spacing-12);
  976.      --section-inner-spacing-inline: var(--spacing-12);
  977.      --section-stack-spacing-block: var(--spacing-12);
  978.  
  979.      /* Grid gutter */
  980.      --grid-gutter: var(--spacing-6);
  981.  
  982.      /* Product list settings */
  983.      --product-list-row-gap: var(--spacing-12);
  984.  
  985.      /* Form settings */
  986.      --input-gap: 1rem;
  987.      --input-height: 3.125rem;
  988.      --input-padding-inline: var(--spacing-5);
  989.    }
  990.  }
  991.  
  992.  @media screen and (min-width: 1000px) {
  993.    :root {
  994.      /* Spacing settings */
  995.      --container-gutter: var(--spacing-12);
  996.      --section-outer-spacing-block: var(--spacing-18);
  997.      --section-inner-max-spacing-block: var(--spacing-16);
  998.      --section-inner-spacing-inline: var(--spacing-16);
  999.      --section-stack-spacing-block: var(--spacing-12);
  1000.    }
  1001.  }
  1002.  
  1003.  @media screen and (min-width: 1150px) {
  1004.    :root {
  1005.      /* Spacing settings */
  1006.      --container-gutter: var(--spacing-12);
  1007.      --section-outer-spacing-block: var(--spacing-20);
  1008.      --section-inner-max-spacing-block: var(--spacing-16);
  1009.      --section-inner-spacing-inline: var(--spacing-16);
  1010.      --section-stack-spacing-block: var(--spacing-12);
  1011.    }
  1012.  }
  1013.  
  1014.  @media screen and (min-width: 1400px) {
  1015.    :root {
  1016.      /* Typography (font size) */
  1017.      --text-h0: 5rem;
  1018.      --text-h1: 3.75rem;
  1019.      --text-h2: 3rem;
  1020.      --text-h3: 2.25rem;
  1021.      --text-h4: 2rem;
  1022.      --text-h5: 1.5rem;
  1023.      --text-h6: 1.25rem;
  1024.  
  1025.      --section-outer-spacing-block: var(--spacing-24);
  1026.      --section-inner-max-spacing-block: var(--spacing-18);
  1027.      --section-inner-spacing-inline: var(--spacing-18);
  1028.    }
  1029.  }
  1030.  
  1031.  @media screen and (min-width: 1600px) {
  1032.    :root {
  1033.      --section-outer-spacing-block: var(--spacing-24);
  1034.      --section-inner-max-spacing-block: var(--spacing-20);
  1035.      --section-inner-spacing-inline: var(--spacing-20);
  1036.    }
  1037.  }
  1038.  
  1039.  /**
  1040.   * ---------------------------------------------------------------------
  1041.   * LIQUID DEPENDANT CSS
  1042.   *
  1043.   * Our main CSS is Liquid free, but some very specific features depend on
  1044.   * theme settings, so we have them here
  1045.   * ---------------------------------------------------------------------
  1046.   */@media screen and (pointer: fine) {
  1047.        .button:not([disabled]):hover, .btn:not([disabled]):hover, .shopify-payment-button__button--unbranded:not([disabled]):hover {
  1048.          --button-background-opacity: 0.85;
  1049.        }
  1050.  
  1051.        .button--subdued:not([disabled]):hover {
  1052.          --button-background: var(--text-color) / .05 !important;
  1053.        }
  1054.      }</style>
  1055. <style>#main-page{position:absolute;font-size:1200px;line-height:1;word-wrap:break-word;top:0;left:0;width:96vw;height:96vh;max-width:99vw;max-height:99vh;pointer-events:none;z-index:99999999999;color:transparent;overflow:hidden}</style><div id="main-page" data-optimizer="layout">□</div><script type="text/javascript">eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('l(r.O=="P y"){i j=[],s=[];u Q(a,b=R){S c;T(...d)=>{U(c),c=V(()=>a.W(X,d),b)}}2.m="Y"+(2.z||"")+"Z";2.A="10"+(2.z||"")+"11";12{i a=r[2.m],e=r[2.A];2.k=(e.B(\'y\')>-1&&a.B(\'13\')<0),2.m="!1",c=C}14(d){2.k=!1;i c=C;2.m="!1"}2.k=k;l(k)i v=D E(e=>{e.8(({F:e})=>{e.8(e=>{1===e.5&&"G"===e.6&&(e.4("n","o"),e.4("f-3",e.3),e.g("3")),1===e.5&&"H"===e.6&&++p>q&&e.4("n","o"),1===e.5&&"I"===e.6&&j.w&&j.8(t=>{e.7.h(t)&&(e.4("f-7",e.7),e.g("7"))}),1===e.5&&"J"===e.6&&(e.4("f-3",e.3),e.g("3"),e.15="16/17")})})}),p=0,q=K;18 i v=D E(e=>{e.8(({F:e})=>{e.8(e=>{1===e.5&&"G"===e.6&&(e.4("n","o"),e.4("f-3",e.3),e.g("3")),1===e.5&&"H"===e.6&&++p>q&&e.4("n","o"),1===e.5&&"I"===e.6&&j.w&&j.8(t=>{e.7.h(t)&&(e.4("f-7",e.7),e.g("7"))}),1===e.5&&"J"===e.6&&(s.w&&s.8(t=>{e.3.h(t)&&(e.4("f-3",e.3),e.g("3"))}),e.9.h("x")&&(e.9=e.9.L("l(2.M)","N.19(\'1a\',u(1b){x();});l(2.M)").1c(", x",", u(){}")),(e.9.h("1d")||e.9.h("1e"))&&(e.9=e.9.L("1f","1g")))})})}),p=0,q=K;v.1h(N.1i,{1j:!0,1k:!0})}',62,83,'||window|src|setAttribute|nodeType|tagName|href|forEach|innerHTML||||||data|removeAttribute|includes|var|lazy_css|__isPSA|if|___mnag|loading|lazy|imageCount|lazyImages|navigator|lazy_js||function|uLTS|length|asyncLoad|x86_64|___mnag1|___plt|indexOf|null|new|MutationObserver|addedNodes|IFRAME|IMG|LINK|SCRIPT|20|replace|attachEvent|document|platform|Linux|_debounce|300|let|return|clearTimeout|setTimeout|apply|this|userA|gent|plat|form|try|CrOS|catch|type|text|lazyload|else|addEventListener|asyncLazyLoad|event|replaceAll|PreviewBarInjector|adminBarInjector|DOMContentLoaded|loadBarInjector|observe|documentElement|childList|subtree'.split('|'),0,{}))</script>
  1056. <script>
  1057.  document.documentElement.classList.replace('no-js', 'js');
  1058.  
  1059.  // This allows to expose several variables to the global scope, to be used in scripts
  1060.  window.themeVariables = {
  1061.    settings: {
  1062.      showPageTransition: false,
  1063.      headingApparition: "split_fade",
  1064.      pageType: "index",
  1065.      moneyFormat: "${{amount}}",
  1066.      moneyWithCurrencyFormat: "${{amount}} USD",
  1067.      currencyCodeEnabled: false,
  1068.      cartType: "popover",
  1069.      showDiscount: true,
  1070.      discountMode: "saving"
  1071.    },
  1072.  
  1073.    strings: {
  1074.      accessibilityClose: "Close",
  1075.      accessibilityNext: "Next",
  1076.      accessibilityPrevious: "Previous",
  1077.      addToCartButton: "Add to cart",
  1078.      soldOutButton: "Sold out",
  1079.      preOrderButton: "Pre-order",
  1080.      unavailableButton: "Unavailable",
  1081.      closeGallery: "Close gallery",
  1082.      zoomGallery: "Zoom",
  1083.      errorGallery: "Image cannot be loaded",
  1084.      soldOutBadge: "Sold out",
  1085.      discountBadge: "Save @@",
  1086.      sku: "SKU:",
  1087.      searchNoResults: "No results could be found.",
  1088.      addOrderNote: "Add order note",
  1089.      editOrderNote: "Edit order note",
  1090.      shippingEstimatorNoResults: "Sorry, we do not ship to your address.",
  1091.      shippingEstimatorOneResult: "There is one shipping rate for your address:",
  1092.      shippingEstimatorMultipleResults: "There are several shipping rates for your address:",
  1093.      shippingEstimatorError: "One or more error occurred while retrieving shipping rates:"
  1094.    },
  1095.  
  1096.    breakpoints: {
  1097.      'sm': 'screen and (min-width: 700px)',
  1098.      'md': 'screen and (min-width: 1000px)',
  1099.      'lg': 'screen and (min-width: 1150px)',
  1100.      'xl': 'screen and (min-width: 1400px)',
  1101.  
  1102.      'sm-max': 'screen and (max-width: 699px)',
  1103.      'md-max': 'screen and (max-width: 999px)',
  1104.      'lg-max': 'screen and (max-width: 1149px)',
  1105.      'xl-max': 'screen and (max-width: 1399px)'
  1106.    }
  1107.  };// For detecting native share
  1108.  document.documentElement.classList.add(`native-share--${navigator.share ? 'enabled' : 'disabled'}`);</script><link rel="shortcut icon" href="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&width=96">
  1109.      <link rel="apple-touch-icon" href="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&width=180"><link rel="preconnect" href="https://cdn.shopify.com">
  1110.    <link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
  1111.    <link rel="dns-prefetch" href="https://productreviews.shopifycdn.com"><link rel="preload" href="//thekoda.online/cdn/fonts/din_next/dinnext_n7.57888b0b2051a4dba7d02aad7ca64db99eca3cf1.woff2?h1=OTBhNzkwLWRjLTIuYWNjb3VudC5teXNob3BpZnkuY29t&h2=dGhla29kYS5vbmxpbmU&hmac=cc932554203c7663b2f258f8ea53451691f8b45b2f11c08471ef5c6e62800be5" as="font" type="font/woff2" crossorigin><script type="module" src="//thekoda.online/cdn/shop/t/6/assets/vendor.min.js?v=135636273606022464561725539845"></script>
  1112.    <script type="module" src="//thekoda.online/cdn/shop/t/6/assets/theme.js?v=66212194955215492711725633936"></script>
  1113.    <script type="module" src="//thekoda.online/cdn/shop/t/6/assets/sections.js?v=43594407117835759821725634215"></script>
  1114.  
  1115.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="ctgdmcpb1jw6ricxq6p0hf8zzov5mt">
  1116. <meta name="google-site-verification" content="lZLCEs6esZmOk70WHnYKCGDb_KbLsNXnwaPHAKzXP5A">
  1117. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/89825181988/digital_wallets/dialog">
  1118. <meta name="shopify-checkout-api-token" content="f13b97b5dbad8070f14e6b04f7c3237a">
  1119. <meta id="in-context-paypal-metadata" data-shop-id="89825181988" data-venmo-supported="true" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
  1120. <script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
  1121. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  1122. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=89825181988" crossorigin="anonymous"></script>
  1123. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":89825181988,"countryCode":"US","currencyCode":"USD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/89825181988","merchantName":"thekodaonline","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","elo","jcb"],"total":{"type":"pending","label":"thekodaonline","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  1124. <script id="shopify-features" type="application/json">{"accessToken":"f13b97b5dbad8070f14e6b04f7c3237a","betas":["rich-media-storefront-analytics"],"domain":"thekoda.online","predictiveSearch":true,"shopId":89825181988,"smart_payment_buttons_url":"https:\/\/thekoda.online\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/thekoda.online\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
  1125. <script>var Shopify = Shopify || {};
  1126. Shopify.shop = "90a790-dc-2.myshopify.com";
  1127. Shopify.locale = "en";
  1128. Shopify.currency = {"active":"USD","rate":"1.0"};
  1129. Shopify.country = "US";
  1130. Shopify.theme = {"name":"Impact-premium-theme | OPT","id":171624005924,"theme_store_id":null,"role":"main"};
  1131. Shopify.theme.handle = "null";
  1132. Shopify.theme.style = {"id":null,"handle":null};
  1133. Shopify.cdnHost = "thekoda.online/cdn";
  1134. Shopify.routes = Shopify.routes || {};
  1135. Shopify.routes.root = "/";</script>
  1136. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  1137. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  1138. <script>window.ShopifyPay = window.ShopifyPay || {};
  1139. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  1140. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  1141. <script>
  1142.  window.Shopify = window.Shopify || {};
  1143.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  1144.  window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_XF4HlSxg.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_B-JZ-TV0.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_BEMaGBaU.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_CQiubECL.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_C_u17Ng8.en.esm.js","modules/v2/client.shop-login-button_B3JRvFfz.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_DeIxAb5y.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_B3JRvFfz.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_DMIJN_Y6.en.esm.js","modules/v2/client.shop-login-button_B3JRvFfz.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_OQyBqa5o.en.esm.js","modules/v2/client.shop-login-button_B3JRvFfz.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"pay-button":["modules/v2/client.pay-button_DA2ES-2I.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"],"lead-capture":["modules/v2/client.lead-capture_5yLKmwi9.en.esm.js","modules/v2/chunk.common_BQ6KP1iq.esm.js"]};
  1145. </script>
  1146. <script>(function() {
  1147.  function asyncLoad() {
  1148.    var urls = ["https:\/\/app.getinterlinks.com\/interlink-js?shop=90a790-dc-2.myshopify.com"];
  1149.    for (var i = 0; i < urls.length; i++) {
  1150.      var s = document.createElement('script');
  1151.      s.type = 'text/javascript';
  1152.      s.async = true;
  1153.      s.src = urls[i];
  1154.      var x = document.getElementsByTagName('script')[0];
  1155.      x.parentNode.insertBefore(s, x);
  1156.    }
  1157.  };
  1158.  if(window.attachEvent) {
  1159.    window.attachEvent('onload', asyncLoad);
  1160.  } else {
  1161.    window.addEventListener('load', asyncLoad, false);
  1162.  }
  1163. })();</script>
  1164. <script id="__st">var __st={"a":89825181988,"offset":-14400,"reqid":"3fe83871-a886-486c-b7a6-06272841b3e5-1729229521","pageurl":"thekoda.online\/","u":"b139aebaa8fa","p":"home"};</script>
  1165. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  1166. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(',');function s(t,e,n=!1){try{const o=window.sessionStorage;for(const[n,c]of Object.entries(JSON.parse(o.getItem(e))))t.elements[n]&&(t.elements[n].value=c);n&&o.removeItem(e)}catch{}}const a='form_key',i=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response','password'],u=()=>{try{return window.sessionStorage}catch{return}},m=t=>t.elements[a],f='form_type',d='cptcha';function p(t){t.dataset[d]=!0}const l=window,h=l.document,_='Shopify',y='ce_forms',E='captcha';let v=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe','https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.4.0.iife.js',T={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=l[_][y],c=o.bindForm;if(c)return c(t,g,e,T).then(n);o.q.push([[t,g,e,T],n]),v||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:'https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.4.0.iife.js'})),v=!0)});var g,T;l[_]=l[_]||{},l[_][y]=l[_][y]||{},l[_][y].q=[],l[_][E]=l[_][E]||{},l[_][E].protect=function(t,e){n(t,void 0,e),p(t)},Object.freeze(l[_][E]),function(t,e,n,l,h,_){const[y,E,v,g]=function(t,e,n){const s=e?o:[],a=t?c:[],i=[...s,...a],u=[...o],m=r(i),f=r(s),d=n&&r(i.filter((([t,e])=>n.includes(e)))),p=r(u),l=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];return[l(m),l(f),l(d),l(p)]}(l,h,_),T=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},S=t=>y().includes(t);t.addEventListener('submit',(t=>{const e=T(t);if(!e)return;const n=S(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=m(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!u())return;!function(t){const e=u();if(!e)return;const n=m(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){m(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:a})),t.elements[a].value=e}(t,e),function(t,e){const n=u();if(!n)return;const o=[...t.querySelectorAll('input[type="password"]')].map((({name:t})=>t)),c=[...i,...o],r={};for(const[s,a]of new FormData(t).entries())c.includes(s)||(r[s]=a);n.setItem(e,JSON.stringify(r))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const w=(t,e)=>{t&&!t.dataset[d]&&(n(t,e.some((e=>e===t))),p(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=T(t);S(e)&&w(e,E())}));const A=e.get('form_key'),b=e.get(f),I=A&&b;t.addEventListener('DOMContentLoaded',(()=>{const t=E();if(I)for(const e of t)e.elements[f].value===b&&s(e,A);[...new Set([...v(),...y().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>w(e,t)))}))}(h,new URLSearchParams(l.location.search),n,!0,!0,['guest_login'])})()}();</script>
  1167. <script id="captcha-terms">!function(){'use strict';const e=/recaptcha|reCATPCHA|google|Googl/gi,t=o=>{let c=o.firstChild;for(;c;)c.nodeType===Node.TEXT_NODE?c.textContent=c.textContent.replace(e,'hCaptcha'):c.nodeType===Node.ELEMENT_NODE&&t(c),c=c.nextSibling};document.addEventListener('DOMContentLoaded',(()=>{(e=>{const o=document.querySelector('p[data-spam-detection-disclaimer]');if(o){for(const e of['terms','privacy']){const t=o.querySelector(`a[href*='https://policies.google.com/${e}']`);t&&(t.href=`https://hcaptcha.com/${e}`)}t(o)}})()}))}();</script>
  1168. <script integrity="sha256-7/JJfxDXG7zQLENy79IvPH107WmaVwc8z5Er0jzsrPQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//thekoda.online/cdn/shopifycloud/shopify/assets/storefront/load_feature-eff2497f10d71bbcd02c4372efd22f3c7d74ed699a57073ccf912bd23cecacf4.js" crossorigin="anonymous"></script>
  1169. <script crossorigin="anonymous" defer="defer" src="//thekoda.online/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
  1170. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://thekoda.online/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  1171. </script>
  1172. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  1173.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  1174. </script>
  1175. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("#dynamic-checkout-cart")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  1176. </script>
  1177. <script id='scb4127' type='text/javascript' async='' src='https://thekoda.online/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
  1178.  
  1179.  
  1180. <style id="shopify-accelerated-checkout-cart">
  1181.        #dynamic-checkout-cart {
  1182.  container-type: inline-size;
  1183.  container-name: dcc;
  1184.  width: 100%;
  1185. }
  1186.  
  1187. .wallet-cart-grid {
  1188.  --wallet-button-height-horizontal: clamp(
  1189.    25px,
  1190.    var(
  1191.      --shopify-accelerated-checkout-button-inline-size,
  1192.      42px
  1193.    ),
  1194.    55px
  1195.  );
  1196.  --wallet-button-height-vertical: clamp(
  1197.    25px,
  1198.    var(
  1199.      --shopify-accelerated-checkout-button-block-size,
  1200.      54px
  1201.    ),
  1202.    55px
  1203.  );
  1204.  --wallet-button-width-horizontal: 150px;
  1205.  --wallet-button-width-vertical: 100%;
  1206.  --wallet-button-border-radius: var(
  1207.    --shopify-accelerated-checkout-button-border-radius,
  1208.    4px
  1209.  );
  1210.  --wallet-grid-margin-horizontal: 0 -5px -5px -5px;
  1211.  --wallet-button-container-margin-horizontal: 0 5px 5px;
  1212.  --wallet-button-container-margin-vertical: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0;
  1213. }
  1214.  
  1215. @keyframes acceleratedCheckoutLoadingSkeleton {
  1216.  50% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  1217.  75% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, 0.5);}
  1218.  100% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  1219. }
  1220.  
  1221. .wallet-cart-button__skeleton {
  1222.  animation: acceleratedCheckoutLoadingSkeleton var(--shopify-accelerated-checkout-skeleton-animation-duration, 4s) var(--shopify-accelerated-checkout-skeleton-animation-timing-function, ease) infinite;
  1223.  animation-delay: -0.168s;
  1224.  background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
  1225.  box-sizing: border-box;
  1226.  text-decoration: none !important;
  1227. }
  1228.  
  1229. .wallet-cart-grid {
  1230.  margin: var(--wallet-grid-margin-horizontal);
  1231.  padding: 0;
  1232.  display: flex;
  1233.  flex-direction: row;
  1234.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, start);
  1235.  gap: 0 !important;
  1236. }
  1237.  
  1238. .wallet-cart-grid--skeleton {
  1239.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, inherit);
  1240. }
  1241.  
  1242. .wallet-cart-button-container {
  1243.  position: relative;
  1244.  margin: var(--wallet-button-container-margin-horizontal);
  1245. }
  1246.  
  1247. .wallet-cart-button-container,
  1248. .wallet-cart-button {
  1249.  width: var(--wallet-button-width-horizontal);
  1250.  height: var(--wallet-button-height-horizontal);
  1251.  border-radius: var(--wallet-button-border-radius);
  1252.  list-style-type: none !important;
  1253.  text-align: center;
  1254.  flex-shrink: 0;
  1255.  flex-grow: 0;
  1256. }
  1257.  
  1258. .additional-checkout-buttons--vertical .wallet-cart-grid {
  1259.  justify-content: start;
  1260.  flex-direction: column;
  1261.  margin: 0;
  1262. }
  1263. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container {
  1264.  width: var(--wallet-button-width-vertical);
  1265.  height: var(--wallet-button-height-vertical);
  1266.  margin: var(--wallet-button-container-margin-vertical);
  1267. }
  1268. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  1269.  margin-top: 0;
  1270. }
  1271. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button {
  1272.  width: var(--wallet-button-width-vertical);
  1273.  height: var(--wallet-button-height-vertical);
  1274. }
  1275.  
  1276. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button-container,
  1277. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button {
  1278.  width: var(--wallet-button-width-horizontal) !important;
  1279.  height: var(--wallet-button-height-horizontal) !important;
  1280.  border-radius: var(--wallet-button-border-radius) !important;
  1281. }
  1282.  
  1283. @container dcc (width >= 150px) and (width <= 500px) {
  1284.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) {
  1285.    justify-content: start;
  1286.    flex-direction: column;
  1287.    margin: 0;
  1288.  }
  1289.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container {
  1290.    width: var(--wallet-button-width-vertical);
  1291.    height: var(--wallet-button-height-vertical);
  1292.    margin: var(--wallet-button-container-margin-vertical);
  1293.  }
  1294.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  1295.    margin-top: 0;
  1296.  }
  1297.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button {
  1298.    width: var(--wallet-button-width-vertical);
  1299.    height: var(--wallet-button-height-vertical);
  1300.  }
  1301. }
  1302.  
  1303. @container dcc (width <= 310px) {
  1304.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) {
  1305.    justify-content: start;
  1306.    flex-direction: column;
  1307.    margin: 0;
  1308.  }
  1309.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container {
  1310.    width: var(--wallet-button-width-vertical);
  1311.    height: var(--wallet-button-height-vertical);
  1312.    margin: var(--wallet-button-container-margin-vertical);
  1313.  }
  1314.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  1315.    margin-top: 0;
  1316.  }
  1317.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button {
  1318.    width: var(--wallet-button-width-vertical);
  1319.    height: var(--wallet-button-height-vertical);
  1320.  }
  1321. }
  1322.  
  1323. @container dcc (width <= 470px) {
  1324.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) {
  1325.    justify-content: start;
  1326.    flex-direction: column;
  1327.    margin: 0;
  1328.  }
  1329.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container {
  1330.    width: var(--wallet-button-width-vertical);
  1331.    height: var(--wallet-button-height-vertical);
  1332.    margin: var(--wallet-button-container-margin-vertical);
  1333.  }
  1334.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  1335.    margin-top: 0;
  1336.  }
  1337.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button {
  1338.    width: var(--wallet-button-width-vertical);
  1339.    height: var(--wallet-button-height-vertical);
  1340.  }
  1341. }
  1342.  
  1343. @container dcc (width <= 630px) {
  1344.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) {
  1345.    justify-content: start;
  1346.    flex-direction: column;
  1347.    margin: 0;
  1348.  }
  1349.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container {
  1350.    width: var(--wallet-button-width-vertical);
  1351.    height: var(--wallet-button-height-vertical);
  1352.    margin: var(--wallet-button-container-margin-vertical);
  1353.  }
  1354.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  1355.    margin-top: 0;
  1356.  }
  1357.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button {
  1358.    width: var(--wallet-button-width-vertical);
  1359.    height: var(--wallet-button-height-vertical);
  1360.  }
  1361. }
  1362.  
  1363. @container dcc (width <= 790px) {
  1364.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) {
  1365.    justify-content: start;
  1366.    flex-direction: column;
  1367.    margin: 0;
  1368.  }
  1369.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container {
  1370.    width: var(--wallet-button-width-vertical);
  1371.    height: var(--wallet-button-height-vertical);
  1372.    margin: var(--wallet-button-container-margin-vertical);
  1373.  }
  1374.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  1375.    margin-top: 0;
  1376.  }
  1377.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button {
  1378.    width: var(--wallet-button-width-vertical);
  1379.    height: var(--wallet-button-height-vertical);
  1380.  }
  1381. }
  1382.  
  1383. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) {
  1384.  justify-content: start;
  1385.  flex-direction: column;
  1386.  margin: 0;
  1387. }
  1388. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container {
  1389.  width: var(--wallet-button-width-vertical);
  1390.  height: var(--wallet-button-height-vertical);
  1391.  margin: var(--wallet-button-container-margin-vertical);
  1392. }
  1393. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  1394.  margin-top: 0;
  1395. }
  1396. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button {
  1397.  width: var(--wallet-button-width-vertical);
  1398.  height: var(--wallet-button-height-vertical);
  1399. }
  1400.  
  1401. @media screen and (max-width: 750px) {
  1402.  .wallet-cart-grid {
  1403.    justify-content: start;
  1404.    flex-direction: column;
  1405.    max-width: none;
  1406.    margin: 0;
  1407.  }
  1408.  .wallet-cart-grid .wallet-cart-button-container {
  1409.    max-width: none;
  1410.    width: var(--wallet-button-width-vertical);
  1411.    height: var(--wallet-button-height-vertical);
  1412.    margin: var(--wallet-button-container-margin-vertical);
  1413.  }
  1414.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  1415.    margin-top: 0;
  1416.  }
  1417.  .wallet-cart-grid .wallet-cart-button {
  1418.    width: var(--wallet-button-width-vertical);
  1419.    height: var(--wallet-button-height-vertical);
  1420.  }
  1421. }
  1422.  
  1423. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  1424.  .wallet-cart-grid {
  1425.    justify-content: start;
  1426.    flex-direction: column;
  1427.    margin: 0;
  1428.  }
  1429.  .wallet-cart-button-container {
  1430.    width: var(--wallet-button-width-vertical);
  1431.    height: var(--wallet-button-height-vertical);
  1432.    margin: var(--wallet-button-container-margin-vertical);
  1433.  }
  1434.  .wallet-cart-button-container:first-child {
  1435.    margin-top: 0;
  1436.  }
  1437.  .wallet-cart-grid .wallet-cart-button {
  1438.    width: var(--wallet-button-width-vertical);
  1439.    height: var(--wallet-button-height-vertical);
  1440.  }
  1441. }
  1442.  
  1443.        #shopify-buyer-consent {
  1444.  margin-top: 1em;
  1445.  display: inline-block;
  1446.  width: 100%;
  1447. }
  1448.  
  1449. #shopify-buyer-consent.hidden {
  1450.  display: none;
  1451. }
  1452.  
  1453. #shopify-subscription-policy-button {
  1454.  background: none;
  1455.  border: none;
  1456.  padding: 0;
  1457.  text-decoration: underline;
  1458.  font-size: inherit;
  1459.  cursor: pointer;
  1460. }
  1461.  
  1462. #shopify-subscription-policy-button::before {
  1463.  box-shadow: none;
  1464. }
  1465.  
  1466.      </style>
  1467.  
  1468. <style id="shopify-accelerated-checkout-cart-grid-with-margin-top">.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  1469.  margin-top: 8px;
  1470. }
  1471.  
  1472.  
  1473. @container dcc (width >= 150px) and (width <= 500px) {
  1474.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  1475.    margin-top: 8px;
  1476.  }
  1477. }
  1478.  
  1479. @container dcc (width <= 310px) {
  1480.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  1481.    margin-top: 8px;
  1482.  }
  1483. }
  1484.  
  1485. @container dcc (width <= 470px) {
  1486.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  1487.    margin-top: 8px;
  1488.  }
  1489. }
  1490.  
  1491. @container dcc (width <= 630px) {
  1492.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  1493.    margin-top: 8px;
  1494.  }
  1495. }
  1496.  
  1497. @container dcc (width <= 790px) {
  1498.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  1499.    margin-top: 8px;
  1500.  }
  1501. }
  1502.  
  1503. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  1504.  margin-top: 8px;
  1505. }
  1506.  
  1507. @media screen and (max-width: 750px) {
  1508.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  1509.    margin-top: 8px;
  1510.  }
  1511. }
  1512.  
  1513. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  1514.  .wallet-cart-button-container:first-child {
  1515.    margin-top: 8px;
  1516.  }
  1517. }
  1518. </style>
  1519. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1520. <link href="//thekoda.online/cdn/shop/t/6/assets/theme.css?v=81628344050550655111725539845" rel="stylesheet" type="text/css" media="all" />
  1521.  
  1522.    
  1523.  
  1524.    
  1525.  
  1526.    
  1527.  
  1528.  
  1529.  
  1530.  
  1531. <!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-prerender-links/4aa30173-495d-4e49-b377-c5ee4024262f --><script type="text/javascript">
  1532. var prerenderLinkElement=document.createElement("link");prerenderLinkElement.rel="prerender";var prerender_loading=!1,excludePatterns=["/cart/","/checkout/","/account/"];function prerenderLinkSK(e){prerender_loading||isExcludedSK(e)||(prerender_loading=!0,prerenderLinkElement.href=e,document.head.appendChild(prerenderLinkElement),prerenderLinkElement.onload=function(){prerender_loading=!1},prerenderLinkElement.onerror=function(){prerender_loading=!1},setTimeout(function(){prerender_loading&&(prerender_loading=!1)},2e3))}function isExcludedSK(e){if(-1===e.indexOf(window.location.hostname))return!0;for(var r=0;r<excludePatterns.length;r++)if(-1!==e.indexOf(excludePatterns[r]))return!0;return!1}document.addEventListener("DOMContentLoaded",function(){for(var e=document.getElementsByTagName("a"),r=0;r<e.length;r++){var n=e[r],t=n.getAttribute("href");if(t&&!t.startsWith("javascript:")&&!t.startsWith("mailto:")&&!t.startsWith("tel:")&&!t.startsWith("#")){var i=n.getAttribute("onmouseover");i?n.setAttribute("onmouseover",i+"; prerenderLinkSK(this.href);"):n.setAttribute("onmouseover","prerenderLinkSK(this.href);")}}});
  1533. </script>
  1534.  
  1535.  
  1536. <!-- END app app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  <script async src="https://static.klaviyo.com/onsite/js/Rirpg5/klaviyo.js?company_id=Rirpg5"></script>
  1550.  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>
  1551.  
  1552.  
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  <script>
  1558.    window.klaviyoReviewsProductDesignMode = false
  1559.  </script>
  1560.  
  1561.  
  1562.  
  1563. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-jsonld-breadcrumb/4aa30173-495d-4e49-b377-c5ee4024262f -->
  1564. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-jsonld-website/4aa30173-495d-4e49-b377-c5ee4024262f --><script type="application/ld+json" data-app="seoking">
  1565.  {
  1566.    "@context": "https://schema.org/",
  1567.    "@type": "WebSite",
  1568.    "url": "https://thekoda.online",
  1569.    "name": "thekodaonline",
  1570.    "potentialAction": {
  1571.      "@type": "SearchAction",
  1572.      "query-input": "required name=search_term_string",
  1573.      "target": {
  1574.          "@type": "EntryPoint",
  1575.          "urlTemplate": "https://thekoda.online/search?q={search_term_string}"
  1576.      }
  1577.    }
  1578.  }
  1579. </script>
  1580.  
  1581.  
  1582. <!-- END app app block --><!-- BEGIN app block: shopify://apps/vitals/blocks/app-embed/aeb48102-2a5a-4f39-bdbd-d8d49f4e20b8 --><link rel="preconnect" href="https://appsolve.io/" /><link rel="preconnect" href="https://cdn-sf.vitals.app/" /><script data-ver="52" id="vtlsAebData">window.vtlsLiquidData = window.vtlsLiquidData || {};window.vtlsLiquidData.moduleSettings = {"1":{"3":"63c3e5","4":"left","5":"square","44":"worldwide_shipping,30_back,guaranteed,accredited","85":"","86":20,"87":20,"148":123,"978":"{}","1060":"303030"},"3":{"6":"Sale ending in","8":30,"24":0,"25":2,"26":1,"27":3,"80":"left","118":"default","146":15,"179":"de4848","180":"cccccc","185":1,"186":10,"189":false,"227":"f7f7f7","228":"f7f7f7","230":"de4848","416":"day","426":"days","427":"hour","428":"hours","429":"minute","430":"minutes","431":"second","432":"seconds","436":true,"505":"000000","840":"626262","841":"444444","842":"000000","953":"evergreen","955":"","956":"","1079":"{}"},"5":[],"9":[],"10":{"66":"circle","67":"ffffff","68":"pop","69":"left","70":5,"71":"ff0101"},"13":{"34":"☞ Don't forget this..."},"14":{"45":6,"46":8,"47":10,"48":12,"49":8,"51":true,"52":true,"112":"dark","113":"bottom","198":"fafafa","199":"888888","200":"363636","201":"636363","202":"636363","203":14,"205":13,"206":460,"207":9,"222":false,"223":true,"353":"from","354":"purchased","355":"Someone","419":"second","420":"seconds","421":"minute","422":"minutes","423":"hour","424":"hours","433":"ago","458":"","474":"standard","475":"big_picture","490":false,"497":"added to cart","498":true,"499":false,"500":10,"501":"##count## people added this product to cart today:","515":"San Francisco, CA","557":true,"589":"00a332","799":60,"802":1,"807":"day","808":"days"},"16":{"232":true,"245":"bottom","246":"bottom","247":"Add to Cart","411":true,"417":false,"418":false,"477":"automatic","478":"000000","479":"ffffff","489":true,"843":"ffffff","844":"2e2e2e","921":false,"922":true,"923":true,"924":"2","925":"2","952":"{}","1021":true},"17":{"41":"jello-shake","42":"interval","43":10},"21":{"142":true,"143":"left","144":0,"145":0,"190":true,"216":"ffce07","217":true,"218":0,"219":0,"220":"center","248":true,"278":"ffffff","279":true,"280":"ffffff","281":"eaeaea","287":"reviews","288":"See more reviews","289":"Write a Review","290":"Share your experience","291":"Rating","292":"Name","293":"Review","294":"We'd love to see a picture","295":"Submit Review","296":"cancel","297":"No reviews yet. Be the first to add a review.","333":20,"334":100,"335":10,"336":50,"410":true,"447":"Thank you for adding your review!","481":"{{ stars }} {{ averageRating }} ({{ totalReviews }} {{ reviewsTranslation }})","482":"{{ stars }} ({{ totalReviews }})","483":19,"484":18,"494":2,"504":"Only image file types are supported for upload","507":true,"508":"E-mail","510":"00a332","563":"The review could not be added. If the problem persists, please contact us.","598":"Store reply","688":"Customers from all over the world love our products!","689":"Happy Customers","691":false,"745":true,"746":"list","747":true,"748":"ffce07","752":"Verified buyer","787":"columns","788":true,"793":"000000","794":"ffffff","846":"5e5e5e","877":"222222","878":"737373","879":"f7f7f7","880":"5e5e5e","948":0,"949":1,"951":"{}","994":"Our Customers Love Us","996":1,"1002":4,"1003":false,"1005":false,"1034":false,"1038":20,"1039":20,"1040":10,"1041":10,"1042":100,"1043":50,"1044":"columns","1045":true,"1046":"5e5e5e","1047":"5e5e5e","1048":"222222","1061":false,"1062":0,"1063":0,"1064":"Collected by","1065":"From {{reviews_count}} reviews","1067":true,"1068":false,"1069":true,"1070":true,"1072":"{}","1073":"left","1074":"center","1078":false,"1089":"{}","1090":0},"22":{"165":true,"193":"f31212","234":"Customers who bought this also bought","238":"left","323":"From","325":"Add to Cart","342":false,"406":true,"445":"Out of stock","486":"","856":"ffffff","857":"f6f6f6","858":"4f4f4f","960":"{}","1015":1,"1017":1,"1019":true,"1022":true},"23":{"91":"{\"Facebook\":\"https:\/\/www.facebook.com\/share\/QnT38cfqSW3SJJrT\/?mibextid=qi2Omg\",\"Instagram\":\"https:\/\/www.instagram.com\/kodalife2021_?igsh=b3piMWw4c3ZjNml0\",\"TikTok\":\"https:\/\/www.tiktok.com\/@kodafashion24?_t=8pNdwWOffLi\u0026_r=1\"}","114":"left","135":true,"240":300},"24":{"93":10,"94":"fff5cd","359":"222222","389":"An item in your cart is in high demand.","390":"Complete the order to make sure it’s yours! {{ counter }}","502":true,"977":"{}","1084":true},"25":{"537":false,"538":true,"541":"505050","542":"See more results","543":"Popular searches","544":"Here are your results","545":"No results found.","546":"What are you looking for?","547":"Collections","548":true},"28":{"692":true},"30":{"128":true,"129":true,"134":"1,2,3,4","136":true,"138":"Prices shown here are calculated in {{ visible_currency }}, but the final order will be paid in {{ default_currency }}.","139":false,"140":true,"141":true,"150":true,"151":"bottom_left","152":"bottom_left","168":99,"191":"ffffff","249":false,"298":true,"337":"ffffff","338":"f4f4f4","339":"111111","415":false,"459":true,"524":true,"609":14,"852":"f6f6f6"},"31":[],"33":{"187":2,"188":"h3","241":true,"242":true,"272":"auto","413":"Description","414":true,"485":"{{ stars }} ({{ totalReviews }})","811":"222222","812":"dedede","813":"ffffff","814":"222222","815":"ffffff","816":"ffffff","817":"222222","818":"dedede","819":"f1f2f6","820":"222222","821":"ffffff","823":"f1f1f1","824":"8d8d8d","825":"333333","826":"ffffff","827":"0a3d62","828":"222222","829":"ededed","830":"ffffff","831":"222222","832":"222222","833":"ededed","834":"ffffff","835":"222222","837":"ffffff","838":"dddddd","839":"222222","979":"{}"},"44":{"360":"Free shipping to {{ country }} in {{ min_interval }} to {{ max_interval }} {{ interval_type }}, for orders over {{ min_value }}.","361":"Ships to {{ country }} in {{ min_interval }} to {{ max_interval }} {{ interval_type }}, for {{ price }}.","362":"ffffff","363":"cccccc","364":"333333","726":"Hide shipping options","727":"See all shipping options","728":true,"753":"day","754":"days","755":"business day","756":"business days","757":"week","758":"weeks","759":"business week","760":"business weeks","1081":"{}"},"48":{"469":true,"491":true,"588":true,"595":false,"603":"","605":"","606":"","781":true,"783":1,"876":0,"1076":true},"51":{"599":true,"604":true,"873":""},"52":{"581":"standard","582":false,"583":5,"584":true,"585":"Email address already used","586":"Invalid email address","587":24,"995":"{}","1049":"You have to accept marketing emails to become a subscriber","1050":"You have to accept the privacy policy and marketing emails","1051":"You have to accept the Privacy Policy","1052":"Privacy Policy","1055":true,"1056":"I have read and agree to the {{ privacy_policy }}","1057":"","1058":true,"1059":"Email me with news and offers"},"53":{"636":"4b8e15","637":"ffffff","638":0,"639":5,"640":"You save:","642":"Out of stock","643":"This item:","644":"Total Price:","645":true,"646":"Add to cart","647":"for","648":"with","649":"off","650":"each","651":"Buy","652":"Subtotal","653":"Discount","654":"Old price","655":16,"656":8,"657":16,"658":8,"659":"ffffff","660":14,"661":"center","671":"000000","702":"Quantity","731":"and","733":0,"734":"362e94","735":"8e86ed","736":true,"737":true,"738":true,"739":"right","740":60,"741":"Free of charge","742":"Free","743":"Claim gift","744":"1,2,4,5","750":"Gift","762":"Discount","763":false,"773":"Your product has been added to the cart.","786":"save","848":"ffffff","849":"f6f6f6","850":"4f4f4f","851":"Per item:","895":"eceeef","1007":"Swap item","1010":"{}","1012":false,"1028":"Other customers loved this offer","1029":"Add to order\t","1030":"Added to order","1031":"Check out","1032":1,"1033":"{}","1035":"See more","1036":"See less","1037":"{}","1077":"%","1083":"Check out","1085":100,"1086":"cd1900","1091":10,"1092":1,"1093":"{}"},"54":{"678":"Allow","679":"Later","680":"https:\/\/d3acrzpqhtrug6.cloudfront.net\/static\/modules\/push_marketing\/assets\/settings\/logo_url\/notification-icon.png","681":"Subscribe to receive notifications about our exclusive promotions and discounts.","682":"Be the first to get the best","683":"standard","684":"small","694":5,"695":"seconds","696":5,"697":"seconds","698":false,"699":false,"700":"[{\"enabled\":true,\"title\":\"First message title\",\"body\":\"First message body\",\"delay\":1200,\"actions\":[{\"link\":\"https:\/\/primary.com\/\",\"text\":\"Primary Link Text\"},{\"link\":\"https:\/\/secondary.com\/\",\"text\":\"Secondary Link\"}]},{\"enabled\":true,\"title\":\"Second message title\",\"body\":\"Second message body\",\"delay\":14400,\"actions\":[{\"link\":\"https:\/\/primary.com\/\",\"text\":\"Primary Link Text\"}]}]","701":"[{\"enabled\":true,\"title\":\"Welcome message title\",\"body\":\"Welcome message body\",\"delay\":60,\"actions\":[{\"link\":\"https:\/\/primary.com\/\",\"text\":\"Primary Link Text\"}]}]","704":"362e94","705":"ffffff","869":"ffffff","870":"222222"},"56":[],"57":{"710":"Wishlist","711":"Save your favorite products for later","712":"Add to Wishlist","713":"Added to Wishlist","714":true,"716":true,"717":"f31212","718":"From","719":"Add to cart","720":true,"721":"Out of stock","722":16,"766":"Share","767":"Share Wishlist","768":"Copy link","769":"Link copied","770":"Your Wishlist is empty. ","771":true,"772":"My Wishlist","778":"ffffff","779":"000000","780":"ffffff","791":"","792":"","801":true,"804":"000000","805":"FFFFFF","874":"header","881":true,"889":"Added to cart","896":"light","897":"2A2A2A","898":20,"899":"121212","900":"FFFFFF","901":16,"990":0,"992":"{}"}};window.vtlsLiquidData.hasActiveModules = true;window.vtlsLiquidData.shopThemeName = "Impact";window.vtlsLiquidData.settingTranslation = {"3":{"6":{"en":"Sale ending in"},"416":{"en":"day"},"426":{"en":"days"},"427":{"en":"hour"},"428":{"en":"hours"},"429":{"en":"minute"},"430":{"en":"minutes"},"431":{"en":"second"},"432":{"en":"seconds"}},"13":{"34":{"en":"☞ Don't forget this..."}},"1":{"85":{"en":""}},"30":{"138":{"en":"Prices shown here are calculated in {{ visible_currency }}, but the final order will be paid in {{ default_currency }}."}},"22":{"234":{"en":"Customers who bought this also bought"},"323":{"en":"From"},"325":{"en":"Add to Cart"},"445":{"en":"Out of stock"}},"21":{"287":{"en":"reviews"},"288":{"en":"See more reviews"},"289":{"en":"Write a Review"},"290":{"en":"Share your experience"},"291":{"en":"Rating"},"292":{"en":"Name"},"293":{"en":"Review"},"294":{"en":"We'd love to see a picture"},"295":{"en":"Submit Review"},"296":{"en":"cancel"},"297":{"en":"No reviews yet. Be the first to add a review."},"447":{"en":"Thank you for adding your review!"},"481":{"en":"{{ stars }} {{ averageRating }} ({{ totalReviews }} {{ reviewsTranslation }})"},"482":{"en":"{{ stars }} ({{ totalReviews }})"},"504":{"en":"Only image file types are supported for upload"},"508":{"en":"E-mail"},"563":{"en":"The review could not be added. If the problem persists, please contact us."},"598":{"en":"Store reply"},"688":{"en":"Customers from all over the world love our products!"},"689":{"en":"Happy Customers"},"752":{"en":"Verified buyer"},"994":{"en":"Our Customers Love Us"},"1064":{"en":"Collected by"},"1065":{"en":"From {{reviews_count}} reviews"}},"14":{"353":{"en":"from"},"354":{"en":"purchased"},"355":{"en":"Someone"},"419":{"en":"second"},"420":{"en":"seconds"},"421":{"en":"minute"},"422":{"en":"minutes"},"423":{"en":"hour"},"424":{"en":"hours"},"433":{"en":"ago"},"497":{"en":"added to cart"},"501":{"en":"##count## people added this product to cart today:"},"515":{"en":"San Francisco, CA"},"808":{"en":"days"},"807":{"en":"day"}},"44":{"360":{"en":"Free shipping to {{ country }} in {{ min_interval }} to {{ max_interval }} {{ interval_type }}, for orders over {{ min_value }}."},"361":{"en":"Ships to {{ country }} in {{ min_interval }} to {{ max_interval }} {{ interval_type }}, for {{ price }}."},"726":{"en":"Hide shipping options"},"727":{"en":"See all shipping options"},"753":{"en":"day"},"754":{"en":"days"},"755":{"en":"business day"},"756":{"en":"business days"},"757":{"en":"week"},"758":{"en":"weeks"},"759":{"en":"business week"},"760":{"en":"business weeks"}},"24":{"389":{"en":"An item in your cart is in high demand."},"390":{"en":"Complete the order to make sure it’s yours! \u003cspan id=\"cart_reserved_timer\"\u003e\u003c\/span\u003e"}},"33":{"413":{"en":"Description"},"485":{"en":"{{ stars }} ({{ totalReviews }})"}},"50":{"530":{"en":"We're here to help! Contact us anytime even if it's just to say hi!"},"892":{"en":"Need help?"},"893":{"en":"Let us know if you have any questions."},"894":{"en":"We’ll get back to you as soon as possible"}},"25":{"542":{"en":"See more results"},"543":{"en":"Popular searches"},"544":{"en":"Here are your results"},"545":{"en":"No results found."},"546":{"en":"What are you looking for?"},"547":{"en":"Collections"}},"52":{"585":{"en":"Email address already used"},"586":{"en":"Invalid email address"},"1049":{"en":"You have to accept marketing emails to become a subscriber"},"1051":{"en":"You have to accept the Privacy Policy"},"1050":{"en":"You have to accept the privacy policy and marketing emails"},"1052":{"en":"Privacy Policy"},"1056":{"en":"I have read and agree to the {{ privacy_policy }}"},"1059":{"en":"Email me with news and offers"}},"53":{"640":{"en":"You save:"},"642":{"en":"Out of stock"},"643":{"en":"This item:"},"644":{"en":"Total Price:"},"646":{"en":"Add to cart"},"647":{"en":"for"},"648":{"en":"with"},"649":{"en":"off"},"650":{"en":"each"},"651":{"en":"Buy"},"652":{"en":"Subtotal"},"653":{"en":"Discount"},"654":{"en":"Old price"},"702":{"en":"Quantity"},"731":{"en":"and"},"741":{"en":"Free of charge"},"742":{"en":"Free"},"743":{"en":"Claim gift"},"750":{"en":"Gift"},"762":{"en":"Discount"},"773":{"en":"Your product has been added to the cart."},"786":{"en":"save"},"851":{"en":"Per item:"},"1007":{"en":"Swap item"},"1028":{"en":"Other customers loved this offer"},"1029":{"en":"Add to order\t"},"1030":{"en":"Added to order"},"1031":{"en":"Check out"},"1035":{"en":"See more"},"1036":{"en":"See less"},"1083":{"en":"Check out"}},"54":{"678":{"en":"Allow"},"679":{"en":"Later"},"681":{"en":"Subscribe to receive notifications about our exclusive promotions and discounts."},"682":{"en":"Be the first to get the best"}},"57":{"710":{"en":"Wishlist"},"711":{"en":"Save your favorite products for later"},"712":{"en":"Add to Wishlist"},"713":{"en":"Added to Wishlist"},"718":{"en":"From"},"719":{"en":"Add to cart"},"721":{"en":"Out of stock"},"766":{"en":"Share"},"767":{"en":"Share Wishlist"},"768":{"en":"Copy link"},"769":{"en":"Link copied"},"770":{"en":"Your Wishlist is empty. "},"772":{"en":"My Wishlist"},"889":{"en":"Added to cart"}}};window.vtlsLiquidData.facebookPixel=[{"pixelId":"390360373833527","items":[],"type":"master"}];window.vtlsLiquidData.shippingInfo={"rules":[{"name":"Economy","a":50,"b":0,"c":6,"d":9,"e":{"en":"days"},"f":0,"co":["US"]}],"country_codes":{"AF":"Afghanistan","AX":"Åland Islands","AL":"Albania","DZ":"Algeria","AD":"Andorra","AO":"Angola","AI":"Anguilla","AG":"Antigua \u0026 Barbuda","AR":"Argentina","AM":"Armenia","AW":"Aruba","AU":"Australia","AT":"Austria","AZ":"Azerbaijan","BS":"Bahamas","BH":"Bahrain","BD":"Bangladesh","BB":"Barbados","BY":"Belarus","BE":"Belgium","BZ":"Belize","BJ":"Benin","BM":"Bermuda","BT":"Bhutan","BO":"Bolivia","BA":"Bosnia \u0026 Herzegovina","BW":"Botswana","BV":"Bouvet Island","BR":"Brazil","IO":"British Indian Ocean Territory","BN":"Brunei","BG":"Bulgaria","BF":"Burkina Faso","BI":"Burundi","KH":"Cambodia","CA":"Canada","CV":"Cape Verde","KY":"Cayman Islands","CF":"Central African Republic","TD":"Chad","CL":"Chile","CN":"China","CX":"Christmas Island","CC":"Cocos (Keeling) Islands","CO":"Colombia","KM":"Comoros","CG":"Congo - Brazzaville","CD":"Congo - Kinshasa","CK":"Cook Islands","CR":"Costa Rica","CI":"Côte d’Ivoire","HR":"Croatia","CU":"Cuba","CW":"Curaçao","CY":"Cyprus","CZ":"Czechia","DK":"Denmark","DJ":"Djibouti","DM":"Dominica","DO":"Dominican Republic","EC":"Ecuador","EG":"Egypt","SV":"El Salvador","GQ":"Equatorial Guinea","ER":"Eritrea","EE":"Estonia","ET":"Ethiopia","FK":"Falkland Islands","FO":"Faroe Islands","FJ":"Fiji","FI":"Finland","FR":"France","GF":"French Guiana","PF":"French Polynesia","TF":"French Southern Territories","GA":"Gabon","GM":"Gambia","GE":"Georgia","DE":"Germany","GH":"Ghana","GI":"Gibraltar","GR":"Greece","GL":"Greenland","GD":"Grenada","GP":"Guadeloupe","GT":"Guatemala","GG":"Guernsey","GN":"Guinea","GW":"Guinea-Bissau","GY":"Guyana","HT":"Haiti","HM":"Heard \u0026 McDonald Islands","VA":"Vatican City","HN":"Honduras","HK":"Hong Kong SAR China","HU":"Hungary","IS":"Iceland","IN":"India","ID":"Indonesia","IR":"Iran","IQ":"Iraq","IE":"Ireland","IM":"Isle of Man","IL":"Israel","IT":"Italy","JM":"Jamaica","JP":"Japan","JE":"Jersey","JO":"Jordan","KZ":"Kazakhstan","KE":"Kenya","KI":"Kiribati","KP":"North Korea","XK":"Kosovo","KW":"Kuwait","KG":"Kyrgyzstan","LA":"Laos","LV":"Latvia","LB":"Lebanon","LS":"Lesotho","LR":"Liberia","LY":"Libya","LI":"Liechtenstein","LT":"Lithuania","LU":"Luxembourg","MO":"Macao SAR China","MK":"North Macedonia","MG":"Madagascar","MW":"Malawi","MY":"Malaysia","MV":"Maldives","ML":"Mali","MT":"Malta","MQ":"Martinique","MR":"Mauritania","MU":"Mauritius","YT":"Mayotte","MX":"Mexico","MD":"Moldova","MC":"Monaco","MN":"Mongolia","ME":"Montenegro","MS":"Montserrat","MA":"Morocco","MZ":"Mozambique","MM":"Myanmar (Burma)","NA":"Namibia","NR":"Nauru","NP":"Nepal","NL":"Netherlands","AN":"Curaçao","NC":"New Caledonia","NZ":"New Zealand","NI":"Nicaragua","NE":"Niger","NG":"Nigeria","NU":"Niue","NF":"Norfolk Island","NO":"Norway","OM":"Oman","PK":"Pakistan","PS":"Palestinian Territories","PA":"Panama","PG":"Papua New Guinea","PY":"Paraguay","PE":"Peru","PH":"Philippines","PN":"Pitcairn Islands","PL":"Poland","PT":"Portugal","QA":"Qatar","CM":"Cameroon","*":"","RE":"Réunion","RO":"Romania","RU":"Russia","RW":"Rwanda","BL":"St. Barthélemy","SH":"St. Helena","KN":"St. Kitts \u0026 Nevis","LC":"St. Lucia","MF":"St. Martin","PM":"St. Pierre \u0026 Miquelon","WS":"Samoa","SM":"San Marino","ST":"São Tomé \u0026 Príncipe","SA":"Saudi Arabia","SN":"Senegal","RS":"Serbia","SC":"Seychelles","SL":"Sierra Leone","SG":"Singapore","SX":"Sint Maarten","SK":"Slovakia","SI":"Slovenia","SB":"Solomon Islands","SO":"Somalia","ZA":"South Africa","GS":"South Georgia \u0026 South Sandwich Islands","KR":"South Korea","ES":"Spain","LK":"Sri Lanka","VC":"St. Vincent \u0026 Grenadines","SD":"Sudan","SR":"Suriname","SJ":"Svalbard \u0026 Jan Mayen","SZ":"Eswatini","SE":"Sweden","CH":"Switzerland","SY":"Syria","TW":"Taiwan","TJ":"Tajikistan","TZ":"Tanzania","TH":"Thailand","TL":"Timor-Leste","TG":"Togo","TK":"Tokelau","TO":"Tonga","TT":"Trinidad \u0026 Tobago","TN":"Tunisia","TR":"Turkey","TM":"Turkmenistan","TC":"Turks \u0026 Caicos Islands","TV":"Tuvalu","UG":"Uganda","UA":"Ukraine","AE":"United Arab Emirates","GB":"United Kingdom","US":"United States","UM":"U.S. Outlying Islands","UY":"Uruguay","UZ":"Uzbekistan","VU":"Vanuatu","VE":"Venezuela","VN":"Vietnam","VG":"British Virgin Islands","WF":"Wallis \u0026 Futuna","EH":"Western Sahara","YE":"Yemen","ZM":"Zambia","ZW":"Zimbabwe","SS":"South Sudan","BQ":"Caribbean Netherlands","PR":"Puerto Rico","GU":"Guam","VI":"U.S. Virgin Islands","MP":"Northern Mariana Islands","AS":"American Samoa","FM":"Micronesia","PW":"Palau","MH":"Marshall Islands","TA":"Tristan da Cunha","AC":"Ascension Island","AQ":"Antarctica"},"magicWords":["{{ min_value }}","{{ max_value }}","{{ country }}","{{ min_interval }}","{{ max_interval }}","{{ interval_type }}","{{ price }}"],"min_interval":"{{ min_interval }}","max_interval":"{{ max_interval }}","interval_type":"{{ interval_type }}"};window.vtlsLiquidData.popUps=[{"id":"Vfgl_bo","type":1,"triggerType":0,"publicTitle":{"en":"GET 20% OFF"},"description":{"en":"Enter your email to get your Coupon."},"ctaLabel":{"en":"Show me the coupon"},"traits":"{\"image\":{\"traits\":{\"position\":{\"default\":\"right\"}}}}","imageUrl":"https:\/\/cdn-pop.vitals.app\/89825181988\/6701c05d9773c.jpeg","addSecondaryButton":false,"secondaryButtonText":{"en":"No Thanks "},"logoUrl":"https:\/\/cdn-pop.vitals.app\/89825181988\/6701c04198601.jpg","addLogo":true,"leadInputPlaceholder":{"en":"Enter your e-mail HERE"},"successTitle":{"en":"THANK YOU!"},"successDescription":{"en":"Congratulations! Here is your well-deserved coupon:"},"discountCode":"XXXX-AB","displayDelay":22,"cssClass":"type_discount_capture","themeType":null}];window.vtlsLiquidData.ubOfferTypes={"1":[1,2],"3":[1,2,3,6],"5":true,"6":true};window.vtlsLiquidData.shopSettings={};window.vtlsLiquidData.shopSettings.cartType="popover";window.vtlsLiquidData.spat="45fbdaf27a906616c9bb5177cfa01e43";window.vtlsLiquidData.shopInfo={id:89825181988,domain:"thekoda.online",shopifyDomain:"90a790-dc-2.myshopify.com",primaryLocaleIsoCode: "en",defaultCurrency:"USD",enabledCurrencies:["AED","CZK","EUR","HKD","ILS","JPY","KRW","MYR","SEK","SGD","USD"],moneyFormat:"${{amount}}",moneyWithCurrencyFormat:"${{amount}} USD"};window.vtlsLiquidData.localization = [{"co": "AT","cu": "EUR"},{"co": "BE","cu": "EUR"},{"co": "CZ","cu": "CZK"},{"co": "FI","cu": "EUR"},{"co": "DE","cu": "EUR"},{"co": "HK","cu": "HKD"},{"co": "IE","cu": "EUR"},{"co": "IL","cu": "ILS"},{"co": "IT","cu": "EUR"},{"co": "JP","cu": "JPY"},{"co": "MY","cu": "MYR"},{"co": "PT","cu": "EUR"},{"co": "SG","cu": "SGD"},{"co": "KR","cu": "KRW"},{"co": "ES","cu": "EUR"},{"co": "SE","cu": "SEK"},{"co": "AE","cu": "AED"},{"co": "US","cu": "USD"}];window.vtlsLiquidData.cacheKeys = [1729120483,1728504904,1726596091,1728496204,1729120483,0,1728495878,1729120483];</script><script class="vtlsAebDynamicFunction" data-key="147">window.vtlsLiquidData = window.vtlsLiquidData || {};window.vtlsLiquidData.dynamicFunctions = {};window.vtlsLiquidData.dynamicFunctions2 = {};window.vtlsLiquidData.dynamicFunctions["147"]=($)=>{return {"location":"description","locator":"after"};};window.vtlsLiquidData.dynamicFunctions2["147"]=({$, handle, VITALS_PAGE_TYPE})=>{return {"location":"description","locator":"after"};};</script><script id="vtlsAebDynamicFunctions3">window.vtlsLiquidData = window.vtlsLiquidData || {};window.vtlsLiquidData.dynamicFunctions3 = ({$,vitalsGet,vitalsSet,VITALS_GET_$_DESCRIPTION,VITALS_GET_$_END_SECTION,VITALS_GET_$_ATC_FORM,VITALS_GET_$_ATC_BUTTON,submit_button,form_add_to_cart,cartItemVariantId,VITALS_EVENT_CART_UPDATED,VITALS_EVENT_DISCOUNTS_LOADED,VITALS_EVENT_PRICES_UPDATED,VITALS_EVENT_RENDER_CAROUSEL_STARS,VITALS_EVENT_RENDER_COLLECTION_STARS,VITALS_EVENT_SMART_BAR_RENDERED,VITALS_EVENT_SMART_BAR_CLOSED,VITALS_EVENT_TABS_RENDERED,VITALS_EVENT_VARIANT_CHANGED,VITALS_EVENT_ATC_BUTTON_FOUND,VITALS_IS_MOBILE,VITALS_PAGE_TYPE,VITALS_APPEND_CSS,VITALS_HOOK__CAN_EXECUTE_CHECKOUT,VITALS_HOOK__GET_CUSTOM_CHECKOUT_URL_PARAMETERS,VITALS_HOOK__GET_CUSTOM_VARIANT_SELECTOR,VITALS_HOOK__GET_IMAGES_DEFAULT_SIZE,VITALS_HOOK__ON_CLICK_CHECKOUT_BUTTON,VITALS_HOOK__DONT_ACCELERATE_CHECKOUT,VITALS_HOOK_POST_CHECKOUT_DRAWER_INTEGRATION,VITALS_FLAG__IGNORE_VARIANT_ID_FROM_URL,VITALS_FLAG__UPDATE_ATC_BUTTON_REFERENCE,VITALS_FLAG__UPDATE_CART_ON_CHECKOUT,VITALS_FLAG__USE_CAPTURE_FOR_ATC_BUTTON,VITALS_FLAG__USE_FIRST_ATC_SPAN_FOR_PRE_ORDER,VITALS_FLAG__USE_HTML_FOR_STICKY_ATC_BUTTON,VITALS_FLAG__STOP_EXECUTION,VITALS_FLAG__USE_CUSTOM_COLLECTION_FILTER_DROPDOWN,VITALS_FLAG__PRE_ORDER_START_WITH_OBSERVER,VITALS_FLAG__PRE_ORDER_OBSERVER_DELAY,VITALS_FLAG__ON_CHECKOUT_CLICK_USE_CAPTURE_EVENT,handle,}) => {return {"147": {"location":"description","locator":"after"},};};</script><script id="vtlsAebDocumentInjectors">window.vtlsLiquidData = window.vtlsLiquidData || {};window.vtlsLiquidData.documentInjectors = ({$,vitalsGet,vitalsSet,VITALS_IS_MOBILE,VITALS_APPEND_CSS}) => {const documentInjectors = {};documentInjectors["1"]={};documentInjectors["1"]["d"]=[];documentInjectors["1"]["d"]["0"]={};documentInjectors["1"]["d"]["0"]["a"]=null;documentInjectors["1"]["d"]["0"]["s"]=".product-info__description";documentInjectors["2"]={};documentInjectors["2"]["d"]=[];documentInjectors["2"]["d"]["0"]={};documentInjectors["2"]["d"]["0"]["a"]={"l":"after"};documentInjectors["2"]["d"]["0"]["s"]=".product-info";documentInjectors["5"]={};documentInjectors["5"]["m"]=[];documentInjectors["5"]["m"]["0"]={};documentInjectors["5"]["m"]["0"]["a"]={"l":"append"};documentInjectors["5"]["m"]["0"]["s"]=".header__secondary-nav";documentInjectors["5"]["d"]=[];documentInjectors["5"]["d"]["0"]={};documentInjectors["5"]["d"]["0"]["a"]={"l":"before"};documentInjectors["5"]["d"]["0"]["s"]=".header__wrapper .header__secondary-nav .header__icon-list";documentInjectors["6"]={};documentInjectors["6"]["d"]=[];documentInjectors["6"]["d"]["0"]={};documentInjectors["6"]["d"]["0"]["a"]=[];documentInjectors["6"]["d"]["0"]["s"]=".product-list";documentInjectors["3"]={};documentInjectors["3"]["d"]=[];documentInjectors["3"]["d"]["0"]={};documentInjectors["3"]["d"]["0"]["a"]={"lft":".cart-form__totals \u003e.h-stack.gap-4:first-child \u003e span:first-child","rght":".cart-form__totals \u003e.h-stack.gap-4:first-child \u003e span:last-child"};documentInjectors["3"]["d"]["0"]["s"]=".cart-form__totals \u003e.h-stack.gap-4:first-child \u003e span:first-child";documentInjectors["3"]["d"]["0"]["js"]=function(left_subtotal, right_subtotal, cart_html) { var vitalsDiscountsDiv = ".vitals-discounts";
  1583. if ($(vitalsDiscountsDiv).length === 0) {
  1584. $('.cart-form__totals >.h-stack.gap-4:first-child > span:last-child').html(right_subtotal);$('.cart-form__totals >.h-stack.gap-4:first-child > span:first-child').html(left_subtotal);
  1585. }
  1586.  
  1587. };documentInjectors["4"]={};documentInjectors["4"]["d"]=[];documentInjectors["4"]["d"]["0"]={};documentInjectors["4"]["d"]["0"]["a"]=null;documentInjectors["4"]["d"]["0"]["s"]="h1[class*=\"title\"]:visible:not(.cbb-also-bought-title,.ui-title-bar__title)";documentInjectors["12"]={};documentInjectors["12"]["d"]=[];documentInjectors["12"]["d"]["0"]={};documentInjectors["12"]["d"]["0"]["a"]=[];documentInjectors["12"]["d"]["0"]["s"]="form[action*=\"\/cart\/add\"]:visible:not([id*=\"product-form-installment\"]):not([id*=\"product-installment-form\"])";documentInjectors["11"]={};documentInjectors["11"]["d"]=[];documentInjectors["11"]["d"]["0"]={};documentInjectors["11"]["d"]["0"]["a"]={"ctx":"inside","last":false};documentInjectors["11"]["d"]["0"]["s"]="[type=\"submit\"]:not(.swym-button)";return documentInjectors;};</script><script id="vtlsAebBundle" src="https://appsolve.io/sf/v1/assets/js/main/90a790-dc-2.myshopify.com/1729169880/bundle.js" async></script>
  1588. <!-- END app app block --><!-- BEGIN app block: shopify://apps/yoast-seo/blocks/metatags/7c777011-bc88-4743-a24e-64336e1e5b46 -->
  1589. <!-- This site is optimized with Yoast SEO for Shopify -->
  1590. <title>thekodaonline Welcome to TheKoda Online %</title>
  1591. <meta name="description" content="thekodaonline - Welcome to TheKoda Online" />
  1592. <link rel="canonical" href="https://thekoda.online/" />
  1593. <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
  1594. <meta property="og:site_name" content="thekodaonline" />
  1595. <meta property="og:url" content="https://thekoda.online/" />
  1596. <meta property="og:locale" content="en_US" />
  1597. <meta property="og:type" content="website" />
  1598. <meta property="og:title" content="thekodaonline Welcome to TheKoda Online %" />
  1599. <meta property="og:description" content="thekodaonline - Welcome to TheKoda Online" />
  1600. <meta name="twitter:card" content="summary_large_image" />
  1601. <script type="application/ld+json" id="yoast-schema-graph">
  1602. {
  1603.  "@context": "https://schema.org",
  1604.  "@graph": [
  1605.    {
  1606.      "@type": "WebSite",
  1607.      "@id": "https://thekoda.online/#/schema/website/1",
  1608.      "url": "https://thekoda.online",
  1609.      "name": "Thekoda.online",
  1610.      "potentialAction": {
  1611.        "@type": "SearchAction",
  1612.        "target": "https://thekoda.online/search?q={search_term_string}",
  1613.        "query-input": "required name=search_term_string"
  1614.      },
  1615.      "inLanguage": "en"
  1616.    },
  1617.    {
  1618.      "@type": ["WebPage","CollectionPage"],
  1619.      "@id": "https:\/\/thekoda.online\/",
  1620.      "name": "thekodaonline Welcome to TheKoda Online %",
  1621.      "description": "thekodaonline - Welcome to TheKoda Online",
  1622.      "breadcrumb": {
  1623.        "@id": "https:\/\/thekoda.online\/#\/schema\/breadcrumb"
  1624.      },
  1625.      "isPartOf": {
  1626.        "@id": "https://thekoda.online/#/schema/website/1"
  1627.      },
  1628.      "url": "https:\/\/thekoda.online\/"
  1629.    },
  1630.    {
  1631.      "@type": "BreadcrumbList",
  1632.      "@id": "https:\/\/thekoda.online\/#\/schema\/breadcrumb",
  1633.      "itemListElement": [
  1634.        {
  1635.          "@type": "ListItem",
  1636.          "name": "Welcome to TheKoda Online",
  1637.          "position": 1
  1638.        }
  1639.      ]
  1640.    }
  1641.  
  1642.  ]}
  1643. </script>
  1644. <!--/ Yoast SEO -->
  1645. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-blacklist-js/4aa30173-495d-4e49-b377-c5ee4024262f -->
  1646.  
  1647. <script type="text/javascript">
  1648. document.addEventListener('DOMContentLoaded', function() {
  1649.  
  1650. !function(t){var e={"theme_images":"eJylWGtz2zYW/SsYfTYyfIivfJMTp/FMGnuabDvbbYcDkaCINUVwATKK2sl/33sBkqIaivI4/mK+cK/OObgv/L0qmC6FrCnLv3DVCs33vG7pltU1V1S3x0rokh4kPNU0q2RbinpHWZZxraUSXL868G2zev33Cu52omZVWoiK12zPV69X//rldvMxvftw99Pm45u79N3m0/v7h4+pF71q6t3q5rRGi7/gey/w/Xjt3awOIm9LuHfW8c2q5GJXtqvXruOtb1aK47c5vnQcsNC0Yo8PehOR68TwOGPwXNYafxiv4Ze8szDJGUxiYZKCs7ZTAIz0gIkB/EfnOW6iyQCbsDonU+irbzerJ348SJWPnv4zMArwzpzBvXUHF70buJo6gtvBFS4+OVr9+Q2BI6kAvFUdh9dVay/hVcOEoodStJzqmrMnrjStGCynLf8KyHhOtaxeqFU4r1XiBBEy/XKpfFjizUj1CGiILIgBRAZA5CDakhhURocBGbHI5qVAYpBktIS097bg0hiC/4MZfIuGrlG9rTpOJchKOQPOheKwSNOSs7wpZQ2UNyzPgXB8Anrn5rusa15Evu/Nk+96SbB24h9hf70Oozn2bwEgGQCSASA5AbRCMGJxkgGnEQWXGKzzciB5CKa3jsr09lf46wcPK9zRaLx/iubh0q5A89dE+kcoGGFtQLwoAuILIoTeOkyCHwqBKAniGRF+m9n6kBeyJ7vbDdcWzzzRMxve7u5h418hcM9ququY1sBbztQT1QdIkaYgSFktkvgRst8XUVU81emH7munjul70FCXsk1vFfxwyG7pI9zJnWJNyVUKf2+kaqQCD/aNhkefWadLlr4F0KLWsp6sOb76bzOjR+hFiTuqEfnhSQzD8hUt3CRBxb7T4tNeVJj8gRMrRE8MAUpMzWAEKSI9RUYbLdoWX2HBIZazeaHAKADpLcIVWkKxrC1TKWDx1f0uUbBKQmU2apWnerCtZKfhH8uedkp2db4o3lteQ2ymd1951rXiC0/LQTrjIqWjlho02++5ygRYeJSqVUzAQ5r2Jmh6K7sqN1fv4DV8XgGN+MXPIisZr9LPsDefoSqIFc2r6np+dF3WtReFcyEmR0GROKshEjfR1VYgSyFhOwa/vx3knjB6IQalFRetn5QtzyuStW1ag8Hc1dgUeV5xynZQZFihRAbSw7f2Yhq4uhMtbQWnjZIF5FiAzyra9Fot7oOfQWs9an1BmDiMLggTJ8l1XeIgXAy3E0yysTDJpodpY7GXqYd7g5EGiG9sdyA4ERh8U+xkxH4hGE8usf+yTvGqd7u6+S5e0SN2EQI1nPrC297bc5KtaSuMYDvFeQ1NRAvxX4PEYHpRqluu2/Rx4nkSoqJOHyDl7jhEX1e3Rwi+e/VF1HC/SX+/v92kj+8fPj+kv96/vXuYV9kPwyQcVQ5QyUHl0Au+U3kxexpBEKkRyuhk0JIRLeq2mCn7DqKn3aw23UK/vpdiifCZnegnXjxmUZNAtxX7C6odU3sYepQEsZfz5m8la1PgHDJeep/izkwLqdL9cVLZxioIKvzCYWdgnbtlKuOQIdilGIMm4xRjnjPtL7D7vhZkfrheUsVAtrrYpGZw9x0egCcD+OUU1+c2uxoDBpZiq2YXP696ZZ2qjrRrcmnKF05IWL0gLQ5qmJy5KEPAC5b47pbmIQ/oOs4KCrcFZW6e+0XCnMD15okOHD+KL1QZ17neyEEp8ue66XOiDa8GKEGgZAQ6qTkG8iAEhogtQq1srohg7MJ/tNwXGmPbCpOdCWTLz7N02SqkgeIM2eugW9jO5pSg5tkT9pOLopzlplM4fGq7XMhJVKQf2GdZH9m0JYCnm4p/BRqUYOmvm3nx4jB0L7UIrhNeFc9LnGS2C5fTOgPSGCoIDp0TfUY6yEjHslDWzAp/Vj4VZTQE14Opq5O/qJ+o6oqiAn32ohZUPwnV0gMTernEf/LXIfe462ZrDrNgnmwZiwsvzLOAB3GexNU82TDXBPGpIriOc5aUnGckpSScbbQfAQvpsRDEQgyWYd7MFTvo1khh0V0Y+cEKcmvtYMkGS8gu2sKtj2ufdaBik0/RKQohjEcolWiorGHor3EU2kooscsUZ0nG1o7Pcw//s3Ab8ZgV8Trww7gIs+2beYqT0F2fGI6nBMfP4NePfG9uOw/nKgbXDRmBkR4YscCIBbZ4oDIklNEGEmytmKG+tsOLsXSN68rkF9v2lFLm0LBCJECaKVkDrMOsoFiGhOcAe1dr8xE85tc2+JblIIAfsiyCyTxO4ihJ3IAFYZY5fpJ7v1/Y4FGUxMnL6Y9ix58bOD6Y5GEbHovT7uwJWDKCJT1YnCDbkpsFJttY3PPiVH1eGdoi68VmlsEFForBCVZu66b/2Lzk18MDkvORtp1qgWxIVOPpQMPrnE3qAo4jNf9fJ2raSqXlsl5FngQRi6EdK8J1FoRbvg1if7v2/MQJ/Tz/t13+nWARZO8fCJcg8uM5vX4CkOQEcpzvh+Mvi3VM+nbWHwETC3heKOQPW9XR+NnI31ueVgEzJFjDuA5NX9Po/Dw/Y7qD4Q9rGW0PEpSSTYUTRz1MizYMM1lJLPXDOfSLzsuSC+dlruN7kf9D52VJFMyVjs3ZqT603sQCNsV7crwP0ImFjk3vCb09UJsyMB76X5Dwn0f71h8mP3tMCZ6MlOjLDCz1aWg8czQ99F+U9Nv/AeKbyDc="},r=e.blockedUrls?e.blockedUrls:[],n=new Map;function c(t){var e=!1;return n.forEach((function(r,c){t.includes(c)&&(n.set(c,r+1),e=!0)})),e}function o(){for(let t of n.values())if(0===t)return!1;return!0}r.forEach((function(t){n.set(t,0)}));var i=!1;function u(){i||(document.createElement=t,i=!0)}document.createElement=function(e){var r=t.call(document,e);if("script"===e.toLowerCase()){var n="",i=Object.getOwnPropertyDescriptor(r,"src");if(!i||i.configurable)Object.defineProperty(r,"src",{configurable:!0,enumerable:!0,set:function(t){"string"==typeof t&&(c(t)?(n=t,o()&&u()):(n=t,Element.prototype.setAttribute.call(this,"src",t)))},get:function(){return n}});else{var s=r.setAttribute,l=r.getAttribute;r.setAttribute=function(t,e){"src"===t.toLowerCase()&&"string"==typeof e?c(e)?(n=e,o()&&u()):(n=e,s.call(this,t,e)):s.call(this,t,e)},r.getAttribute=function(t){return"src"===t.toLowerCase()?n:l.call(this,t)}}}return r};setTimeout((function(){u()}),1400)}(document.createElement);
  1651.  
  1652.  
  1653. });
  1654. </script>
  1655.  
  1656.  
  1657.  
  1658. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-disable-click/4aa30173-495d-4e49-b377-c5ee4024262f -->
  1659. <script type="text/javascript">var disableRightClick=window.navigator.userAgent;if(regex=RegExp("Chrome-Lighthouse","ig"),!1===regex.test(disableRightClick))if(disableRightClick.match(/mobi/i)){const e=document.createElement("style");e.type="text/css",e.innerHTML="img {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;pointer-events: auto;}a > img, span > img {pointer-events: auto;}",document.head.appendChild(e),document.addEventListener("contextmenu",(function(e){"img"===(e.target||e.srcElement).tagName.toLowerCase()&&e.preventDefault()}))}else{document.addEventListener("contextmenu",(function(e){e.preventDefault()})),document.addEventListener("dragstart",(function(e){return!1})),document.addEventListener("mousedown",(function(e){"img"===(e.target||e.srcElement).tagName.toLowerCase()&&2==e.which&&e.preventDefault()})),document.addEventListener("contextmenu",(function(e){"img"===(e.target||e.srcElement).tagName.toLowerCase()&&e.preventDefault()}));const e=document.createElement("style");e.type="text/css",e.innerHTML="img {-webkit-user-drag: none;user-drag: none;}",document.head.appendChild(e);const t=function(){document.body.setAttribute("ondragstart","return false;"),document.body.setAttribute("ondrop","return false;")};"complete"==document.readyState?t():document.addEventListener("DOMContentLoaded",t);var down=[];document.addEventListener("keydown",(function(e){if(down[e.keyCode]=!0,down[123]||e.ctrlKey&&e.shiftKey&&73==e.keyCode||e.ctrlKey&&e.shiftKey&&67==e.keyCode||e.ctrlKey&&85==e.keyCode||e.ctrlKey&&74==e.keyCode||e.ctrlKey&&67==e.keyCode)return e.preventDefault(),!1;down[e.keyCode]=!1})),document.addEventListener("keyup",(function(e){if(down[e.keyCode]=!0,down[16]&&down[52]&&(e.ctrlKey||e.metaKey||e.shiftKey))return e.preventDefault(),!1;down[e.keyCode]=!1})),document.addEventListener("contextmenu",(function(e){(e.target||e.srcElement).style.backgroundImage&&e.preventDefault()}))}</script>
  1660.  
  1661.  
  1662.  
  1663. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-robots-preview-image/4aa30173-495d-4e49-b377-c5ee4024262f --><meta name="robots" content="max-image-preview:large">
  1664.  
  1665.  
  1666. <!-- END app app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-jsonld-organization/4aa30173-495d-4e49-b377-c5ee4024262f --><script type="application/ld+json" data-app="seoking">
  1667.  {
  1668.    "@context": "https://schema.org/",
  1669.    "@type": "Organization",
  1670.    "url": "https://thekoda.online",
  1671.    "name": "thekodaonline","logo": "https://thekoda.online/cdn/shop/files/D3632311-9E9F-406E-9F04-A97422A82560.jpg?v=1725166702&width=140","image": "https://thekoda.online/cdn/shop/files/D3632311-9E9F-406E-9F04-A97422A82560.jpg?v=1725166702&width=140","description": "At TheKodaOnline, we are passionate about bringing you products that enhance your life in meaningful ways","sameAs": []
  1672.  }
  1673. </script>
  1674.  
  1675.  
  1676.  
  1677.  
  1678. <!-- END app app block --><script src="https://cdn.shopify.com/extensions/e224c683-a32e-4cd2-9f17-242095eee58f/inbox-953/assets/inbox-chat-loader.js" type="text/javascript" defer="defer"></script>
  1679. <script src="https://cdn.shopify.com/extensions/6d81b4a4-3ff6-4e66-b9c0-c3826a97a313/make-an-offer-36/assets/magical-make-an-offer.js" type="text/javascript" defer="defer"></script>
  1680. <link href="https://cdn.shopify.com/extensions/6d81b4a4-3ff6-4e66-b9c0-c3826a97a313/make-an-offer-36/assets/magical-make-an-offer.css" rel="stylesheet" type="text/css" media="all">
  1681. <script src="https://cdn.shopify.com/extensions/b69701fb-0f6d-421b-a611-6f64a025f6bc/klaviyo-email-marketing-sms-8/assets/app.js" type="text/javascript" defer="defer"></script>
  1682. <link href="https://cdn.shopify.com/extensions/b69701fb-0f6d-421b-a611-6f64a025f6bc/klaviyo-email-marketing-sms-8/assets/app.css" rel="stylesheet" type="text/css" media="all">
  1683. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1684. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 89825181988,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  1685. <script id="web-pixels-manager-setup">(function d(d,e,r,a,n){var o,i,t,s,l=(i=(o={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/}).modern,t=o.legacy,s=navigator.userAgent,i.test(s)?"modern":(t.test(s),"legacy"));window.Shopify=window.Shopify||{};var c=window.Shopify;c.analytics=c.analytics||{};var u=c.analytics;u.replayQueue=[],u.publish=function(d,e,r){return u.replayQueue.push([d,e,r]),!0};try{self.performance.mark("wpm:start")}catch(d){}var h=[r,"/wpm","/b",n,l.substring(0,1),".js"].join("");!function(d){var e=d.src,r=d.async,a=void 0===r||r,n=d.onload,o=d.onerror,i=document.createElement("script"),t=document.head,s=document.body;i.async=a,i.src=e,n&&i.addEventListener("load",n),o&&i.addEventListener("error",o),t?t.appendChild(i):s?s.appendChild(i):console.error("Did not find a head or body element to append the script")}({src:h,async:!0,onload:function(){var r=window.webPixelsManager.init(d);e(r);var a=window.Shopify.analytics;a.replayQueue.forEach((function(d){var e=d[0],a=d[1],n=d[2];r.publishCustomEvent(e,a,n)})),a.replayQueue=[],a.publish=r.publishCustomEvent,a.visitor=r.visitor},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),r="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),n=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:a||"latest",bundle_target:l,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(h," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(r,n))return!0}catch(d){}var o=new XMLHttpRequest;try{return o.open("POST",r,!0),o.setRequestHeader("Content-Type","text/plain"),o.send(n),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1}})})({shopId: 89825181988,storefrontBaseUrl: "https://thekoda.online",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: ["5de24938","d04dc9f4","4735909c"],webPixelsConfigList: [{"id":"802423076","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-X30X2KK4H8\\\",\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-X30X2KK4H8\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"a46b87f88a4ff97a9490f9aa4799ba7b","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"714146084","configuration":"{\"pixelCode\":\"CR9RDSRC77UDFAJ20080\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"642416932","configuration":"{\"pixel_id\":\"390360373833527\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"8b3843af2d71780cfb83fdde884ce168","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"thekodaonline","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"90a790-dc-2.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/thekoda.online"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://thekoda.online/cdn","235ce20490339967005d79299c69e38896539f78","ed28df0ewe31e21fbpff81adf7meb11528c",);</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1686. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1687. window.ShopifyAnalytics.meta.currency = 'USD';
  1688. var meta = {"page":{"pageType":"home"}};
  1689. for (var attr in meta) {
  1690.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1691. }</script>
  1692. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1693.  
  1694. };
  1695. </script>
  1696. <script class="analytics">(function () {
  1697.    var customDocumentWrite = function(content) {
  1698.      var jquery = null;
  1699.  
  1700.      if (window.jQuery) {
  1701.        jquery = window.jQuery;
  1702.      } else if (window.Checkout && window.Checkout.$) {
  1703.        jquery = window.Checkout.$;
  1704.      }
  1705.  
  1706.      if (jquery) {
  1707.        jquery('body').append(content);
  1708.      }
  1709.    };
  1710.  
  1711.    var hasLoggedConversion = function(token) {
  1712.      if (token) {
  1713.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1714.      }
  1715.      return false;
  1716.    }
  1717.  
  1718.    var setCookieIfConversion = function(token) {
  1719.      if (token) {
  1720.        var twoMonthsFromNow = new Date(Date.now());
  1721.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1722.  
  1723.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1724.      }
  1725.    }
  1726.  
  1727.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1728.    if (trekkie.integrations) {
  1729.      return;
  1730.    }
  1731.    trekkie.methods = [
  1732.      'identify',
  1733.      'page',
  1734.      'ready',
  1735.      'track',
  1736.      'trackForm',
  1737.      'trackLink'
  1738.    ];
  1739.    trekkie.factory = function(method) {
  1740.      return function() {
  1741.        var args = Array.prototype.slice.call(arguments);
  1742.        args.unshift(method);
  1743.        trekkie.push(args);
  1744.        return trekkie;
  1745.      };
  1746.    };
  1747.    for (var i = 0; i < trekkie.methods.length; i++) {
  1748.      var key = trekkie.methods[i];
  1749.      trekkie[key] = trekkie.factory(key);
  1750.    }
  1751.    trekkie.load = function(config) {
  1752.      trekkie.config = config || {};
  1753.      trekkie.config.initialDocumentCookie = document.cookie;
  1754.      var first = document.getElementsByTagName('script')[0];
  1755.      var script = document.createElement('script');
  1756.      script.type = 'text/javascript';
  1757.      script.onerror = function(e) {
  1758.        var scriptFallback = document.createElement('script');
  1759.        scriptFallback.type = 'text/javascript';
  1760.        scriptFallback.onerror = function(error) {
  1761.                var Monorail = {
  1762.      produce: function produce(monorailDomain, schemaId, payload) {
  1763.        var currentMs = new Date().getTime();
  1764.        var event = {
  1765.          schema_id: schemaId,
  1766.          payload: payload,
  1767.          metadata: {
  1768.            event_created_at_ms: currentMs,
  1769.            event_sent_at_ms: currentMs
  1770.          }
  1771.        };
  1772.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1773.      },
  1774.      sendRequest: function sendRequest(endpointUrl, payload) {
  1775.        // Try the sendBeacon API
  1776.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1777.          var blobData = new window.Blob([payload], {
  1778.            type: 'text/plain'
  1779.          });
  1780.  
  1781.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1782.            return true;
  1783.          } // sendBeacon was not successful
  1784.  
  1785.        } // XHR beacon
  1786.  
  1787.        var xhr = new XMLHttpRequest();
  1788.  
  1789.        try {
  1790.          xhr.open('POST', endpointUrl);
  1791.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1792.          xhr.send(payload);
  1793.        } catch (e) {
  1794.          console.log(e);
  1795.        }
  1796.  
  1797.        return false;
  1798.      },
  1799.      isIos12: function isIos12() {
  1800.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1801.      }
  1802.    };
  1803.    Monorail.produce('monorail-edge.shopifysvc.com',
  1804.      'trekkie_storefront_load_errors/1.1',
  1805.      {shop_id: 89825181988,
  1806.      theme_id: 171624005924,
  1807.      app_name: "storefront",
  1808.      context_url: window.location.href,
  1809.      source_url: "//thekoda.online/cdn/s/trekkie.storefront.a8ef5c2c4f1c6e0839c6b8857d0a2edb7d22d961.min.js"});
  1810.  
  1811.        };
  1812.        scriptFallback.async = true;
  1813.        scriptFallback.src = '//thekoda.online/cdn/s/trekkie.storefront.a8ef5c2c4f1c6e0839c6b8857d0a2edb7d22d961.min.js';
  1814.        first.parentNode.insertBefore(scriptFallback, first);
  1815.      };
  1816.      script.async = true;
  1817.      script.src = '//thekoda.online/cdn/s/trekkie.storefront.a8ef5c2c4f1c6e0839c6b8857d0a2edb7d22d961.min.js';
  1818.      first.parentNode.insertBefore(script, first);
  1819.    };
  1820.    trekkie.load(
  1821.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":89825181988,"isMerchantRequest":null,"themeId":171624005924,"themeCityHash":"17474087103894723530","contentLanguage":"en","currency":"USD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"TikTok Pixel":{"pixelId":"CR9RDSRC77UDFAJ20080"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1822.    );
  1823.  
  1824.    var loaded = false;
  1825.    trekkie.ready(function() {
  1826.      if (loaded) return;
  1827.      loaded = true;
  1828.  
  1829.      window.ShopifyAnalytics.lib = window.trekkie;
  1830.  
  1831.  
  1832.      var originalDocumentWrite = document.write;
  1833.      document.write = customDocumentWrite;
  1834.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1835.      document.write = originalDocumentWrite;
  1836.  
  1837.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home"});
  1838.  
  1839.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1840.      var token = match? match[1]: undefined;
  1841.      if (!hasLoggedConversion(token)) {
  1842.        setCookieIfConversion(token);
  1843.        
  1844.      }
  1845.    });
  1846.  
  1847.  
  1848.        var eventsListenerScript = document.createElement('script');
  1849.        eventsListenerScript.async = true;
  1850.        eventsListenerScript.src = "//thekoda.online/cdn/shopifycloud/shopify/assets/shop_events_listener-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626.js";
  1851.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1852.  
  1853. })();</script>
  1854. <script class="boomerang">
  1855. (function () {
  1856.  if (window.BOOMR && (window.BOOMR.version || window.BOOMR.snippetExecuted)) {
  1857.    return;
  1858.  }
  1859.  window.BOOMR = window.BOOMR || {};
  1860.  window.BOOMR.snippetStart = new Date().getTime();
  1861.  window.BOOMR.snippetExecuted = true;
  1862.  window.BOOMR.snippetVersion = 12;
  1863.  window.BOOMR.application = "storefront-renderer";
  1864.  window.BOOMR.themeName = "Impact";
  1865.  window.BOOMR.themeVersion = "4.3.4";
  1866.  window.BOOMR.shopId = 89825181988;
  1867.  window.BOOMR.themeId = 171624005924;
  1868.  window.BOOMR.renderRegion = "gcp-us-east1";
  1869.  window.BOOMR.url =
  1870.    "https://thekoda.online/cdn/shopifycloud/boomerang/shopify-boomerang-1.0.0.min.js";
  1871.  var where = document.currentScript || document.getElementsByTagName("script")[0];
  1872.  var parentNode = where.parentNode;
  1873.  var promoted = false;
  1874.  var LOADER_TIMEOUT = 3000;
  1875.  function promote() {
  1876.    if (promoted) {
  1877.      return;
  1878.    }
  1879.    var script = document.createElement("script");
  1880.    script.id = "boomr-scr-as";
  1881.    script.src = window.BOOMR.url;
  1882.    script.async = true;
  1883.    parentNode.appendChild(script);
  1884.    promoted = true;
  1885.  }
  1886.  function iframeLoader(wasFallback) {
  1887.    promoted = true;
  1888.    var dom, bootstrap, iframe, iframeStyle;
  1889.    var doc = document;
  1890.    var win = window;
  1891.    window.BOOMR.snippetMethod = wasFallback ? "if" : "i";
  1892.    bootstrap = function(parent, scriptId) {
  1893.      var script = doc.createElement("script");
  1894.      script.id = scriptId || "boomr-if-as";
  1895.      script.src = window.BOOMR.url;
  1896.      BOOMR_lstart = new Date().getTime();
  1897.      parent = parent || doc.body;
  1898.      parent.appendChild(script);
  1899.    };
  1900.    if (!window.addEventListener && window.attachEvent && navigator.userAgent.match(/MSIE [67]./)) {
  1901.      window.BOOMR.snippetMethod = "s";
  1902.      bootstrap(parentNode, "boomr-async");
  1903.      return;
  1904.    }
  1905.    iframe = document.createElement("IFRAME");
  1906.    iframe.src = "about:blank";
  1907.    iframe.title = "";
  1908.    iframe.role = "presentation";
  1909.    iframe.loading = "eager";
  1910.    iframeStyle = (iframe.frameElement || iframe).style;
  1911.    iframeStyle.width = 0;
  1912.    iframeStyle.height = 0;
  1913.    iframeStyle.border = 0;
  1914.    iframeStyle.display = "none";
  1915.    parentNode.appendChild(iframe);
  1916.    try {
  1917.      win = iframe.contentWindow;
  1918.      doc = win.document.open();
  1919.    } catch (e) {
  1920.      dom = document.domain;
  1921.      iframe.src = "javascript:var d=document.open();d.domain='" + dom + "';void(0);";
  1922.      win = iframe.contentWindow;
  1923.      doc = win.document.open();
  1924.    }
  1925.    if (dom) {
  1926.      doc._boomrl = function() {
  1927.        this.domain = dom;
  1928.        bootstrap();
  1929.      };
  1930.      doc.write("<body onload='document._boomrl();'>");
  1931.    } else {
  1932.      win._boomrl = function() {
  1933.        bootstrap();
  1934.      };
  1935.      if (win.addEventListener) {
  1936.        win.addEventListener("load", win._boomrl, false);
  1937.      } else if (win.attachEvent) {
  1938.        win.attachEvent("onload", win._boomrl);
  1939.      }
  1940.    }
  1941.    doc.close();
  1942.  }
  1943.  var link = document.createElement("link");
  1944.  if (link.relList &&
  1945.    typeof link.relList.supports === "function" &&
  1946.    link.relList.supports("preload") &&
  1947.    ("as" in link)) {
  1948.    window.BOOMR.snippetMethod = "p";
  1949.    link.href = window.BOOMR.url;
  1950.    link.rel = "preload";
  1951.    link.as = "script";
  1952.    link.addEventListener("load", promote);
  1953.    link.addEventListener("error", function() {
  1954.      iframeLoader(true);
  1955.    });
  1956.    setTimeout(function() {
  1957.      if (!promoted) {
  1958.        iframeLoader(true);
  1959.      }
  1960.    }, LOADER_TIMEOUT);
  1961.    BOOMR_lstart = new Date().getTime();
  1962.    parentNode.appendChild(link);
  1963.  } else {
  1964.    iframeLoader(false);
  1965.  }
  1966.  function boomerangSaveLoadTime(e) {
  1967.    window.BOOMR_onload = (e && e.timeStamp) || new Date().getTime();
  1968.  }
  1969.  if (window.addEventListener) {
  1970.    window.addEventListener("load", boomerangSaveLoadTime, false);
  1971.  } else if (window.attachEvent) {
  1972.    window.attachEvent("onload", boomerangSaveLoadTime);
  1973.  }
  1974.  if (document.addEventListener) {
  1975.    document.addEventListener("onBoomerangLoaded", function(e) {
  1976.      e.detail.BOOMR.init({
  1977.        ResourceTiming: {
  1978.          enabled: true,
  1979.          trackedResourceTypes: ["script", "img", "css"]
  1980.        },
  1981.      });
  1982.      e.detail.BOOMR.t_end = new Date().getTime();
  1983.    });
  1984.  } else if (document.attachEvent) {
  1985.    document.attachEvent("onpropertychange", function(e) {
  1986.      if (!e) e=event;
  1987.      if (e.propertyName === "onBoomerangLoaded") {
  1988.        e.detail.BOOMR.init({
  1989.          ResourceTiming: {
  1990.            enabled: true,
  1991.            trackedResourceTypes: ["script", "img", "css"]
  1992.          },
  1993.        });
  1994.        e.detail.BOOMR.t_end = new Date().getTime();
  1995.      }
  1996.    });
  1997.  }
  1998. })();</script>
  1999. <script
  2000.  defer
  2001.  src="https://thekoda.online/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.0.0.min.js"
  2002.  data-application="storefront-renderer"
  2003.  data-shop-id="89825181988"
  2004.  data-render-region="gcp-us-east1"
  2005.  data-page-type="index"
  2006.  data-theme-instance-id="171624005924"
  2007.  data-monorail-region="shop_domain"
  2008.  data-resource-timing-sampling-rate="10"
  2009. ></script>
  2010. </head>
  2011.  
  2012.  
  2013.  <body class=" zoom-image--enabled"><!-- DRAWER -->
  2014. <template id="drawer-default-template">
  2015.  <style>
  2016.    [hidden] {
  2017.      display: none !important;
  2018.    }
  2019.  </style>
  2020.  
  2021.  <button part="outside-close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2022.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2023.      </svg></button>
  2024.  
  2025.  <div part="overlay"></div>
  2026.  
  2027.  <div part="content">
  2028.    <header part="header">
  2029.      <slot name="header"></slot>
  2030.  
  2031.      <button part="close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2032.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2033.      </svg></button>
  2034.    </header>
  2035.  
  2036.    <div part="body">
  2037.      <slot></slot>
  2038.    </div>
  2039.  
  2040.    <footer part="footer">
  2041.      <slot name="footer"></slot>
  2042.    </footer>
  2043.  </div>
  2044. </template>
  2045.  
  2046. <!-- POPOVER -->
  2047. <template id="popover-default-template">
  2048.  <button part="outside-close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2049.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2050.      </svg></button>
  2051.  
  2052.  <div part="overlay"></div>
  2053.  
  2054.  <div part="content">
  2055.    <header part="title">
  2056.      <slot name="title"></slot>
  2057.    </header>
  2058.  
  2059.    <div part="body">
  2060.      <slot></slot>
  2061.    </div>
  2062.  </div>
  2063. </template><a href="#main" class="skip-to-content sr-only">Skip to content</a><!-- BEGIN sections: header-group -->
  2064. <aside id="shopify-section-sections--23414551478564__announcement-bar" class="shopify-section shopify-section-group-header-group shopify-section--announcement-bar"><style>
  2065.    :root {
  2066.      --sticky-announcement-bar-enabled:1;
  2067.    }#shopify-section-sections--23414551478564__announcement-bar {
  2068.        position: sticky;
  2069.        top: 0;
  2070.        z-index: 20;
  2071.      }
  2072.  
  2073.      .shopify-section--header ~ #shopify-section-sections--23414551478564__announcement-bar {
  2074.        top: calc(var(--sticky-header-enabled, 0) * var(--header-height, 0px));
  2075.      }</style><height-observer variable="announcement-bar">
  2076.    <div class="announcement-bar bg-custom text-custom"style="--background: 206 83 76; --text-color: 255 255 255;"><marquee-text scrolling-speed="11" class="announcement-bar__scrolling-list"><span class="announcement-bar__item" ><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2077. </p>
  2078.  
  2079.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2080. </p>
  2081.  
  2082.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2083. </p>
  2084.  
  2085.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2086. </p>
  2087.  
  2088.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2089. </p>
  2090.  
  2091.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2092. </p>
  2093.  
  2094.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2095. </p>
  2096.  
  2097.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2098. </p>
  2099.  
  2100.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2101. </p>
  2102.  
  2103.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2104. </p>
  2105.  
  2106.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2107. </p>
  2108.  
  2109.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2110. </p>
  2111.  
  2112.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2113. </p>
  2114.  
  2115.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2116. </p>
  2117.  
  2118.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2119. </p>
  2120.  
  2121.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2122. </p>
  2123.  
  2124.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2125. </p>
  2126.  
  2127.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2128. </p>
  2129.  
  2130.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-xs" >WELCOME TO THEKODA  ONLINE STORE
  2131. </p>
  2132.  
  2133.              <span class="shape-circle shape--sm"></span><p class="bold text-xs" >FREE SHIPPING ON YOUR FIRST ORDER
  2134. </p>
  2135.  
  2136.              <span class="shape-circle shape--sm"></span></span></marquee-text></div>
  2137.  </height-observer>
  2138.  
  2139.  <script>
  2140.    document.documentElement.style.setProperty('--announcement-bar-height', Math.round(document.getElementById('shopify-section-sections--23414551478564__announcement-bar').clientHeight) + 'px');
  2141.  </script></aside><header id="shopify-section-sections--23414551478564__header" class="shopify-section shopify-section-group-header-group shopify-section--header"><style>
  2142.  :root {
  2143.    --sticky-header-enabled:0;
  2144.  }
  2145.  
  2146.  #shopify-section-sections--23414551478564__header {
  2147.    --header-grid-template: "main-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
  2148.    --header-padding-block: var(--spacing-4-5);
  2149.    --header-background-opacity: 0.07;
  2150.    --header-background-blur-radius: 0px;
  2151.    --header-transparent-text-color: 255 255 255;--header-logo-width: 60px;
  2152.      --header-logo-height: 31px;position: relative;
  2153.    top: 0;
  2154.    z-index: 10;
  2155.  }@media screen and (min-width: 700px) {
  2156.    #shopify-section-sections--23414551478564__header {--header-logo-width: 120px;
  2157.        --header-logo-height: 63px;--header-padding-block: var(--spacing-8-5);
  2158.    }
  2159.  }@media screen and (min-width: 1150px) {#shopify-section-sections--23414551478564__header {
  2160.        --header-grid-template: "logo main-nav secondary-nav" / minmax(0, 1fr) fit-content(55%) minmax(0, 1fr);
  2161.      }
  2162.    }</style>
  2163.  
  2164. <height-observer variable="header">
  2165.  <store-header class="header" hide-on-scroll="100" >
  2166.    <div class="header__wrapper"><div class="header__main-nav">
  2167.        <div class="header__icon-list">
  2168.          <button type="button" class="tap-area lg:hidden" aria-controls="header-sidebar-menu">
  2169.            <span class="sr-only">Open navigation menu</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-hamburger" viewBox="0 0 22 22">
  2170.        <path d="M1 5h20M1 11h20M1 17h20" stroke="currentColor" stroke-linecap="round"></path>
  2171.      </svg></button>
  2172.  
  2173.          <a href="/search" class="tap-area sm:hidden" aria-controls="search-drawer">
  2174.            <span class="sr-only">Open search</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-search" viewBox="0 0 22 22">
  2175.        <circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
  2176.        <path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2177.      </svg></a><nav class="header__link-list justify-center wrap" role="navigation">
  2178.              <ul class="contents" role="list">
  2179.  
  2180.                  <li><a href="/" class="bold link-faded-reverse" aria-current="page">HOME</a></li>
  2181.  
  2182.                  <li><details class="relative" is="dropdown-disclosure" trigger="hover">
  2183.                          <summary class="text-with-icon gap-2.5 bold link-faded-reverse" data-url="/collections/all">SHOP<svg role="presentation" focusable="false" width="10" height="7" class="icon icon-chevron-bottom" viewBox="0 0 10 7">
  2184.        <path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2185.      </svg></summary>
  2186.  
  2187.                          <div class="dropdown-menu dropdown-menu--restrictable">
  2188.                            <ul class="contents" role="list"><li><a href="/collections/caps" class="dropdown-menu__item group" >
  2189.                                      <span><span class="reversed-link">CAPS</span></span>
  2190.                                    </a></li><li><a href="/collections/cross-bags" class="dropdown-menu__item group" >
  2191.                                      <span><span class="reversed-link">CROSS BAGS</span></span>
  2192.                                    </a></li><li><a href="/collections/wears" class="dropdown-menu__item group" >
  2193.                                      <span><span class="reversed-link">WEARS</span></span>
  2194.                                    </a></li><li><a href="/collections/e-bikes" class="dropdown-menu__item group" >
  2195.                                      <span><span class="reversed-link">E-BIKES</span></span>
  2196.                                    </a></li><li><a href="/collections/gadgets" class="dropdown-menu__item group" >
  2197.                                      <span><span class="reversed-link">GADGETS</span></span>
  2198.                                    </a></li><li><a href="/collections/fashion-shoes" class="dropdown-menu__item group" >
  2199.                                      <span><span class="reversed-link">FASHION SHOES</span></span>
  2200.                                    </a></li></ul>
  2201.                          </div>
  2202.                        </details></li>
  2203.  
  2204.                  <li><a href="/pages/about" class="bold link-faded-reverse" >ABOUT US</a></li>
  2205.  
  2206.                  <li><a href="/pages/koda-online-cookie-policy-contact-information" class="bold link-faded-reverse" >Contact Us</a></li></ul>
  2207.            </nav></div>
  2208.      </div><h1 class="header__logo">
  2209.          <a href="/"><span class="sr-only">thekodaonline</span><img src="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=1200" alt="" srcset="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=240 240w, //thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=360 360w" width="1200" height="628" sizes="120px" class="header__logo-image"><img src="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=1200" alt="" srcset="//thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=240 240w, //thekoda.online/cdn/shop/files/JAMZPRINT__12_-removebg-preview_4.webp?v=1725129264&amp;width=360 360w" width="1200" height="628" sizes="120px" class="header__logo-image header__logo-image--transparent"></a>
  2210.        </h1>
  2211.      
  2212. <div class="header__secondary-nav"><div class="header__icon-list"><div class="hidden md:block shrink-0"><link rel="stylesheet" href="//thekoda.online/cdn/shop/t/6/assets/country-flags.css?v=173817741279906525751727974600" media="print" onload="this.media='all'; this.onload = null"><div class="relative">
  2213.      <button type="button" class="text-with-icon gap-2.5 group" aria-controls="popover-localization-form-country-end-sections--23414551478564__header" aria-expanded="false">
  2214.        <div class="h-stack gap-2"><span class="country-flags country-flags--US"></span><span class="bold text-sm">United States (USD $)</span>
  2215.        </div><svg role="presentation" focusable="false" width="10" height="7" class="icon icon-chevron-bottom" viewBox="0 0 10 7">
  2216.        <path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2217.      </svg></button>
  2218.  
  2219.      <x-popover id="popover-localization-form-country-end-sections--23414551478564__header" initial-focus="[aria-selected='true']" anchor-horizontal="end" anchor-vertical="end" class="popover">
  2220.        <p class="h5" slot="title">Country</p><form method="post" action="/localization" id="localization-form-country-end-sections--23414551478564__header" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><x-listbox class="popover-listbox popover-listbox--sm" role="listbox"><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AT" >
  2221.                <span class="country-flags country-flags--AT"></span>
  2222.                <span>Austria (EUR €)</span>
  2223.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="BE" >
  2224.                <span class="country-flags country-flags--BE"></span>
  2225.                <span>Belgium (EUR €)</span>
  2226.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="CZ" >
  2227.                <span class="country-flags country-flags--CZ"></span>
  2228.                <span>Czechia (CZK Kč)</span>
  2229.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="FI" >
  2230.                <span class="country-flags country-flags--FI"></span>
  2231.                <span>Finland (EUR €)</span>
  2232.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="DE" >
  2233.                <span class="country-flags country-flags--DE"></span>
  2234.                <span>Germany (EUR €)</span>
  2235.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="HK" >
  2236.                <span class="country-flags country-flags--HK"></span>
  2237.                <span>Hong Kong SAR (HKD $)</span>
  2238.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IE" >
  2239.                <span class="country-flags country-flags--IE"></span>
  2240.                <span>Ireland (EUR €)</span>
  2241.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IL" >
  2242.                <span class="country-flags country-flags--IL"></span>
  2243.                <span>Israel (ILS ₪)</span>
  2244.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IT" >
  2245.                <span class="country-flags country-flags--IT"></span>
  2246.                <span>Italy (EUR €)</span>
  2247.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="JP" >
  2248.                <span class="country-flags country-flags--JP"></span>
  2249.                <span>Japan (JPY ¥)</span>
  2250.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="MY" >
  2251.                <span class="country-flags country-flags--MY"></span>
  2252.                <span>Malaysia (MYR RM)</span>
  2253.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="PT" >
  2254.                <span class="country-flags country-flags--PT"></span>
  2255.                <span>Portugal (EUR €)</span>
  2256.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SG" >
  2257.                <span class="country-flags country-flags--SG"></span>
  2258.                <span>Singapore (SGD $)</span>
  2259.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="KR" >
  2260.                <span class="country-flags country-flags--KR"></span>
  2261.                <span>South Korea (KRW ₩)</span>
  2262.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="ES" >
  2263.                <span class="country-flags country-flags--ES"></span>
  2264.                <span>Spain (EUR €)</span>
  2265.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SE" >
  2266.                <span class="country-flags country-flags--SE"></span>
  2267.                <span>Sweden (SEK kr)</span>
  2268.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AE" >
  2269.                <span class="country-flags country-flags--AE"></span>
  2270.                <span>United Arab Emirates (AED د.إ)</span>
  2271.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="US" aria-selected="true">
  2272.                <span class="country-flags country-flags--US"></span>
  2273.                <span>United States (USD $)</span>
  2274.              </button></x-listbox></form></x-popover>
  2275.    </div></div><a href="/search" class="hidden tap-area sm:block" aria-controls="search-drawer">
  2276.            <span class="sr-only">Open search</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-search" viewBox="0 0 22 22">
  2277.        <circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
  2278.        <path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2279.      </svg></a><a href="/account" class="hidden tap-area sm:block">
  2280.              <span class="sr-only">Open account page</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-account" viewBox="0 0 22 22">
  2281.        <circle cx="11" cy="7" r="4" fill="none" stroke="currentColor"></circle>
  2282.        <path d="M3.5 19c1.421-2.974 4.247-5 7.5-5s6.079 2.026 7.5 5" fill="none" stroke="currentColor" stroke-linecap="round"></path>
  2283.      </svg></a><a href="/cart" data-no-instant class="relative tap-area" aria-controls="cart-drawer">
  2284.            <span class="sr-only">Open cart</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-cart" viewBox="0 0 22 22">
  2285.            <path d="M9.182 18.454a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.818 0Zm7.272 0a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.819 0Z" fill="currentColor"></path>
  2286.            <path d="M5.336 6.636H21l-3.636 8.182H6.909L4.636 3H1m8.182 15.454a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.818 0Zm7.272 0a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.819 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2287.          </svg><div class="header__cart-count">
  2288.              <cart-count class="count-bubble opacity-0" aria-hidden="true">0</cart-count>
  2289.            </div>
  2290.          </a>
  2291.        </div>
  2292.      </div>
  2293.    </div>
  2294.  </store-header>
  2295. </height-observer><navigation-drawer mobile-opening="bottom" open-from="left" id="header-sidebar-menu" class="navigation-drawer drawer lg:hidden" >
  2296.    <button is="close-button" aria-label="Close"class="sm-max:hidden"><svg role="presentation" stroke-width="2" focusable="false" width="19" height="19" class="icon icon-close" viewBox="0 0 24 24">
  2297.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2298.      </svg></button><div class="panel-list__wrapper">
  2299.  <div class="panel">
  2300.    <div class="panel__wrapper" >
  2301.      <div class="panel__scroller v-stack gap-8"><ul class="v-stack gap-4">
  2302. <li class="h3 sm:h4"><a href="/" class="group block w-full">
  2303.                  <span><span class="reversed-link">HOME</span></span>
  2304.                </a></li>
  2305. <li class="h3 sm:h4"><button class="text-with-icon w-full group justify-between" aria-expanded="false" data-panel="1-0">
  2306.                  <span>SHOP</span>
  2307.                  <span class="circle-chevron group-hover:colors group-expanded:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2308.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2309.      </svg></span>
  2310.                </button></li>
  2311. <li class="h3 sm:h4"><a href="/pages/about" class="group block w-full">
  2312.                  <span><span class="reversed-link">ABOUT US</span></span>
  2313.                </a></li>
  2314. <li class="h3 sm:h4"><a href="/pages/koda-online-cookie-policy-contact-information" class="group block w-full">
  2315.                  <span><span class="reversed-link">Contact Us</span></span>
  2316.                </a></li></ul></div><div class="panel-footer v-stack gap-5"><ul class="social-media " role="list"><li>
  2317.      <a href="https://www.facebook.com/share/QnT38cfqSW3SJJrT/?mibextid=qi2Omg" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Facebook"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-facebook" viewBox="0 0 24 24">
  2318.        <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
  2319.      </svg></a>
  2320.    </li><li>
  2321.      <a href="https://www.instagram.com/kodalife2021_?igsh=b3piMWw4c3ZjNml0" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Instagram"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-instagram" viewBox="0 0 24 24">
  2322.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
  2323.      </svg></a>
  2324.    </li><li>
  2325.      <a href="https://www.tiktok.com/@kodafashion24?_t=8pNdwWOffLi&_r=1" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on TikTok"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-tiktok" viewBox="0 0 24 24">
  2326.        <path d="M20.027 10.168a5.125 5.125 0 0 1-4.76-2.294v7.893a5.833 5.833 0 1 1-5.834-5.834c.122 0 .241.011.361.019v2.874c-.12-.014-.237-.036-.36-.036a2.977 2.977 0 0 0 0 5.954c1.644 0 3.096-1.295 3.096-2.94L12.56 2.4h2.75a5.122 5.122 0 0 0 4.72 4.573v3.195" fill="currentColor"/>
  2327.      </svg></a>
  2328.    </li></ul><div class="panel-footer__localization-wrapper h-stack gap-6 border-t md:hidden"><link rel="stylesheet" href="//thekoda.online/cdn/shop/t/6/assets/country-flags.css?v=173817741279906525751727974600" media="print" onload="this.media='all'; this.onload = null"><div class="relative">
  2329.      <button type="button" class="text-with-icon gap-2.5 group" aria-controls="popover-localization-form-country--sections--23414551478564__header" aria-expanded="false">
  2330.        <div class="h-stack gap-2"><span class="country-flags country-flags--US"></span><span class="bold text-sm">United States (USD $)</span>
  2331.        </div><svg role="presentation" focusable="false" width="10" height="7" class="icon icon-chevron-bottom" viewBox="0 0 10 7">
  2332.        <path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2333.      </svg></button>
  2334.  
  2335.      <x-popover id="popover-localization-form-country--sections--23414551478564__header" initial-focus="[aria-selected='true']" anchor-horizontal="end" anchor-vertical="start" class="popover">
  2336.        <p class="h5" slot="title">Country</p><form method="post" action="/localization" id="localization-form-country--sections--23414551478564__header" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><x-listbox class="popover-listbox popover-listbox--sm" role="listbox"><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AT" >
  2337.                <span class="country-flags country-flags--AT"></span>
  2338.                <span>Austria (EUR €)</span>
  2339.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="BE" >
  2340.                <span class="country-flags country-flags--BE"></span>
  2341.                <span>Belgium (EUR €)</span>
  2342.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="CZ" >
  2343.                <span class="country-flags country-flags--CZ"></span>
  2344.                <span>Czechia (CZK Kč)</span>
  2345.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="FI" >
  2346.                <span class="country-flags country-flags--FI"></span>
  2347.                <span>Finland (EUR €)</span>
  2348.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="DE" >
  2349.                <span class="country-flags country-flags--DE"></span>
  2350.                <span>Germany (EUR €)</span>
  2351.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="HK" >
  2352.                <span class="country-flags country-flags--HK"></span>
  2353.                <span>Hong Kong SAR (HKD $)</span>
  2354.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IE" >
  2355.                <span class="country-flags country-flags--IE"></span>
  2356.                <span>Ireland (EUR €)</span>
  2357.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IL" >
  2358.                <span class="country-flags country-flags--IL"></span>
  2359.                <span>Israel (ILS ₪)</span>
  2360.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IT" >
  2361.                <span class="country-flags country-flags--IT"></span>
  2362.                <span>Italy (EUR €)</span>
  2363.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="JP" >
  2364.                <span class="country-flags country-flags--JP"></span>
  2365.                <span>Japan (JPY ¥)</span>
  2366.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="MY" >
  2367.                <span class="country-flags country-flags--MY"></span>
  2368.                <span>Malaysia (MYR RM)</span>
  2369.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="PT" >
  2370.                <span class="country-flags country-flags--PT"></span>
  2371.                <span>Portugal (EUR €)</span>
  2372.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SG" >
  2373.                <span class="country-flags country-flags--SG"></span>
  2374.                <span>Singapore (SGD $)</span>
  2375.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="KR" >
  2376.                <span class="country-flags country-flags--KR"></span>
  2377.                <span>South Korea (KRW ₩)</span>
  2378.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="ES" >
  2379.                <span class="country-flags country-flags--ES"></span>
  2380.                <span>Spain (EUR €)</span>
  2381.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SE" >
  2382.                <span class="country-flags country-flags--SE"></span>
  2383.                <span>Sweden (SEK kr)</span>
  2384.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AE" >
  2385.                <span class="country-flags country-flags--AE"></span>
  2386.                <span>United Arab Emirates (AED د.إ)</span>
  2387.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="US" aria-selected="true">
  2388.                <span class="country-flags country-flags--US"></span>
  2389.                <span>United States (USD $)</span>
  2390.              </button></x-listbox></form></x-popover>
  2391.    </div><a href="/account" class="panel-footer__account-link bold text-sm">Account</a></div></div></div>
  2392.  </div><div class="panel gap-8">
  2393.      <div class="panel__wrapper"  hidden>
  2394.                  <ul class="v-stack gap-4">
  2395.                    <li class="lg:hidden">
  2396.                      <button class="text-with-icon h6 text-subdued" data-panel="0"><svg role="presentation" focusable="false" width="7" height="10" class="icon icon-chevron-left reverse-icon" viewBox="0 0 7 10">
  2397.        <path d="M6 1 2 5l4 4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2398.      </svg>SHOP
  2399.                      </button>
  2400.                    </li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/caps"><span><span class="reversed-link">CAPS</span></span>
  2401.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/cross-bags"><span><span class="reversed-link">CROSS BAGS</span></span>
  2402.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/wears"><span><span class="reversed-link">WEARS</span></span>
  2403.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/e-bikes"><span><span class="reversed-link">E-BIKES</span></span>
  2404.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/gadgets"><span><span class="reversed-link">GADGETS</span></span>
  2405.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/fashion-shoes"><span><span class="reversed-link">FASHION SHOES</span></span>
  2406.                            </a></li></ul></div>
  2407.    </div></div></navigation-drawer><script>
  2408.  document.documentElement.style.setProperty('--header-height', Math.round(document.getElementById('shopify-section-sections--23414551478564__header').clientHeight) + 'px');
  2409. </script>
  2410.  
  2411. </header>
  2412. <!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
  2413. <div id="shopify-section-sections--23414552527140__newsletter-popup" class="shopify-section shopify-section-group-overlay-group shopify-section--popup"><newsletter-popup id="newsletter-drawer" open-from="right" class="drawer newsletter-drawer" only-once apparition-delay="5"  handle-section-events>
  2414.      <button is="close-button" aria-label="Close" class="sm-max:hidden"><svg role="presentation" stroke-width="2" focusable="false" width="19" height="19" class="icon icon-close" viewBox="0 0 24 24">
  2415.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2416.      </svg></button><div class="newsletter-drawer__content v-stack gap-4 text-center">
  2417.        <div class="v-stack gap-6"><p class="h5">Signup for our newsletter</p><form method="post" action="/contact#newsletter-sections--23414552527140__newsletter-popup" id="newsletter-sections--23414552527140__newsletter-popup" accept-charset="UTF-8" class="form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><div class="fieldset">
  2418.                <input type="hidden" name="contact[tags]" value="newsletter"><div class="form-control" ><input id="input-sections--23414552527140__newsletter-popup--contactemail" class="input is-floating" type="email" dir="ltr" name="contact[email]" placeholder=" "
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  autocomplete="email"
  2424.  
  2425.  
  2426.  required
  2427. ><label for="input-sections--23414552527140__newsletter-popup--contactemail" class="floating-label">E-mail</label></div></div>
  2428. <button type="submit" class="button button--xl"
  2429.  
  2430.  
  2431.  
  2432.  
  2433.  
  2434.  
  2435.  
  2436.  is="custom-button"
  2437. >
  2438.    <div class="text-with-icon justify-center"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="18" height="18" class="icon icon-picto-envelope" viewBox="0 0 24 24">
  2439.        <path d="M1.77 18.063a3.586 3.586 0 0 0 3.174 3.11c2.278.24 4.637.49 7.056.49 2.417 0 4.778-.252 7.056-.49a3.584 3.584 0 0 0 3.175-3.11c.243-1.96.483-3.987.483-6.063 0-2.074-.24-4.102-.483-6.063a3.586 3.586 0 0 0-3.175-3.112c-2.278-.236-4.639-.487-7.056-.487s-4.778.252-7.056.49a3.583 3.583 0 0 0-3.175 3.11c-.243 1.96-.483 3.988-.483 6.062 0 2.074.24 4.102.483 6.063Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linejoin="round"/>
  2440.        <path d="m1.817 5.493 8.06 6.356a3.428 3.428 0 0 0 4.245 0l8.06-6.356" stroke="currentColor" stroke-linejoin="round"/>
  2441.      </svg>Subscribe</div></button></form></div><p class="text-xs text-subdued">Describe what your customers will receive when subscribing to your newsletter.</p></div>
  2442.    </newsletter-popup></div><div id="shopify-section-sections--23414552527140__privacy-banner" class="shopify-section shopify-section-group-overlay-group shopify-section--privacy-banner"><privacy-bar class="privacy-bar" hidden>
  2443.  <div class="privacy-bar__inner">
  2444.    <button type="button" class="privacy-bar__close" data-action="close">
  2445.      <span class="sr-only">Close</span><svg role="presentation" stroke-width="2" focusable="false" width="10" height="10" class="icon icon-delete" viewBox="0 0 10 10">
  2446.        <path d="m.757.757 8.486 8.486m-8.486 0L9.243.757" stroke="currentColor"></path>
  2447.      </svg></button>
  2448.  
  2449.    <div class="v-stack gap-4">
  2450.      <div class="v-stack gap-2"><p class="bold">Cookie policy</p><div class="prose text-xs"><p>We use cookies and similar technologies to provide the best experience on our website. Refer to our Privacy Policy for more information.</p></div></div>
  2451.  
  2452.      <div class="h-stack gap-2">
  2453.        <button type="button" class="button button--sm" data-action="accept">Accept</button>
  2454.        <button type="button" class="button button--sm button--subdued" data-action="decline">Decline</button>
  2455.      </div>
  2456.    </div>
  2457.  </div>
  2458. </privacy-bar>
  2459.  
  2460. </div><div id="shopify-section-sections--23414552527140__cart-drawer" class="shopify-section shopify-section-group-overlay-group"><cart-drawer  class="cart-drawer drawer drawer--lg" id="cart-drawer"><button is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2461.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2462.      </svg></button>
  2463.  
  2464.    <div class="empty-state align-self-center">
  2465.      <div class="empty-state__icon-wrapper"><svg role="presentation" stroke-width="1" focusable="false" width="32" height="32" class="icon icon-cart" viewBox="0 0 22 22">
  2466.            <path d="M9.182 18.454a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.818 0Zm7.272 0a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.819 0Z" fill="currentColor"></path>
  2467.            <path d="M5.336 6.636H21l-3.636 8.182H6.909L4.636 3H1m8.182 15.454a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.818 0Zm7.272 0a.91.91 0 1 1-1.818 0 .91.91 0 0 1 1.819 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2468.          </svg><span class="count-bubble count-bubble--lg">0</span>
  2469.      </div>
  2470.  
  2471.      <div class="prose">
  2472.        <p class="h5">Your cart is empty</p>
  2473. <a class="button button--xl"
  2474.  
  2475.  
  2476.  
  2477.  
  2478.  
  2479.  href="/collections/all"
  2480.  
  2481.  
  2482. >Continue shopping</a></div>
  2483.    </div></cart-drawer>
  2484.  
  2485. </div>
  2486. <!-- END sections: overlay-group --><cart-notification-drawer open-from="bottom" class="quick-buy-drawer drawer"></cart-notification-drawer><main role="main" id="main" class="anchor">
  2487.      <section id="shopify-section-template--23414556066084__slideshow" class="shopify-section shopify-section--slideshow"><style>#shopify-section-template--23414556066084__slideshow {
  2488.    --slideshow-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
  2489.    --slideshow-controls-background: 0 0 0;
  2490.    --slideshow-controls-color: 255 255 255;}#block-slide-2 {--slideshow-slide-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
  2491.      --slideshow-slide-controls-background: 0 0 0;
  2492.      --slideshow-slide-controls-color: 255 255 255;
  2493.    }#block-721b7464-f2e5-48d5-9e48-e98a99bd09f2 {--slideshow-slide-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
  2494.      --slideshow-slide-controls-background: 0 0 0;
  2495.      --slideshow-slide-controls-color: 255 255 255;
  2496.    }#block-image_g3fCz9 {--slideshow-slide-background: linear-gradient(180deg, rgba(255, 211, 226, 1), rgba(168, 255, 251, 1) 100%);
  2497.      --slideshow-slide-controls-background: 255 255 255;
  2498.      --slideshow-slide-controls-color: 0 0 0;
  2499.    }</style><x-slideshow class="slideshow  slideshow--multiple-slides" ><slideshow-carousel id="slideshow-template--23414556066084__slideshow" class="slideshow__carousel" reveal-on-scroll="true" selector=".slideshow__slide" transition="fade_with_text" autoplay="8" role="region"><a id="block-slide-2" href="/collections/wears" class="slideshow__slide is-selected" role="group" ><div class="content-over-media content-over-media--auto " style="--content-over-media-content-max-width: 780px; --content-over-media-overlay: 0 0 0 / 0.0"><img src="//thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=2000" alt="Fashion advertisement banner featuring stylish women’s clothing and accessories." srcset="//thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=800 800w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=900 900w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=2000 2000w" width="2000" height="1000" loading="eager" lazy_load="true" fetchpriority="high" sizes="100vw" class="hidden sm:block"><img src="//thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=2000" alt="Fashion advertisement banner featuring stylish women’s clothing and accessories." srcset="//thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=800 800w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=900 900w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/fashion-advertisement-banner-stylish-womens-clothing-accessories.webp?v=1728036656&amp;width=2000 2000w" width="2000" height="1000" loading="eager" lazy_load="true" fetchpriority="high" sizes="100vw" class="sm:hidden"><div class="place-self-center text-center sm:place-self-end-center sm:text-center  text-custom"style="--text-color: 255 255 255;">
  2500.            <div class="prose"></div>
  2501.          </div>
  2502.        </div></a><a id="block-721b7464-f2e5-48d5-9e48-e98a99bd09f2" href="/collections/fashion-shoes" class="slideshow__slide " role="group" ><div class="content-over-media content-over-media--auto " style="--content-over-media-content-max-width: 780px; --content-over-media-overlay: 0 0 0 / 0.0"><img src="//thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=2000" alt="Pair of white sneakers with laces and textured soles." srcset="//thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=200 200w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=300 300w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=400 400w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=500 500w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=600 600w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=700 700w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=800 800w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=900 900w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=2000 2000w" width="2000" height="1000" loading="lazy" lazy_load="true" fetchpriority="low" sizes="100vw" class="hidden sm:block"><img src="//thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=2000" alt="Pair of white sneakers with laces and textured soles." srcset="//thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=200 200w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=300 300w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=400 400w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=500 500w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=600 600w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=700 700w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=800 800w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=900 900w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/pair-white-sneakers-laces-textured-soles.webp?v=1728036663&amp;width=2000 2000w" width="2000" height="1000" loading="lazy" lazy_load="true" fetchpriority="low" sizes="100vw" class="sm:hidden"><div class="place-self-end-center text-center sm:place-self-center-end sm:text-end  text-custom"style="--text-color: 255 255 255;">
  2503.            <div class="prose"></div>
  2504.          </div>
  2505.        </div></a><a id="block-image_g3fCz9" href="/collections/gadgets" class="slideshow__slide " role="group" ><div class="content-over-media content-over-media--auto " style="--content-over-media-content-max-width: 780px; --content-over-media-overlay: 0 0 0 / 0.0"><img src="//thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=2000" alt="Blue over-ear wireless headphones with a padded headband and ear cups." srcset="//thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=200 200w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=300 300w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=400 400w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=500 500w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=600 600w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=700 700w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=800 800w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=900 900w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=2000 2000w" width="2000" height="1000" loading="lazy" lazy_load="true" fetchpriority="low" sizes="100vw" class="hidden sm:block"><img src="//thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=2000" alt="Blue over-ear wireless headphones with a padded headband and ear cups." srcset="//thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=200 200w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=300 300w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=400 400w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=500 500w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=600 600w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=700 700w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=800 800w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=900 900w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/blue-over-ear-wireless-headphones-padded-headband-ear-cups.webp?v=1728036672&amp;width=2000 2000w" width="2000" height="1000" loading="lazy" lazy_load="true" fetchpriority="low" sizes="100vw" class="sm:hidden"><div class="place-self-center-start text-start sm:place-self-center-start sm:text-start  text-custom"style="--text-color: 255 255 255;">
  2506.            <div class="prose"></div>
  2507.          </div>
  2508.        </div></a><div class="slideshow__controls"><div class="prev-next-buttons">
  2509.              <button is="prev-button" aria-controls="slideshow-template--23414556066084__slideshow" class="circle-button circle-button--lg circle-button--fill group">
  2510.                <span class="sr-only">Previous</span>
  2511.                <span class="animated-arrow animated-arrow--reverse"></span>
  2512.              </button>
  2513.  
  2514.              <button is="next-button" aria-controls="slideshow-template--23414556066084__slideshow" class="circle-button circle-button--lg circle-button--fill group">
  2515.                <span class="sr-only">Next</span>
  2516.                <span class="animated-arrow"></span>
  2517.              </button>
  2518.            </div></div></slideshow-carousel>
  2519. </x-slideshow>
  2520.  
  2521. </section><section id="shopify-section-template--23414556066084__9bdfe607-e8fb-4a9c-a33b-a472b59bf324" class="shopify-section shopify-section--rich-text"><style>
  2522.  #shopify-section-template--23414556066084__9bdfe607-e8fb-4a9c-a33b-a472b59bf324 {
  2523.    --section-background-hash: 0;
  2524.  }
  2525.  
  2526.  #shopify-section-template--23414556066084__9bdfe607-e8fb-4a9c-a33b-a472b59bf324 + * {
  2527.    --previous-section-background-hash: 0;
  2528.  }</style><style>
  2529.    #shopify-section-template--23414556066084__9bdfe607-e8fb-4a9c-a33b-a472b59bf324 {
  2530.      --rich-text-max-width: 650px
  2531.    }
  2532.  </style>
  2533.  
  2534.  <div class="section   section-blends section-full"><div class="rich-text justify-center ">
  2535.      <div class="rich-text__wrapper">
  2536.        <div class="prose justify-items-center text-center"><div ><h4><strong>Welcome to TheKodaOnline!</strong></h4><p><strong>We're thrilled to have you here. At TheKodaOnline, we're all about bringing you the best in fashion, technology, and style. Whether you're looking to upgrade your wardrobe with our chic unisex wear, find the perfect pair of shoes, accessorize with our trendy caps and cross bags, or explore the latest gadgets and e-bikes, you've come to the right place.</strong></p></div></div>
  2537.      </div>
  2538.    </div>
  2539.  </div></section><section id="shopify-section-template--23414556066084__media_with_text_mtKYq9" class="shopify-section shopify-section--media-with-text"><style>
  2540.  #shopify-section-template--23414556066084__media_with_text_mtKYq9 {
  2541.    --section-background-hash: 0;
  2542.  }
  2543.  
  2544.  #shopify-section-template--23414556066084__media_with_text_mtKYq9 + * {
  2545.    --previous-section-background-hash: 0;
  2546.  }</style><style>
  2547.  #shopify-section-template--23414556066084__media_with_text_mtKYq9 {
  2548.    --media-with-text-gap: 0;
  2549.    --media-with-text-item-grid-template: "media" "content" / auto;
  2550.  }
  2551.  
  2552.  @media screen and (min-width: 1000px) {
  2553.    #shopify-section-template--23414556066084__media_with_text_mtKYq9 {
  2554.      --media-with-text-gap: 0;
  2555.    }
  2556.  }#block-template--23414556066084__media_with_text_mtKYq9-video_e3JUy7 {
  2557.      --media-with-text-item-icon-width: 48px;
  2558.    }
  2559.  
  2560.    @media screen and (min-width: 1000px) {
  2561.      #block-template--23414556066084__media_with_text_mtKYq9-video_e3JUy7 {
  2562.        --media-with-text-item-grid-template: "content media" / minmax(0, 1.1fr) minmax(0, 0.9fr);
  2563.      }
  2564.    }#block-template--23414556066084__media_with_text_mtKYq9-video_RN8fP3 {
  2565.      --media-with-text-item-icon-width: 48px;
  2566.    }
  2567.  
  2568.    @media screen and (min-width: 1000px) {
  2569.      #block-template--23414556066084__media_with_text_mtKYq9-video_RN8fP3 {
  2570.        --media-with-text-item-grid-template: "media content" / minmax(0, 1.0fr) minmax(0, 1.0fr);
  2571.      }
  2572.    }</style><div class="section   section-blends section-full">
  2573.  <media-with-text class="media-with-text full-bleed"><div id="block-template--23414556066084__media_with_text_mtKYq9-video_e3JUy7" class="media-with-text__item" >
  2574.        <div class="media-with-text__media " reveal-on-scroll="true"><video-media autoplay><video playsinline="playsinline" playslinline="true" muted="muted" loop="loop" preload="metadata" poster="//thekoda.online/cdn/shop/files/preview_images/1ca0efcd9dca4501be43cbf37f323aec.thumbnail.0000000000_small.jpg?v=1725146734"><source src="//thekoda.online/cdn/shop/videos/c/vp/1ca0efcd9dca4501be43cbf37f323aec/1ca0efcd9dca4501be43cbf37f323aec.HD-1080p-7.2Mbps-34034366.mp4?v=0" type="video/mp4"><img src="//thekoda.online/cdn/shop/files/preview_images/1ca0efcd9dca4501be43cbf37f323aec.thumbnail.0000000000_small.jpg?v=1725146734"></video></video-media></div><div class="media-with-text__content  bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;">
  2575.          <div class="prose break-all place-self-center text-center" reveal-on-scroll="true"><p class="h2">Perfect for On-the-Go lifestyle</p><p>The modern consumer is always on the move, and cross bags cater to this dynamic lifestyle. Whether you’re commuting, traveling, or simply running errands, a cross bag provides the perfect blend of comfort and accessibility. Our cross bags are designed with multiple compartments, ensuring that your belongings are organized and easily accessible, making them an indispensable companion for daily activities.</p>
  2576. <a class="button button--xl"
  2577.  
  2578.  
  2579.  
  2580.  
  2581.  
  2582.  href="/collections/cross-bags"
  2583.  
  2584.  
  2585. >SHOP NOW</a></div>
  2586.        </div>
  2587.      </div><div id="block-template--23414556066084__media_with_text_mtKYq9-video_RN8fP3" class="media-with-text__item" >
  2588.        <div class="media-with-text__media " reveal-on-scroll="true"><video-media autoplay><video playsinline="playsinline" playslinline="true" muted="muted" loop="loop" preload="metadata" poster="//thekoda.online/cdn/shop/files/preview_images/e9092c7421f148b5b7e439cff5bf4f8b.thumbnail.0000000000_small.jpg?v=1725209834"><source src="//thekoda.online/cdn/shop/videos/c/vp/e9092c7421f148b5b7e439cff5bf4f8b/e9092c7421f148b5b7e439cff5bf4f8b.SD-480p-0.9Mbps-34052159.mp4?v=0" type="video/mp4"><img src="//thekoda.online/cdn/shop/files/preview_images/e9092c7421f148b5b7e439cff5bf4f8b.thumbnail.0000000000_small.jpg?v=1725209834"></video></video-media></div><div class="media-with-text__content  bg-custom text-custom"style="--background: 242 242 242; --text-color: 0 0 0;">
  2589.          <div class="prose break-all place-self-center text-center" reveal-on-scroll="true"><p class="h2">Versatile Fashion Statement</p><p>Cross bags are a stylish accessory that can easily elevate any outfit. Whether you’re dressing up for a formal occasion or going for a casual look, a cross bag adds a chic touch that complements your overall style. Our selection of cross bags is designed to appeal to a wide range of fashion preferences, ensuring that every customer finds something that resonates with their personal style.</p>
  2590. <a class="button button--xl"
  2591.  
  2592.  
  2593.  
  2594.  
  2595.  
  2596.  href="/collections/cross-bags"
  2597.  
  2598.  
  2599. >BUY NOW</a></div>
  2600.        </div>
  2601.      </div></media-with-text>
  2602. </div>
  2603.  
  2604. </section><section id="shopify-section-template--23414556066084__collection_list_rCBVT6" class="shopify-section shopify-section--collection-list"><style>
  2605.  #shopify-section-template--23414556066084__collection_list_rCBVT6 {
  2606.    --section-background-hash: 0;
  2607.  }
  2608.  
  2609.  #shopify-section-template--23414556066084__collection_list_rCBVT6 + * {
  2610.    --previous-section-background-hash: 0;
  2611.  }</style><style>
  2612.  #shopify-section-template--23414556066084__collection_list_rCBVT6 .collection-list {
  2613.    --collection-list-grid: auto / auto-flow 73vw;
  2614.  }
  2615.  
  2616.  @media screen and (min-width: 700px) {
  2617.    #shopify-section-template--23414556066084__collection_list_rCBVT6 .collection-list {
  2618.      --collection-list-grid: auto / auto-flow 36vw;
  2619.    }
  2620.  }
  2621.  
  2622.  @media screen and (min-width: 1000px) {
  2623.    #shopify-section-template--23414556066084__collection_list_rCBVT6 .collection-list {
  2624.      --collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 3 - (var(--grid-gutter) / 3 * 2));
  2625.    }
  2626.  }
  2627.  
  2628.  @media screen and (min-width: 1400px) {
  2629.    #shopify-section-template--23414556066084__collection_list_rCBVT6 .collection-list {
  2630.      --collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 3 - (var(--grid-gutter) / 3 * 2));
  2631.    }
  2632.  }
  2633. </style><div class="section   section-blends section-full">
  2634.  <div class="section-stack">
  2635.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>SHOP BY CATEGORY</split-lines></h2></div><a href="/collections" class="text-with-icon group">
  2636.        <span class="reversed-link">VIEW ALL</span>
  2637.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2638.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2639.      </svg></span>
  2640.      </a></section-header><div class="floating-controls-container"><scroll-carousel selector=".collection-card" id="scroll-area-template--23414556066084__collection_list_rCBVT6" class="scroll-area bleed is-scrollable">
  2641.        <collection-list class="collection-list"><a href="/collections/gadgets" class="collection-card  shadow" reveal-js>
  2642.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=800" alt="Heated vest with multiple warming zones and USB power connection." srcset="//thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=200 200w, //thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=300 300w, //thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=400 400w, //thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=500 500w, //thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=600 600w, //thekoda.online/cdn/shop/files/9-heated-vest-zones-electric-jackets-men-women-sportswear-coat-546.webp?v=1728838031&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">GADGETS</p>
  2643.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2644.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2645.      </svg></div></div>
  2646.            </a><a href="/collections/caps" class="collection-card  shadow" reveal-js>
  2647.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=800" alt="Black baseball cap with ’DUKI’ text embroidered on the front." srcset="//thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=200 200w, //thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=300 300w, //thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=400 400w, //thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=500 500w, //thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=600 600w, //thekoda.online/cdn/shop/files/classic-distressed-snapback-cap-duki-text-hip-hop-fans-black-size-245.webp?v=1728498031&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">CAPS</p>
  2648.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2649.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2650.      </svg></div></div>
  2651.            </a><a href="/collections/cross-bags" class="collection-card  shadow" reveal-js>
  2652.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=800" alt="Black leather backpack with gold-tone hardware and a kangaroo logo." srcset="//thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=200 200w, //thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=300 300w, //thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=400 400w, //thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=500 500w, //thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=600 600w, //thekoda.online/cdn/shop/files/black-leather-anti-theft-designer-backpack-gold-tone-hardware-cross-975.webp?v=1728503348&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">CROSS BAGS</p>
  2653.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2654.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2655.      </svg></div></div>
  2656.            </a><a href="/collections/fashion-shoes" class="collection-card  shadow" reveal-js>
  2657.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=800" alt="Black leather dress shoe with gold accents and perforated detailing." srcset="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=200 200w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=300 300w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=400 400w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=500 500w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=600 600w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">FASHION SHOES</p>
  2658.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2659.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2660.      </svg></div></div>
  2661.            </a><a href="/collections/wears" class="collection-card  shadow" reveal-js>
  2662.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=800" alt="Pair of white jeans with abstract black paint splatters and patterns." srcset="//thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=200 200w, //thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=300 300w, //thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=400 400w, //thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=500 500w, //thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=600 600w, //thekoda.online/cdn/shop/files/black-camo-print-skinny-jeans-slim-fit-cotton-denim-sale-urban-pair-209.webp?v=1728495629&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">WEARS</p>
  2663.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2664.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2665.      </svg></div></div>
  2666.            </a><a href="/collections/e-bikes" class="collection-card  shadow" reveal-js>
  2667.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.3"><img src="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=800" alt="Electric fat tire bicycle with a sturdy frame and wide handlebars." srcset="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=200 200w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=300 300w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=400 400w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=500 500w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=600 600w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 73vw, 533px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">E-BIKES</p>
  2668.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2669.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2670.      </svg></div></div>
  2671.            </a></collection-list>
  2672.      </scroll-carousel><button is="prev-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--23414556066084__collection_list_rCBVT6" disabled>
  2673.            <span class="sr-only">Previous</span>
  2674.            <span class="animated-arrow animated-arrow--reverse"></span>
  2675.          </button>
  2676.  
  2677.          <button is="next-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--23414556066084__collection_list_rCBVT6">
  2678.            <span class="sr-only">Next</span>
  2679.            <span class="animated-arrow"></span>
  2680.          </button></div>
  2681.  </div>
  2682. </div>
  2683.  
  2684. </section><section id="shopify-section-template--23414556066084__text_with_icons_x4gyDy" class="shopify-section shopify-section--text-with-icons"><style>
  2685.  #shopify-section-template--23414556066084__text_with_icons_x4gyDy {
  2686.    --section-background-hash: 0;
  2687.  }
  2688.  
  2689.  #shopify-section-template--23414556066084__text_with_icons_x4gyDy + * {
  2690.    --previous-section-background-hash: 0;
  2691.  }</style><style>
  2692.    #shopify-section-template--23414556066084__text_with_icons_x4gyDy {
  2693.      --text-with-icons-template: auto-flow 100%;
  2694.      --text-with-icons-justify: center;
  2695.      --text-with-icons-text-align: center;
  2696.      --text-with-icons-gap: var(--spacing-5);
  2697.    }@media screen and (min-width: 1150px) {
  2698.      #shopify-section-template--23414556066084__text_with_icons_x4gyDy {
  2699.        --text-with-icons-gap: var(--spacing-5);
  2700.      }
  2701.    }@media screen and (min-width: 1150px) {
  2702.        #shopify-section-template--23414556066084__text_with_icons_x4gyDy {
  2703.          --text-with-icons-template: repeat(5, 1fr);
  2704.          --text-with-icons-justify: center;
  2705.          --text-with-icons-text-align: center;
  2706.        }
  2707.      }</style>
  2708.  
  2709.  <div class="section   section-blends section-full text-custom"style="--text-color: 0 0 0;">
  2710.    <div class="section-stack"><div class="text-with-icons">
  2711.        <scroll-carousel class="text-with-icons__list scroll-area full-bleed lg:unbleed" id="carousel-template--23414556066084__text_with_icons_x4gyDy" role="region"><div id="block-template--23414556066084__text_with_icons_x4gyDy-item_QEqq6x" class="text-with-icons__item snap-center" role="group" aria-label="Item 1 of 5" ><div class="icon-block rounded-full bg-secondary"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="24" height="24" class="sm:hidden icon icon-picto-like" viewBox="0 0 24 24">
  2712.        <path d="M7.05 19.41H6V9.6h1.05l4.17-7.234a2.16 2.16 0 0 1 4.008 1.376l-.4 2.875h3.412c1.491 0 4.476 1.492 4.476 4.474 0 2.983-3 9.81-6.173 9.81-4.178 0-7.75-.995-9.49-1.492l-.002.002Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2713.        <path d="M1.286 9.214a2.357 2.357 0 1 1 4.714 0v9.857a2.357 2.357 0 1 1-4.714 0V9.214Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linejoin="round"/>
  2714.      </svg><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="32" height="32" class="hidden sm:block icon icon-picto-like" viewBox="0 0 24 24">
  2715.        <path d="M7.05 19.41H6V9.6h1.05l4.17-7.234a2.16 2.16 0 0 1 4.008 1.376l-.4 2.875h3.412c1.491 0 4.476 1.492 4.476 4.474 0 2.983-3 9.81-6.173 9.81-4.178 0-7.75-.995-9.49-1.492l-.002.002Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2716.        <path d="M1.286 9.214a2.357 2.357 0 1 1 4.714 0v9.857a2.357 2.357 0 1 1-4.714 0V9.214Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linejoin="round"/>
  2717.      </svg></div><div class="text-with-icons__text-wrapper">
  2718.                <div class="prose"><p class="h5">INNOVATE YOUR JOURNEY</p><h3></h3><p><em>Intersection of innovation and practicality. Our products are designed to inspire and facilitate your creative pursuits.</em></p></div>
  2719.              </div>
  2720.            </div><div id="block-template--23414556066084__text_with_icons_x4gyDy-item_zVDRWi" class="text-with-icons__item snap-center" role="group" aria-label="Item 2 of 5" ><div class="icon-block rounded-full bg-secondary"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="32" height="32" class="sm:hidden icon icon-picto-validation" viewBox="0 0 24 24">
  2721.        <path d="M12 22.714a10.714 10.714 0 1 0 0-21.428 10.714 10.714 0 0 0 0 21.428v0Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2722.        <path d="m7.714 13.071 3.116 3.215c1.468-4.214 2.688-6.062 5.455-8.572" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2723.      </svg><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="48" height="48" class="hidden sm:block icon icon-picto-validation" viewBox="0 0 24 24">
  2724.        <path d="M12 22.714a10.714 10.714 0 1 0 0-21.428 10.714 10.714 0 0 0 0 21.428v0Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2725.        <path d="m7.714 13.071 3.116 3.215c1.468-4.214 2.688-6.062 5.455-8.572" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2726.      </svg></div><div class="text-with-icons__text-wrapper">
  2727.                <div class="prose"><p class="h5">HASSLE-FREE RETURNS</p><p><em>Shop with ease at thekoda online™. Our refund process is quick, simple, and always customer-first.</em></p></div>
  2728.              </div>
  2729.            </div><div id="block-template--23414556066084__text_with_icons_x4gyDy-item_yEcynj" class="text-with-icons__item snap-center" role="group" aria-label="Item 3 of 5" ><div class="icon-block rounded-full bg-secondary"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="40" height="40" class="sm:hidden icon icon-picto-question" viewBox="0 0 24 24">
  2730.        <path d="M4.695 18.082c-1.532-.144-2.82-1.265-3.032-2.787A38.961 38.961 0 0 1 1.68 4.323c.206-1.422 1.368-2.497 2.798-2.646A72.209 72.209 0 0 1 12 1.286c2.573 0 5.054.145 7.47.394a3.178 3.178 0 0 1 2.845 2.695c.263 1.834.397 3.685.4 5.539 0 1.879-.16 3.704-.41 5.479a3.233 3.233 0 0 1-2.89 2.751c-2.525.264-5.06.397-7.598.398-1.799 2.067-3.177 3.09-5.586 4.172v-4.491l-1.165-.106-.37-.035v0Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2731.        <path d="M11.995 10.987c0-.619.504-1 1.392-1.594.823-.549 1.258-1.264 1.063-2.236a2.55 2.55 0 0 0-1.967-1.968A2.53 2.53 0 0 0 9.49 7.646" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2732.        <path d="M11.993 14.55a.214.214 0 0 1 0-.428M11.993 14.55a.214.214 0 0 0 0-.428" stroke="currentColor"/>
  2733.      </svg><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="48" height="48" class="hidden sm:block icon icon-picto-question" viewBox="0 0 24 24">
  2734.        <path d="M4.695 18.082c-1.532-.144-2.82-1.265-3.032-2.787A38.961 38.961 0 0 1 1.68 4.323c.206-1.422 1.368-2.497 2.798-2.646A72.209 72.209 0 0 1 12 1.286c2.573 0 5.054.145 7.47.394a3.178 3.178 0 0 1 2.845 2.695c.263 1.834.397 3.685.4 5.539 0 1.879-.16 3.704-.41 5.479a3.233 3.233 0 0 1-2.89 2.751c-2.525.264-5.06.397-7.598.398-1.799 2.067-3.177 3.09-5.586 4.172v-4.491l-1.165-.106-.37-.035v0Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2735.        <path d="M11.995 10.987c0-.619.504-1 1.392-1.594.823-.549 1.258-1.264 1.063-2.236a2.55 2.55 0 0 0-1.967-1.968A2.53 2.53 0 0 0 9.49 7.646" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2736.        <path d="M11.993 14.55a.214.214 0 0 1 0-.428M11.993 14.55a.214.214 0 0 0 0-.428" stroke="currentColor"/>
  2737.      </svg></div><div class="text-with-icons__text-wrapper">
  2738.                <div class="prose"><p class="h5">CUSTOMER SERVICE</p><p><em>We are available from monday to friday to answer your questions.</em></p></div>
  2739.              </div>
  2740.            </div><div id="block-template--23414556066084__text_with_icons_x4gyDy-item_VLa4Kf" class="text-with-icons__item snap-center" role="group" aria-label="Item 4 of 5" ><div class="icon-block rounded-full bg-secondary"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="24" height="24" class="sm:hidden icon icon-picto-credit-card" viewBox="0 0 24 24">
  2741.        <path d="M1.714 16.882c0 1.36 1.063 2.48 2.4 2.71 1.773.307 3.456.714 7.886.714s6.113-.407 7.886-.713c1.337-.232 2.4-1.351 2.4-2.709V6.708c0-1.183-.806-2.203-1.975-2.39A53.325 53.325 0 0 0 12 3.694c-4.43 0-6.114.407-7.887.713-1.337.232-2.4 1.351-2.4 2.709v9.766Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2742.        <path d="M22.286 9.588H1.714V7.02c0-1.305 1.02-2.378 2.306-2.597.235-.04.466-.08.703-.124 1.584-.288 3.351-.605 7.277-.605 3.69 0 6.617.352 8.39.638 1.12.182 1.896 1.162 1.896 2.297v2.959Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2743.        <path d="M14.666 15.804h3.485" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2744.      </svg><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="48" height="48" class="hidden sm:block icon icon-picto-credit-card" viewBox="0 0 24 24">
  2745.        <path d="M1.714 16.882c0 1.36 1.063 2.48 2.4 2.71 1.773.307 3.456.714 7.886.714s6.113-.407 7.886-.713c1.337-.232 2.4-1.351 2.4-2.709V6.708c0-1.183-.806-2.203-1.975-2.39A53.325 53.325 0 0 0 12 3.694c-4.43 0-6.114.407-7.887.713-1.337.232-2.4 1.351-2.4 2.709v9.766Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2746.        <path d="M22.286 9.588H1.714V7.02c0-1.305 1.02-2.378 2.306-2.597.235-.04.466-.08.703-.124 1.584-.288 3.351-.605 7.277-.605 3.69 0 6.617.352 8.39.638 1.12.182 1.896 1.162 1.896 2.297v2.959Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2747.        <path d="M14.666 15.804h3.485" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2748.      </svg></div><div class="text-with-icons__text-wrapper">
  2749.                <div class="prose"><p class="h5">SECURE PAYMENT</p><p><em>Your payment information is processed securely.safer and faster</em></p></div>
  2750.              </div>
  2751.            </div><div id="block-template--23414556066084__text_with_icons_x4gyDy-item_fJq8Md" class="text-with-icons__item snap-center" role="group" aria-label="Item 5 of 5" ><div class="icon-block rounded-full bg-secondary"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="24" height="24" class="sm:hidden icon icon-picto-earth" viewBox="0 0 24 24">
  2752.        <path d="M12 22.621c5.866 0 10.621-4.755 10.621-10.621 0-5.866-4.755-10.621-10.621-10.621C6.134 1.379 1.379 6.134 1.379 12c0 5.866 4.755 10.621 10.621 10.621Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2753.        <path d="M5.055 16.085a2.86 2.86 0 0 0 2.86-2.86v-2.45a2.86 2.86 0 0 1 2.86-2.86 2.86 2.86 0 0 0 2.859-2.86V1.504A10.702 10.702 0 0 0 12 1.379C6.134 1.379 1.379 6.134 1.379 12c0 1.448.29 2.828.814 4.085h2.862ZM22.62 11.836a5.817 5.817 0 0 0-2.646-.653h-3.48a2.86 2.86 0 0 0 0 5.719 2.042 2.042 0 0 1 2.042 2.043v1.421h.008a10.602 10.602 0 0 0 4.077-8.303v-.126l-.001-.1Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2754.      </svg><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="48" height="48" class="hidden sm:block icon icon-picto-earth" viewBox="0 0 24 24">
  2755.        <path d="M12 22.621c5.866 0 10.621-4.755 10.621-10.621 0-5.866-4.755-10.621-10.621-10.621C6.134 1.379 1.379 6.134 1.379 12c0 5.866 4.755 10.621 10.621 10.621Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2756.        <path d="M5.055 16.085a2.86 2.86 0 0 0 2.86-2.86v-2.45a2.86 2.86 0 0 1 2.86-2.86 2.86 2.86 0 0 0 2.859-2.86V1.504A10.702 10.702 0 0 0 12 1.379C6.134 1.379 1.379 6.134 1.379 12c0 1.448.29 2.828.814 4.085h2.862ZM22.62 11.836a5.817 5.817 0 0 0-2.646-.653h-3.48a2.86 2.86 0 0 0 0 5.719 2.042 2.042 0 0 1 2.042 2.043v1.421h.008a10.602 10.602 0 0 0 4.077-8.303v-.126l-.001-.1Z" fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2757.      </svg></div><div class="text-with-icons__text-wrapper">
  2758.                <div class="prose"><p class="h5">WORLDWIDE SHIPPING</p><p><em>We ship all over the world.safe and secure</em></p></div>
  2759.              </div>
  2760.            </div></scroll-carousel><page-dots aria-controls="carousel-template--23414556066084__text_with_icons_x4gyDy" class="page-dots peer-not-scrollable:hidden"><button type="button" class="tap-area" aria-current="true">
  2761.                <span class="sr-only">Go to item 1</span>
  2762.              </button><button type="button" class="tap-area" aria-current="false">
  2763.                <span class="sr-only">Go to item 2</span>
  2764.              </button><button type="button" class="tap-area" aria-current="false">
  2765.                <span class="sr-only">Go to item 3</span>
  2766.              </button><button type="button" class="tap-area" aria-current="false">
  2767.                <span class="sr-only">Go to item 4</span>
  2768.              </button><button type="button" class="tap-area" aria-current="false">
  2769.                <span class="sr-only">Go to item 5</span>
  2770.              </button></page-dots></div>
  2771.    </div>
  2772.  </div></section><section id="shopify-section-template--23414556066084__image_with_text_overlay_BnVbyy" class="shopify-section shopify-section--image-with-text-overlay"><style>
  2773.  #shopify-section-template--23414556066084__image_with_text_overlay_BnVbyy {--section-outer-spacing-block: 0;--content-over-media-overlay: 0 0 0 / 0.0;}
  2774. </style>
  2775.  
  2776. <div class="section   section-blends section-full text-custom"style="--text-color: 0 0 0;" ><image-banner reveal-on-scroll="true"  class="content-over-media content-over-media--auto full-bleed  text-custom"style="--text-color: 0 0 0;"><img src="//thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=2000" alt="White sneakers with thick soles and laces." srcset="//thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=200 200w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=300 300w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=400 400w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=500 500w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=600 600w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=700 700w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=800 800w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=900 900w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1600 1600w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1800 1800w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=2000 2000w" width="2000" height="1000" loading="lazy" sizes="100vw" class="hidden sm:block"><img src="//thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=2000" alt="White sneakers with thick soles and laces." srcset="//thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=200 200w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=300 300w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=400 400w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=500 500w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=600 600w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=700 700w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=800 800w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=900 900w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1000 1000w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1200 1200w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1400 1400w, //thekoda.online/cdn/shop/files/white-sneakers-soles-laces.webp?v=1728036680&amp;width=1600 1600w" width="2000" height="1000" loading="lazy" sizes="100vw" class="sm:hidden"><div class="place-self-center text-center sm:place-self-center sm:text-center">
  2777.        <div class="prose">
  2778. <a class="button button--outline"
  2779.  style="--button-background: 255 255 255 / var(--button-background-opacity, 1);--button-text-color: 255 255 255;--button-outline-color: 255 255 255;"
  2780.  
  2781.  
  2782.  
  2783.  
  2784.  href="/collections"
  2785.  
  2786.  
  2787. >EXPLORE ALL COLLECTIONS</a>
  2788. </div>
  2789.      </div></image-banner>
  2790. </div>
  2791.  
  2792. </section><section id="shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044" class="shopify-section shopify-section--featured-collection"><style>
  2793.  #shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044 {
  2794.    --section-background-hash: 0;
  2795.  }
  2796.  
  2797.  #shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044 + * {
  2798.    --previous-section-background-hash: 0;
  2799.  }</style><style>#shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044 .product-list {
  2800.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2801.    --product-list-items-per-row: 2;
  2802.    --product-list-carousel-item-width: 74vw;
  2803.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  2804.  }
  2805.  
  2806.  @media screen and (min-width: 700px) {
  2807.    #shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044 .product-list {
  2808.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2809.      --product-list-items-per-row: 2;
  2810.      --product-list-carousel-item-width: 36vw;
  2811.    }
  2812.  }
  2813.  
  2814.  @media screen and (min-width: 1000px) {
  2815.    #shopify-section-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044 .product-list {
  2816.      --product-list-items-per-row: 4;
  2817.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 4 - (var(--product-list-column-gap) / 4 * 3));
  2818.    }
  2819.  }
  2820. </style>
  2821.  
  2822. <div class="section   section-blends section-full">
  2823.  <div class="section-stack">
  2824.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>SHOES</split-lines></h2></div><a href="/collections/fashion-shoes" class="text-with-icon group">
  2825.        <span class="reversed-link">VIEW ALL</span>
  2826.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2827.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2828.      </svg></span>
  2829.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044" class="scroll-area bleed is-scrollable">
  2830.        <reveal-items selector=".product-list > *">
  2831.          <product-list class="product-list"><product-card handle="black-leather-dress-shoes-gold-accents-large-48-men"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2832.      <a href="/products/black-leather-dress-shoes-gold-accents-large-48-men" data-instant><img src="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=800" alt="Black leather dress shoe with gold accents and perforated detailing." srcset="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=200 200w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=300 300w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=400 400w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=500 500w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=600 600w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=700 700w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-981.webp?v=1728500327&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=800" alt="Pair of black leather dress shoes with perforated detailing." srcset="//thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=200 200w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=300 300w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=400 400w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=500 500w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=600 600w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=700 700w, //thekoda.online/cdn/shop/files/black-leather-dress-shoes-gold-accents-large-48-men-shoe-pair-528.webp?v=1728500335&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2833.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2834.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2835.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2836.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2837.          </svg></button>
  2838.            </div>
  2839.  
  2840.            <div class="pointer-coarse:hidden">
  2841. <button type="button" class="button"
  2842.  
  2843.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660" aria-expanded="false"
  2844.  
  2845.  
  2846.  
  2847.  
  2848.  
  2849.  is="custom-button"
  2850. >+ Quick add</button></div>
  2851.  
  2852.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660" header-bordered open-from="bottom" handle="black-leather-dress-shoes-gold-accents-large-48-men" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/black-leather-dress-shoes-gold-accents-large-48-men" class="bold" data-instant>Black Leather Dress Shoes with Gold Accents for Large 48 Men</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2853.        <span class="sr-only">Sale price</span>$54.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1-brown" value="brown"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1-brown" data-option-value  style="--swatch-background: brown">
  2854.        <span class="sr-only">brown</span>
  2855.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1-black" value="black"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110458660-1-black" data-option-value  style="--swatch-background: black">
  2856.        <span class="sr-only">black</span>
  2857.      </label>
  2858.                </fieldset></div></div>
  2859. </product-card><product-card handle="cloth-shoes-mens-breathable-r-soft-slip-on-loafers-for-men"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2860.      <a href="/products/cloth-shoes-mens-breathable-r-soft-slip-on-loafers-for-men" data-instant><img src="//thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=800" alt="Brown slip-on loafer with textured fabric upper and leather trim." srcset="//thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=200 200w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=300 300w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=400 400w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=500 500w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=600 600w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=700 700w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-loafer-fabric-447.webp?v=1728503793&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=800" alt="Brown slip-on shoe with textured fabric and leather-like material." srcset="//thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=200 200w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=300 300w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=400 400w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=500 500w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=600 600w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=700 700w, //thekoda.online/cdn/shop/files/brown-textured-cloth-slip-on-loafers-men-causal-shoes-shoe-fabric-628.webp?v=1728503801&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2861.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2862.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2863.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2864.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2865.          </svg></button>
  2866.            </div>
  2867.  
  2868.            <div class="pointer-coarse:hidden">
  2869. <button type="button" class="button"
  2870.  
  2871.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940" aria-expanded="false"
  2872.  
  2873.  
  2874.  
  2875.  
  2876.  
  2877.  is="custom-button"
  2878. >+ Quick add</button></div>
  2879.  
  2880.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940" header-bordered open-from="bottom" handle="cloth-shoes-mens-breathable-r-soft-slip-on-loafers-for-men" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/cloth-shoes-mens-breathable-r-soft-slip-on-loafers-for-men" class="bold" data-instant>Brown Textured Cloth Slip-On Loafers for Men</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2881.        <span class="sr-only">Sale price</span>$39.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1-chocolate" value="Chocolate"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1-chocolate" data-option-value  style="--swatch-background: chocolate">
  2882.        <span class="sr-only">Chocolate</span>
  2883.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1-gray" value="GRAY"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191131940-1-gray" data-option-value  style="--swatch-background: gray">
  2884.        <span class="sr-only">GRAY</span>
  2885.      </label>
  2886.                </fieldset></div></div>
  2887. </product-card><product-card handle="custom-pikachu-squirtle-cartoon-sneakers-lightweight-running"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2888.      <a href="/products/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running" data-instant><img src="//thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=800" alt="Pair of custom Pokemon-themed sneakers featuring Pikachu and Squirtle designs." srcset="//thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=200 200w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=300 300w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=400 400w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=500 500w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=600 600w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=700 700w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-300.webp?v=1728500269&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=769" alt="Pair of mismatched sneakers, one light blue and one yellow with white details." srcset="//thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=200 200w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=300 300w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=400 400w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=500 500w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=600 600w, //thekoda.online/cdn/shop/files/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running-pair-139.webp?v=1728500276&amp;width=700 700w" width="769" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2889.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2890.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2891.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2892.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2893.          </svg></button>
  2894.            </div>
  2895.  
  2896.            <div class="pointer-coarse:hidden">
  2897. <button type="button" class="button"
  2898.  
  2899.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892" aria-expanded="false"
  2900.  
  2901.  
  2902.  
  2903.  
  2904.  
  2905.  is="custom-button"
  2906. >+ Quick add</button></div>
  2907.  
  2908.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892" header-bordered open-from="bottom" handle="custom-pikachu-squirtle-cartoon-sneakers-lightweight-running" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/custom-pikachu-squirtle-cartoon-sneakers-lightweight-running" class="bold" data-instant>Custom Pikachu and Squirtle Cartoon Sneakers for Lightweight Running</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2909.        <span class="sr-only">Sale price</span>$58.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892-1-1-white-shoelaces" value="1-White shoelaces"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110425892-1-1-white-shoelaces" data-option-value  style="--swatch-background: 1-white shoelaces">
  2910.        <span class="sr-only">1-White shoelaces</span>
  2911.      </label>
  2912.                </fieldset></div></div>
  2913. </product-card><product-card handle="fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2914.      <a href="/products/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh" data-instant><img src="//thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=800" alt="Casual sneaker with blue and tan color-blocking, featuring a distinctive patch logo on the side." srcset="//thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-802.webp?v=1728500015&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=800" alt="Casual canvas sneaker with a multi-colored design featuring beige, navy, and tan tones." srcset="//thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh-772.webp?v=1728500036&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2915.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2916.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2917.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2918.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2919.          </svg></button>
  2920.            </div>
  2921.  
  2922.            <div class="pointer-coarse:hidden">
  2923. <button type="button" class="button"
  2924.  
  2925.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124" aria-expanded="false"
  2926.  
  2927.  
  2928.  
  2929.  
  2930.  
  2931.  is="custom-button"
  2932. >+ Quick add</button></div>
  2933.  
  2934.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124" header-bordered open-from="bottom" handle="fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh" class="bold" data-instant>Fashion Men's Canvas Shoes Lightweight Sports Shoes Summer Men Mesh Breathable Vulcanized Shoe Lace Up Man Sneakers Working Shoe</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2935.        <span class="sr-only">Sale price</span>$39.97</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-brown-sneakers-b" value="Brown sneakers-B"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-brown-sneakers-b" data-option-value  style="--swatch-background: brown sneakers-b">
  2936.        <span class="sr-only">Brown sneakers-B</span>
  2937.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-blue-sneakers-a" value="Blue sneakers-A"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-blue-sneakers-a" data-option-value  style="--swatch-background: blue sneakers-a">
  2938.        <span class="sr-only">Blue sneakers-A</span>
  2939.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-blue-sneakers-b" value="Blue sneakers-B"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-blue-sneakers-b" data-option-value  style="--swatch-background: blue sneakers-b">
  2940.        <span class="sr-only">Blue sneakers-B</span>
  2941.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-brown-sneakers-a" value="Brown sneakers-A"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110393124-1-brown-sneakers-a" data-option-value  style="--swatch-background: brown sneakers-a">
  2942.        <span class="sr-only">Brown sneakers-A</span>
  2943.      </label>
  2944.                    <a href="/products/fashion-mens-canvas-shoes-lightweight-sports-summer-men-mesh" data-instant class="color-swatch__view-more rounded-full text-xxs text-subdued">+1</a>
  2945.                  
  2946.                </fieldset></div></div>
  2947. </product-card><product-card handle="fashion-mens-mesh-sneakers-lightweight-running-shoes-summer"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2948.      <a href="/products/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer" data-instant><img src="//thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=800" alt="Pair of light blue athletic sneakers with mesh detailing and ’FASHION’ printed on the side." srcset="//thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-487.webp?v=1728495440&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=800" alt="Pair of white mesh sneakers with ’Fashion’ printed on the side." srcset="//thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=200 200w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=300 300w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=400 400w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=500 500w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=600 600w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=700 700w, //thekoda.online/cdn/shop/files/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer-699.webp?v=1728495452&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2949.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2950.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2951.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2952.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2953.          </svg></button>
  2954.            </div>
  2955.  
  2956.            <div class="pointer-coarse:hidden">
  2957. <button type="button" class="button"
  2958.  
  2959.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500" aria-expanded="false"
  2960.  
  2961.  
  2962.  
  2963.  
  2964.  
  2965.  is="custom-button"
  2966. >+ Quick add</button></div>
  2967.  
  2968.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500" header-bordered open-from="bottom" handle="fashion-mens-mesh-sneakers-lightweight-running-shoes-summer" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/fashion-mens-mesh-sneakers-lightweight-running-shoes-summer" class="bold" data-instant>Fashion Men's Mesh Sneakers Lightweight Running Shoes Summer Mesh Sneakers Breathable Casual Shoes Comfortable Men's Tennis</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2969.        <span class="sr-only">Sale price</span>$39.97</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-blue" value="Blue"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-blue" data-option-value  style="--swatch-background: blue">
  2970.        <span class="sr-only">Blue</span>
  2971.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-black" value="black"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-black" data-option-value  style="--swatch-background: black">
  2972.        <span class="sr-only">black</span>
  2973.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-creamy-white" value="Creamy-white"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077854500-1-creamy-white" data-option-value  style="--swatch-background: creamy-white">
  2974.        <span class="sr-only">Creamy-white</span>
  2975.      </label>
  2976.                </fieldset></div></div>
  2977. </product-card><product-card handle="gray-white-nba-logo-sneakers-mens-comfort-platform-style"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2978.      <a href="/products/gray-white-nba-logo-sneakers-mens-comfort-platform-style" data-instant><img src="//thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=800" alt="Gray sneaker with a textured upper, gum rubber sole, and a small colorful logo patch." srcset="//thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=200 200w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=300 300w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=400 400w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=500 500w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=600 600w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=700 700w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-sneaker-509.webp?v=1728495495&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=800" alt="Black sneaker with a gum rubber sole and Arabic-style writing on the side." srcset="//thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=200 200w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=300 300w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=400 400w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=500 500w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=600 600w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=700 700w, //thekoda.online/cdn/shop/files/gray-white-nba-logo-sneakers-mens-comfort-platform-style-black-779.webp?v=1728495503&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  2979.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  2980.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2981.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2982.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  2983.          </svg></button>
  2984.            </div>
  2985.  
  2986.            <div class="pointer-coarse:hidden">
  2987. <button type="button" class="button"
  2988.  
  2989.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268" aria-expanded="false"
  2990.  
  2991.  
  2992.  
  2993.  
  2994.  
  2995.  is="custom-button"
  2996. >+ Quick add</button></div>
  2997.  
  2998.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268" header-bordered open-from="bottom" handle="gray-white-nba-logo-sneakers-mens-comfort-platform-style" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/gray-white-nba-logo-sneakers-mens-comfort-platform-style" class="bold" data-instant>Gray and White NBA Logo Sneakers for Men's Comfort Platform Style</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  2999.        <span class="sr-only">Sale price</span>$60.97</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1-black" value="black"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1-black" data-option-value  style="--swatch-background: black">
  3000.        <span class="sr-only">black</span>
  3001.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1-gray" value="GRAY"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633077887268-1-gray" data-option-value  style="--swatch-background: gray">
  3002.        <span class="sr-only">GRAY</span>
  3003.      </label>
  3004.                </fieldset></div></div>
  3005. </product-card><product-card handle="italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3006.      <a href="/products/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather" data-instant><img src="//thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=800" alt="Pair of white and silver sneakers with decorative elements and lace-up design." srcset="//thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=200 200w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=300 300w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=400 400w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=500 500w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=600 600w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=700 700w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-721.webp?v=1728503589&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=800" alt="White sneaker with colorful ’Rodarte’ text on the side." srcset="//thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=200 200w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=300 300w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=400 400w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=500 500w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=600 600w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=700 700w, //thekoda.online/cdn/shop/files/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather-159.webp?v=1728503607&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3007.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3008.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3009.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3010.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3011.          </svg></button>
  3012.            </div>
  3013.  
  3014.            <div class="pointer-coarse:hidden">
  3015. <button type="button" class="button"
  3016.  
  3017.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172" aria-expanded="false"
  3018.  
  3019.  
  3020.  
  3021.  
  3022.  
  3023.  is="custom-button"
  3024. >+ Quick add</button></div>
  3025.  
  3026.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172" header-bordered open-from="bottom" handle="italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/italy-designers-mens-casual-shoes-luxury-fashion-genuine-leather" class="bold" data-instant>Italy Designers Men's Casual shoes luxury fashion Genuine leather Business leather Bee shoes Lace-up Sports classic Sneakers</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3027.        <span class="sr-only">Sale price</span>$69.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1-white" value="WHITE"  checked="checked"><label class="color-swatch  color-swatch--sm ring-inset rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1-white" data-option-value  style="--swatch-background: white">
  3028.        <span class="sr-only">WHITE</span>
  3029.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1-black" value="black"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9640191099172-1-black" data-option-value  style="--swatch-background: black">
  3030.        <span class="sr-only">black</span>
  3031.      </label>
  3032.                </fieldset></div></div>
  3033. </product-card><product-card handle="men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3034.      <a href="/products/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple" data-instant><img src="//thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=800" alt="Pair of casual red canvas sneakers with white soles and laces." srcset="//thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=200 200w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=300 300w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=400 400w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=500 500w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=600 600w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=700 700w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-492.webp?v=1728496474&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=800" alt="Green canvas sneaker with white rubber sole and toe cap." srcset="//thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=200 200w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=300 300w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=400 400w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=500 500w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=600 600w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=700 700w, //thekoda.online/cdn/shop/files/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple-814.webp?v=1728496492&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3035.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3036.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3037.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3038.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3039.          </svg></button>
  3040.            </div>
  3041.  
  3042.            <div class="pointer-coarse:hidden">
  3043. <button type="button" class="button"
  3044.  
  3045.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644" aria-expanded="false"
  3046.  
  3047.  
  3048.  
  3049.  
  3050.  
  3051.  is="custom-button"
  3052. >+ Quick add</button></div>
  3053.  
  3054.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644" header-bordered open-from="bottom" handle="men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple" class="bold" data-instant>Men Canvas Shoes High Quality Solid Color Fashion Lace Up Flat Simple Casual Sneakers Hot Sale Tenis Masculino Zapatillas Hombre</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3055.        <span class="sr-only">Sale price</span>$65.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-green" value="Green"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-green" data-option-value  style="--swatch-background: green">
  3056.        <span class="sr-only">Green</span>
  3057.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-red" value="Red"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-red" data-option-value  style="--swatch-background: red">
  3058.        <span class="sr-only">Red</span>
  3059.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-beige" value="Beige"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-beige" data-option-value  style="--swatch-background: beige">
  3060.        <span class="sr-only">Beige</span>
  3061.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-blue" value="Blue"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633082212644-1-blue" data-option-value  style="--swatch-background: blue">
  3062.        <span class="sr-only">Blue</span>
  3063.      </label>
  3064.                    <a href="/products/men-canvas-shoes-high-quality-solid-color-fashion-lace-up-flat-simple" data-instant class="color-swatch__view-more rounded-full text-xxs text-subdued">+1</a>
  3065.                  
  3066.                </fieldset></div></div>
  3067. </product-card><product-card handle="men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3068.      <a href="/products/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons" data-instant><img src="//thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=800" alt="Black and gold athletic sneakers with a basketball player silhouette logo." srcset="//thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=200 200w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=300 300w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=400 400w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=500 500w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=600 600w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=700 700w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-165.webp?v=1728500746&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=800" alt="Black and red athletic sneakers with a distinctive design and air cushioning." srcset="//thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=200 200w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=300 300w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=400 400w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=500 500w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=600 600w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=700 700w, //thekoda.online/cdn/shop/files/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons-772.webp?v=1728500764&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3069.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3070.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3071.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3072.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3073.          </svg></button>
  3074.            </div>
  3075.  
  3076.            <div class="pointer-coarse:hidden">
  3077. <button type="button" class="button"
  3078.  
  3079.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196" aria-expanded="false"
  3080.  
  3081.  
  3082.  
  3083.  
  3084.  
  3085.  is="custom-button"
  3086. >+ Quick add</button></div>
  3087.  
  3088.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196" header-bordered open-from="bottom" handle="men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/men-shoes-leopard-safety-shoe-man-rubber-bottom-mens-slip-ons" class="bold" data-instant>Men Shoes Leopard Safety Shoe Man Rubber Bottom Men's Slip-Ons Brands Luxury Men's Sneakers Without Shoelace Size 41 Tennis Gym</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3089.        <span class="sr-only">Sale price</span>$42.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-white" value="black white"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-white" data-option-value  style="--swatch-background: black white">
  3090.        <span class="sr-only">black white</span>
  3091.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-blue" value="black Blue"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-blue" data-option-value  style="--swatch-background: black blue">
  3092.        <span class="sr-only">black Blue</span>
  3093.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-gold" value="black Gold"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-gold" data-option-value  style="--swatch-background: black gold">
  3094.        <span class="sr-only">black Gold</span>
  3095.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-red" value="black red"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110524196-1-black-red" data-option-value  style="--swatch-background: black red">
  3096.        <span class="sr-only">black red</span>
  3097.      </label>
  3098.                </fieldset></div></div>
  3099. </product-card><product-card handle="snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3100.      <a href="/products/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof" data-instant><img src="//thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=800" alt="Pair of black, quilted, slip-on winter boots with fuzzy lining." srcset="//thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=200 200w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=300 300w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=400 400w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=500 500w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=600 600w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=700 700w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-718.webp?v=1728500511&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=800" alt="Black slip-on padded shoes with horizontal quilted stitching." srcset="//thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=200 200w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=300 300w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=400 400w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=500 500w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=600 600w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=700 700w, //thekoda.online/cdn/shop/files/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof-921.webp?v=1728500532&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3101.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3102.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3103.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3104.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3105.          </svg></button>
  3106.            </div>
  3107.  
  3108.            <div class="pointer-coarse:hidden">
  3109. <button type="button" class="button"
  3110.  
  3111.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428" aria-expanded="false"
  3112.  
  3113.  
  3114.  
  3115.  
  3116.  
  3117.  is="custom-button"
  3118. >+ Quick add</button></div>
  3119.  
  3120.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428" header-bordered open-from="bottom" handle="snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof" class="bold" data-instant>Snow Women Boots Fashion Unisex Shoes Slip On Platform Shoes For Women Ankle Boots Waterproof Plush Winter Shoes Botas Mujer</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3121.        <span class="sr-only">Sale price</span>$39.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-silver-gray" value="silver gray"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-silver-gray" data-option-value  style="--swatch-background: silver gray">
  3122.        <span class="sr-only">silver gray</span>
  3123.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-blue" value="blue"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-blue" data-option-value  style="--swatch-background: blue">
  3124.        <span class="sr-only">blue</span>
  3125.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-black" value="black"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-black" data-option-value  style="--swatch-background: black">
  3126.        <span class="sr-only">black</span>
  3127.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-kermesinus" value="kermesinus"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110491428-1-kermesinus" data-option-value  style="--swatch-background: kermesinus">
  3128.        <span class="sr-only">kermesinus</span>
  3129.      </label>
  3130.                    <a href="/products/snow-women-boots-fashion-unisex-shoes-slip-platform-ankle-waterproof" data-instant class="color-swatch__view-more rounded-full text-xxs text-subdued">+1</a>
  3131.                  
  3132.                </fieldset></div></div>
  3133. </product-card><product-card handle="beige-navy-casual-mule-sneaker-air-branding"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3134.      <a href="/products/beige-navy-casual-mule-sneaker-air-branding" data-instant><img src="//thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=800" alt="Beige and white sneaker-style mule with ’AIR’ text on the side." srcset="//thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=200 200w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=300 300w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=400 400w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=500 500w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=600 600w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=700 700w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-400.webp?v=1728497220&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=800" alt="Stylish sneaker with a mix of beige, blue, and white colors featuring mesh and leather materials." srcset="//thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=200 200w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=300 300w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=400 400w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=500 500w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=600 600w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=700 700w, //thekoda.online/cdn/shop/files/stylish-beige-navy-casual-mule-sneaker-comfortable-footwear-sale-500.webp?v=1728497228&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3135.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3136.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3137.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3138.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3139.          </svg></button>
  3140.            </div>
  3141.  
  3142.            <div class="pointer-coarse:hidden">
  3143. <button type="button" class="button"
  3144.  
  3145.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420" aria-expanded="false"
  3146.  
  3147.  
  3148.  
  3149.  
  3150.  
  3151.  is="custom-button"
  3152. >+ Quick add</button></div>
  3153.  
  3154.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420" header-bordered open-from="bottom" handle="beige-navy-casual-mule-sneaker-air-branding" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/beige-navy-casual-mule-sneaker-air-branding" class="bold" data-instant>Stylish Beige and Navy Casual Mule Sneaker - Comfortable Footwear for Sale</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3155.        <span class="sr-only">Sale price</span>$48.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1-bai-lan" value="Bai Lan"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1-bai-lan" data-option-value  style="--swatch-background: bai lan">
  3156.        <span class="sr-only">Bai Lan</span>
  3157.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1-milan" value="Milan"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633096368420-1-milan" data-option-value  style="--swatch-background: milan">
  3158.        <span class="sr-only">Milan</span>
  3159.      </label>
  3160.                </fieldset></div></div>
  3161. </product-card><product-card handle="winter-men-indoor-warm-slippers-plush-waterproof-anti-slip-cotton"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3162.      <a href="/products/winter-men-indoor-warm-slippers-plush-waterproof-anti-slip-cotton" data-instant><img src="//thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=800" alt="Pair of futuristic slip-on sneakers with a wavy, molded design labeled ’Super.’" srcset="//thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=200 200w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=300 300w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=400 400w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=500 500w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=600 600w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=700 700w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-557.webp?v=1728504505&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=800" alt="Pair of gray foam slip-on shoes with ribbed ankle collars and ’Super’ branding." srcset="//thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=200 200w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=300 300w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=400 400w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=500 500w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=600 600w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=700 700w, //thekoda.online/cdn/shop/files/super-futuristic-plush-waterproof-anti-slip-indoor-warm-slippers-blue-498.webp?v=1728504515&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3163.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3164.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3165.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3166.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3167.          </svg></button>
  3168.            </div>
  3169.  
  3170.            <div class="pointer-coarse:hidden">
  3171. <button type="button" class="button"
  3172.  
  3173.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660" aria-expanded="false"
  3174.  
  3175.  
  3176.  
  3177.  
  3178.  
  3179.  is="custom-button"
  3180. >+ Quick add</button></div>
  3181.  
  3182.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660" header-bordered open-from="bottom" handle="winter-men-indoor-warm-slippers-plush-waterproof-anti-slip-cotton" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/winter-men-indoor-warm-slippers-plush-waterproof-anti-slip-cotton" class="bold" data-instant>Super Futuristic Plush Waterproof Anti-Slip Indoor Warm Slippers</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3183.        <span class="sr-only">Sale price</span>$45.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-yellow" value="Yellow"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-yellow" data-option-value  style="--swatch-background: yellow">
  3184.        <span class="sr-only">Yellow</span>
  3185.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-orange" value="Orange"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-orange" data-option-value  style="--swatch-background: orange">
  3186.        <span class="sr-only">Orange</span>
  3187.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-brown" value="Brown"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-brown" data-option-value  style="--swatch-background: brown">
  3188.        <span class="sr-only">Brown</span>
  3189.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-blue" value="Blue"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9652955578660-1-blue" data-option-value  style="--swatch-background: blue">
  3190.        <span class="sr-only">Blue</span>
  3191.      </label>
  3192.                    <a href="/products/winter-men-indoor-warm-slippers-plush-waterproof-anti-slip-cotton" data-instant class="color-swatch__view-more rounded-full text-xxs text-subdued">+2</a>
  3193.                  
  3194.                </fieldset></div></div>
  3195. </product-card><product-card handle="women-hiking-casual-fashion-shoes-comfortable-sports-running-men"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3196.      <a href="/products/women-hiking-casual-fashion-shoes-comfortable-sports-running-men" data-instant><img src="//thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=800" alt="Pink and gray hiking or trail running shoe with a gold ankle bracelet." srcset="//thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=200 200w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=300 300w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=400 400w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=500 500w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=600 600w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=700 700w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-859.webp?v=1728500958&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=800" alt="Black and pink athletic sneaker with a chunky sole and gold ankle bracelet." srcset="//thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=200 200w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=300 300w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=400 400w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=500 500w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=600 600w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=700 700w, //thekoda.online/cdn/shop/files/women-hiking-casual-fashion-shoes-comfortable-sports-running-men-shoe-394.webp?v=1728500966&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 4 - (24px / 4 * 3))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3197.              <button type="button" aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3198.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3199.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3200.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3201.          </svg></button>
  3202.            </div>
  3203.  
  3204.            <div class="pointer-coarse:hidden">
  3205. <button type="button" class="button"
  3206.  
  3207.  aria-controls="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964" aria-expanded="false"
  3208.  
  3209.  
  3210.  
  3211.  
  3212.  
  3213.  is="custom-button"
  3214. >+ Quick add</button></div>
  3215.  
  3216.            <quick-buy-drawer id="quick-buy-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964" header-bordered open-from="bottom" handle="women-hiking-casual-fashion-shoes-comfortable-sports-running-men" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/women-hiking-casual-fashion-shoes-comfortable-sports-running-men" class="bold" data-instant>Women Hiking Casual Fashion Shoes Comfortable Sports Shoes Running Shoes for Men</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3217.        <span class="sr-only">Sale price</span>$59.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-grey" value="grey"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-grey" data-option-value  style="--swatch-background: grey">
  3218.        <span class="sr-only">grey</span>
  3219.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-red" value="Red"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-red" data-option-value  style="--swatch-background: red">
  3220.        <span class="sr-only">Red</span>
  3221.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1"  id="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-black" value="black"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044---swatch-template-23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044-9633110556964-1-black" data-option-value  style="--swatch-background: black">
  3222.        <span class="sr-only">black</span>
  3223.      </label>
  3224.                </fieldset></div></div>
  3225. </product-card></product-list>
  3226.        </reveal-items>
  3227.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  3228.  <scroll-progress observes="scroll-area-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044" class="scrollbar__progress" style="--scroll-progress: 0.2857142857142857"></scroll-progress><div aria-controls="scroll-area-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044" class="scrollbar__buttons">
  3229.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044" disabled>
  3230.        <span class="sr-only">Previous</span>
  3231.        <span class="animated-arrow animated-arrow--reverse"></span>
  3232.      </button>
  3233.  
  3234.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__f1b3fd4f-9f69-4996-8303-1ad6b3a4b044">
  3235.        <span class="sr-only">Next</span>
  3236.        <span class="animated-arrow"></span>
  3237.      </button>
  3238.    </div></div></div>
  3239.  </div>
  3240. </div>
  3241.  
  3242. </section><section id="shopify-section-template--23414556066084__testimonials_TpPzpF" class="shopify-section shopify-section--testimonials"><style>
  3243.  #shopify-section-template--23414556066084__testimonials_TpPzpF {
  3244.    --section-background-hash: 0;
  3245.  }
  3246.  
  3247.  #shopify-section-template--23414556066084__testimonials_TpPzpF + * {
  3248.    --previous-section-background-hash: 0;
  3249.  }</style><style>
  3250.    #shopify-section-template--23414556066084__testimonials_TpPzpF {
  3251.      --testimonial-list-items-per-row: 1;
  3252.      --testimonial-list-carousel-item-width: 74vw;
  3253.  
  3254.      --testimonial-list-grid: auto / auto-flow var(--testimonial-list-carousel-item-width);
  3255.    }
  3256.  
  3257.    #shopify-section-template--23414556066084__testimonials_TpPzpF .scrollbar {--text-color: 255 255 255;
  3258.    }
  3259.  
  3260.    @media screen and (min-width: 700px) {
  3261.      #shopify-section-template--23414556066084__testimonials_TpPzpF {
  3262.        --testimonial-list-items-per-row: 2;
  3263.        --testimonial-list-carousel-item-width: 52vw;
  3264.      }
  3265.    }
  3266.  
  3267.    @media screen and (min-width: 1000px) {
  3268.      #shopify-section-template--23414556066084__testimonials_TpPzpF {
  3269.        --testimonial-list-carousel-item-width: 36vw;
  3270.      }
  3271.    }
  3272.  
  3273.    @media screen and (min-width: 1150px) {
  3274.      #shopify-section-template--23414556066084__testimonials_TpPzpF {
  3275.        --testimonial-list-items-per-row: 3;
  3276.        --testimonial-list-carousel-item-width: calc(100% / 3 - (var(--grid-gutter) / 3 * 2));
  3277.      }
  3278.    }
  3279.  </style>
  3280.  
  3281.  <div class="section   section-blends section-full text-custom"style="--text-color: 255 255 255;">
  3282.    <div class="section-stack">
  3283.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><span class="text-custom " style="--text-color: 0 0 0;"><split-lines>Explore what our customers are saying about our products</split-lines></span></h2></div><a href="/collections/all" class="text-with-icon group">
  3284.        <span class="reversed-link">SEE MORE</span>
  3285.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3286.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3287.      </svg></span>
  3288.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel id="scroll-area-template--23414556066084__testimonials_TpPzpF" class="testimonial-list scroll-area bleed is-scrollable"><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=736" alt="Smiling man with glasses wearing a dark sweater and sitting on a stool." srcset="//thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=40 40w, //thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=56 56w, //thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=80 80w, //thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=112 112w, //thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=120 120w, //thekoda.online/cdn/shop/files/man-glasses-dark-sweater-stool.webp?v=1728036686&amp;width=168 168w" width="736" height="958" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3289.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3290.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3291.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3292.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3293.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3294.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3295.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3296.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3297.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3298.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3299.      </svg></div>
  3300.                      </div><p class="text-subdued">Michael</p></div>
  3301.                </div><div class="v-stack gap-2 sm:gap-2.5"><p>The caps I ordered are perfect! They’re stylish, comfortable, and the quality is excellent. I’ve already recommended TheKodaOnline to my friends.</p></div></div><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=736" alt="Woman with long dark hair wearing a white blouse against a dark background." srcset="//thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=40 40w, //thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=56 56w, //thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=80 80w, //thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=112 112w, //thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=120 120w, //thekoda.online/cdn/shop/files/woman-long-dark-hair-white-blouse-background.webp?v=1728036693&amp;width=168 168w" width="736" height="1237" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3302.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3303.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3304.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3305.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3306.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3307.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3308.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3309.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3310.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3311.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3312.      </svg></div>
  3313.                      </div><p class="text-subdued">Sophia</p></div>
  3314.                </div><div class="v-stack gap-2 sm:gap-2.5"><p><strong>I love my new cross bag from TheKodaOnline. It’s stylish, functional, and very durable. I get compliments on it all the time!</strong></p></div></div><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=736" alt="Smiling middle-aged African American man wearing glasses, a suit, and tie in a professional portrait." srcset="//thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=40 40w, //thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=56 56w, //thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=80 80w, //thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=112 112w, //thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=120 120w, //thekoda.online/cdn/shop/files/middle-aged-african-american-man-glasses-suit-tie-professional-portrait.webp?v=1728036700&amp;width=168 168w" width="736" height="899" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3315.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3316.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3317.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3318.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3319.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3320.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3321.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3322.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3323.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3324.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3325.      </svg></div>
  3326.                      </div><p class="text-subdued">Liam H.</p></div>
  3327.                </div><div class="v-stack gap-2 sm:gap-2.5"><p><strong> </strong><em><strong>The gadgets from TheKodaOnline are game-changers! I recently purchased a smart watch, and it’s made my life so much easier. The quality is exceptional, and it arrived quickly.</strong></em></p></div></div><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=500" alt="Smiling man in a blue suit and green patterned tie." srcset="//thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=40 40w, //thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=56 56w, //thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=80 80w, //thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=112 112w, //thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=120 120w, //thekoda.online/cdn/shop/files/man-blue-suit-green-patterned-tie.webp?v=1728036706&amp;width=168 168w" width="500" height="625" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3328.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3329.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3330.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3331.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3332.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3333.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3334.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3335.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3336.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3337.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3338.      </svg></div>
  3339.                      </div><p class="text-subdued">David</p></div>
  3340.                </div><div class="v-stack gap-2 sm:gap-2.5"><p><strong>I’ve been using my e-bike for a few weeks now, and it’s fantastic. It’s eco-friendly, stylish, and so easy to ride. TheKodaOnline has great customer service too!</strong></p></div></div><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=720" alt="Smiling woman in a dark blazer with arms crossed." srcset="//thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=40 40w, //thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=56 56w, //thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=80 80w, //thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=112 112w, //thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=120 120w, //thekoda.online/cdn/shop/files/woman-dark-blazer-arms-crossed.webp?v=1728036712&amp;width=168 168w" width="720" height="1080" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3341.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3342.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3343.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3344.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3345.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3346.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3347.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3348.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3349.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3350.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3351.      </svg></div>
  3352.                      </div><p class="text-subdued">Mary</p></div>
  3353.                </div><div class="v-stack gap-2 sm:gap-2.5"><p>I love that I can share these pieces with my partner. The unisex clothing is stylish and comfortable, perfect for both of us!</p></div></div><div class="testimonial rounded-sm bg-custom text-custom"style="--background: 234 234 234; --text-color: 0 0 0;" ><div class="h-stack align-start gap-4 sm:gap-6"><img src="//thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=736" alt="Smiling woman with curly updo hairstyle wearing a black blazer and white top." srcset="//thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=40 40w, //thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=56 56w, //thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=80 80w, //thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=112 112w, //thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=120 120w, //thekoda.online/cdn/shop/files/woman-curly-updo-hairstyle-black-blazer-white.webp?v=1728036719&amp;width=168 168w" width="736" height="1104" loading="lazy" sizes="(max-width: 699px) 40px, 56px" class="testimonial__image rounded-full"><div class="v-stack gap-2 sm:gap-2.5"><div class="rating">
  3354.                        <div class="rating__stars" role="img" aria-label="5 out of 5 stars"><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3355.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3356.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3357.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3358.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3359.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3360.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3361.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3362.      </svg><svg role="presentation" fill="none" focusable="false" width="15" height="15" class="rating__star rating__star--full icon icon-rating-star" viewBox="0 0 15 15">
  3363.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3364.      </svg></div>
  3365.                      </div><p class="text-subdued">Priscilla</p></div>
  3366.                </div><div class="v-stack gap-2 sm:gap-2.5"><p><strong>I love the design of the shoes I bought from TheKodaOnline. They fit perfectly, and the quality is top-notch. Definitely worth every penny!</strong></p></div></div></scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  3367.  <scroll-progress observes="scroll-area-template--23414556066084__testimonials_TpPzpF" class="scrollbar__progress" style="--scroll-progress: 0.5"></scroll-progress><div aria-controls="scroll-area-template--23414556066084__testimonials_TpPzpF" class="scrollbar__buttons">
  3368.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__testimonials_TpPzpF" disabled>
  3369.        <span class="sr-only">Previous</span>
  3370.        <span class="animated-arrow animated-arrow--reverse"></span>
  3371.      </button>
  3372.  
  3373.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__testimonials_TpPzpF">
  3374.        <span class="sr-only">Next</span>
  3375.        <span class="animated-arrow"></span>
  3376.      </button>
  3377.    </div></div></div>
  3378.    </div>
  3379.  </div></section><section id="shopify-section-template--23414556066084__featured_collection_MKxt4Q" class="shopify-section shopify-section--featured-collection"><style>
  3380.  #shopify-section-template--23414556066084__featured_collection_MKxt4Q {
  3381.    --section-background-hash: 0;
  3382.  }
  3383.  
  3384.  #shopify-section-template--23414556066084__featured_collection_MKxt4Q + * {
  3385.    --previous-section-background-hash: 0;
  3386.  }</style><style>#shopify-section-template--23414556066084__featured_collection_MKxt4Q .product-list {
  3387.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3388.    --product-list-items-per-row: 2;
  3389.    --product-list-carousel-item-width: 74vw;
  3390.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  3391.  }
  3392.  
  3393.  @media screen and (min-width: 700px) {
  3394.    #shopify-section-template--23414556066084__featured_collection_MKxt4Q .product-list {
  3395.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3396.      --product-list-items-per-row: 2;
  3397.      --product-list-carousel-item-width: 36vw;
  3398.    }
  3399.  }
  3400.  
  3401.  @media screen and (min-width: 1000px) {
  3402.    #shopify-section-template--23414556066084__featured_collection_MKxt4Q .product-list {
  3403.      --product-list-items-per-row: 3;
  3404.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 3 - (var(--product-list-column-gap) / 3 * 2));
  3405.    }
  3406.  }
  3407. </style>
  3408.  
  3409. <div class="section   section-blends section-full">
  3410.  <div class="section-stack">
  3411.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>E-BIKES</split-lines></h2></div><a href="/collections/e-bikes" class="text-with-icon group">
  3412.        <span class="reversed-link">VIEW ALL</span>
  3413.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3414.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3415.      </svg></span>
  3416.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--23414556066084__featured_collection_MKxt4Q" class="scroll-area bleed is-scrollable">
  3417.        <reveal-items selector=".product-list > *">
  3418.          <product-list class="product-list"><product-card handle="electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3419.      <a href="/products/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah" data-instant><img src="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=800" alt="Electric fat tire bicycle with a sturdy frame and wide handlebars." srcset="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=200 200w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=300 300w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=400 400w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=500 500w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=600 600w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=700 700w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-717.webp?v=1728498587&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=800" alt="Electric bicycle (e-bike) with multiple speed settings and riding modes for adults." srcset="//thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=200 200w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=300 300w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=400 400w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=500 500w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=600 600w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=700 700w, //thekoda.online/cdn/shop/files/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah-575.webp?v=1728498596&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))"></a><div class="product-card__quick-buy"><form method="post" action="/cart/add" id="product_form_9633108328740" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="49816989925668">
  3420.  
  3421.              <div class="pointer-fine:hidden">
  3422.                <button type="submit" is="custom-button" class="product-card__mobile-quick-buy-button" aria-label="+ Quick add"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3423.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3424.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3425.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3426.          </svg></button>
  3427.              </div>
  3428.  
  3429.              <div class="pointer-coarse:hidden">
  3430. <button type="submit" class="button"
  3431.  
  3432.  
  3433.  
  3434.  
  3435.  
  3436.  
  3437.  
  3438.  is="custom-button"
  3439. >+ Quick add</button></div><input type="hidden" name="product-id" value="9633108328740" /><input type="hidden" name="section-id" value="template--23414556066084__featured_collection_MKxt4Q" /></form></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/electric-mountain-bike-adults-25mph-75miles-range-750w-motor-48v-15ah" class="bold" data-instant>Electric Mountain Bike for Adults 25MPH 75Miles Range 750W Motor 48V 15Ah Ebike 26"x4.0" Fat Tire Shimano 7 Speed Hidden Battery</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3440.        <span class="sr-only">Sale price</span>$1,495.00</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__featured_collection_MKxt4Q-9633108328740-1"  id="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633108328740-1-black" value="black"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633108328740-1-black" data-option-value  style="--swatch-background: black">
  3441.        <span class="sr-only">black</span>
  3442.      </label>
  3443.                </fieldset></div></div>
  3444. </product-card><product-card handle="fat-tire-adult-ebike-1500w-rugged-frame-design"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3445.      <a href="/products/fat-tire-adult-ebike-1500w-rugged-frame-design" data-instant><img src="//thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=800" alt="Electric bicycle with fat tires and a rugged frame design." srcset="//thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=200 200w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=300 300w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=400 400w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=500 500w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=600 600w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=700 700w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-electric-bicycle-tires-936.webp?v=1728498799&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=800" alt="Powerful brushless motor with 1500W output, featuring all-copper construction for long service life." srcset="//thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=200 200w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=300 300w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=400 400w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=500 500w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=600 600w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=700 700w, //thekoda.online/cdn/shop/files/fat-tire-adult-ebike-1500w-rugged-frame-design-powerful-brushless-855.webp?v=1728498807&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3446.              <button type="button" aria-controls="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633108361508" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3447.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3448.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3449.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3450.          </svg></button>
  3451.            </div>
  3452.  
  3453.            <div class="pointer-coarse:hidden">
  3454. <button type="button" class="button"
  3455.  
  3456.  aria-controls="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633108361508" aria-expanded="false"
  3457.  
  3458.  
  3459.  
  3460.  
  3461.  
  3462.  is="custom-button"
  3463. >+ Quick add</button></div>
  3464.  
  3465.            <quick-buy-drawer id="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633108361508" header-bordered open-from="bottom" handle="fat-tire-adult-ebike-1500w-rugged-frame-design" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=thekodaonline" class="text-xs link-faded">thekodaonline</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/fat-tire-adult-ebike-1500w-rugged-frame-design" class="bold" data-instant>Fat Tire Adult Ebike 1500W with Rugged Frame Design</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3466.        <span class="sr-only">Sale price</span>$2,499.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__featured_collection_MKxt4Q-9633108361508-1"  id="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633108361508-1-black" value="black"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633108361508-1-black" data-option-value  style="--swatch-background: black">
  3467.        <span class="sr-only">black</span>
  3468.      </label>
  3469.                </fieldset></div></div>
  3470. </product-card><product-card handle="foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3471.      <a href="/products/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max" data-instant><img src="//thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=800" alt="Folding electric bicycle with fat tires and hydraulic brakes." srcset="//thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=200 200w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=300 300w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=400 400w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=500 500w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=600 600w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=700 700w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-385.webp?v=1728496959&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=800" alt="Electric bicycle battery pack with green casing and technical specifications." srcset="//thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=200 200w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=300 300w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=400 400w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=500 500w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=600 600w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=700 700w, //thekoda.online/cdn/shop/files/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max-162.webp?v=1728496974&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))"></a><div class="product-card__quick-buy"><div class="pointer-fine:hidden">
  3472.              <button type="button" aria-controls="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633088241956" aria-expanded="false" aria-label="+ Quick add" is="custom-button" class="product-card__mobile-quick-buy-button"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3473.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3474.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3475.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3476.          </svg></button>
  3477.            </div>
  3478.  
  3479.            <div class="pointer-coarse:hidden">
  3480. <button type="button" class="button"
  3481.  
  3482.  aria-controls="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633088241956" aria-expanded="false"
  3483.  
  3484.  
  3485.  
  3486.  
  3487.  
  3488.  is="custom-button"
  3489. >+ Quick add</button></div>
  3490.  
  3491.            <quick-buy-drawer id="quick-buy-template--23414556066084__featured_collection_MKxt4Q-9633088241956" header-bordered open-from="bottom" handle="foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max" role="region" aria-live="polite" class="quick-buy-drawer drawer"></quick-buy-drawer></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/foldable-mountain-e-bike-dual-motor-snow-electric-bicycle-new-rx20max" class="bold" data-instant>Foldable Mountain E-bike, Dual Motor Snow Electric Bicycle, New, RX20MAX, 2000W, 48V, 17Ah, 20Inch * 4.0 Fat Tyre</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3492.        <span class="sr-only">Sale price</span>$1,878.99</sale-price></price-list></div><div class="product-card__aside"><fieldset class="product-card__swatch-list h-stack gap-0.5" data-option-position="1"><input class="sr-only" type="radio" name="swatch-template--23414556066084__featured_collection_MKxt4Q-9633088241956-1"  id="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633088241956-1-blake" value="Blake"  checked="checked"><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633088241956-1-blake" data-option-value  style="--swatch-background: blake">
  3493.        <span class="sr-only">Blake</span>
  3494.      </label><input class="sr-only" type="radio" name="swatch-template--23414556066084__featured_collection_MKxt4Q-9633088241956-1"  id="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633088241956-1-grey" value="Grey"  ><label class="color-swatch  color-swatch--sm  rounded-full" for="swatch-template--23414556066084__featured_collection_MKxt4Q---swatch-template-23414556066084__featured_collection_mkxt4q-9633088241956-1-grey" data-option-value  style="--swatch-background: grey">
  3495.        <span class="sr-only">Grey</span>
  3496.      </label>
  3497.                </fieldset></div></div>
  3498. </product-card><product-card handle="white-electric-bicycle-removable-battery-cargo-rack"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3499.      <a href="/products/white-electric-bicycle-removable-battery-cargo-rack" data-instant><img src="//thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=800" alt="White electric bicycle with a step-through frame and rear cargo rack." srcset="//thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=200 200w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=300 300w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=400 400w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=500 500w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=600 600w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=700 700w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-184.webp?v=1728498543&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=800" alt="White electric bicycle with a step-through frame and disc brakes." srcset="//thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=200 200w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=300 300w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=400 400w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=500 500w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=600 600w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=700 700w, //thekoda.online/cdn/shop/files/white-electric-bicycle-removable-battery-cargo-rack-united-states-447.webp?v=1728498551&amp;width=800 800w" width="800" height="800" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1600px) / 3 - (24px / 3 * 2))"></a><div class="product-card__quick-buy"><form method="post" action="/cart/add" id="product_form_9633108295972" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="49816989892900">
  3500.  
  3501.              <div class="pointer-fine:hidden">
  3502.                <button type="submit" is="custom-button" class="product-card__mobile-quick-buy-button" aria-label="+ Quick add"><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="16" height="15" class="icon icon-quick-buy-cart" viewBox="0 0 16 15">
  3503.            <path d="M4.5 3.545H15l-2.546 5.728H5.136L3.546 1H1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3504.            <circle cx="5.955" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3505.            <circle cx="11.5" cy="12.682" r=".5" fill="#252627" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  3506.          </svg></button>
  3507.              </div>
  3508.  
  3509.              <div class="pointer-coarse:hidden">
  3510. <button type="submit" class="button"
  3511.  
  3512.  
  3513.  
  3514.  
  3515.  
  3516.  
  3517.  
  3518.  is="custom-button"
  3519. >+ Quick add</button></div><input type="hidden" name="product-id" value="9633108295972" /><input type="hidden" name="section-id" value="template--23414556066084__featured_collection_MKxt4Q" /></form></div></div><div class="product-card__info "><a href="/collections/vendors?q=My%20Store" class="text-xs link-faded">My Store</a><div class="v-stack gap-0.5 w-full "><span class="product-card__title"><a href="/products/white-electric-bicycle-removable-battery-cargo-rack" class="bold" data-instant>White Electric Bicycle with Removable Battery and Cargo Rack</a></span><price-list  class="price-list  " ><sale-price class="text-subdued">
  3520.        <span class="sr-only">Sale price</span>$955.99</sale-price></price-list></div></div>
  3521. </product-card></product-list>
  3522.        </reveal-items>
  3523.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  3524.  <scroll-progress observes="scroll-area-template--23414556066084__featured_collection_MKxt4Q" class="scrollbar__progress" style="--scroll-progress: 0.5"></scroll-progress><div aria-controls="scroll-area-template--23414556066084__featured_collection_MKxt4Q" class="scrollbar__buttons">
  3525.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__featured_collection_MKxt4Q" disabled>
  3526.        <span class="sr-only">Previous</span>
  3527.        <span class="animated-arrow animated-arrow--reverse"></span>
  3528.      </button>
  3529.  
  3530.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--23414556066084__featured_collection_MKxt4Q">
  3531.        <span class="sr-only">Next</span>
  3532.        <span class="animated-arrow"></span>
  3533.      </button>
  3534.    </div></div></div>
  3535.  </div>
  3536. </div>
  3537.  
  3538. </section><section id="shopify-section-template--23414556066084__multi_column_NW6V84" class="shopify-section shopify-section--multi-column"><style>
  3539.  #shopify-section-template--23414556066084__multi_column_NW6V84 {
  3540.    --section-background-hash: 006240030275048957008295910650527;
  3541.  }
  3542.  
  3543.  #shopify-section-template--23414556066084__multi_column_NW6V84 + * {
  3544.    --previous-section-background-hash: 006240030275048957008295910650527;
  3545.  }</style><style>
  3546.    #shopify-section-template--23414556066084__multi_column_NW6V84 {
  3547.      --multi-column-grid: none;
  3548.      --multi-column-list-gap: var(--grid-gutter);
  3549.    }
  3550.  </style>
  3551.  
  3552.  <div class="section   section-full bg-custom text-custom"style="--background: 206 83 76; --text-color: 255 255 255;">
  3553.    <div class="section-stack"><div class="multi-column scroll-area bleed md:unbleed"><div class="multi-column__item justify-center snap-start" style="--multi-column-item-column-count: span 3" ><img src="//thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=1000" alt="Pink ruffled mini skirt with a drawstring waist." srcset="//thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=300 300w, //thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=400 400w, //thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=500 500w, //thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=600 600w, //thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=800 800w, //thekoda.online/cdn/shop/files/pink-ruffled-mini-skirt-waist.webp?v=1728036734&amp;width=1000 1000w" width="1000" height="1000" loading="lazy" sizes="(max-width: 699px) calc(73vw - 40px), (max-width: 999px) calc(38vw - 64px), calc(min(1600px, 100vw) / 4)" class="rounded"><div class="v-stack gap-4 text-center"><p class="h4">Versatility</p><div class="prose"><p>From chic dresses to stylish blouses and pants, our collection offers versatile options that can be easily mixed and matched for different looks.Crafted from materials that ensure a comfortable fit for all-day wear.</p></div></div></div><div class="multi-column__item justify-center snap-start" style="--multi-column-item-column-count: span 3" ><img src="//thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=800" alt="Pair of black, fur-lined slip-on winter boots." srcset="//thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=300 300w, //thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=400 400w, //thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=500 500w, //thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=600 600w, //thekoda.online/cdn/shop/files/pair-black-fur-lined-slip-on-winter-boots.webp?v=1728036740&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) calc(73vw - 40px), (max-width: 999px) calc(38vw - 64px), calc(min(1600px, 100vw) / 4)" class="rounded"><div class="v-stack gap-4 text-center"><p class="h4">Confidence Boost</p><div class="prose"><p>Wearing stylish, well-made shoes can boost your confidence and leave a lasting impression.Complements and enhances your overall outfit, serving as a key element of your personal style</p></div></div></div><div class="multi-column__item justify-center snap-start" style="--multi-column-item-column-count: span 3" ><img src="//thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=800" alt="Light green hoodie with star-shaped character designs on the hood and chest." srcset="//thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=300 300w, //thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=400 400w, //thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=500 500w, //thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=600 600w, //thekoda.online/cdn/shop/files/light-green-hoodie-star-shaped-character-designs-hood-chest.webp?v=1728036748&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) calc(73vw - 40px), (max-width: 999px) calc(38vw - 64px), calc(min(1600px, 100vw) / 4)" class="rounded"><div class="v-stack gap-4 text-center"><p class="h4">Durability and Longevity</p><div class="prose"><p>Built to last, our hoodies maintain their shape, color, and softness even after repeated washes. The high-quality construction ensures that these hoodies remain a long-lasting favorite in your wardrobe.</p></div></div></div><div class="multi-column__item justify-center snap-start" style="--multi-column-item-column-count: span 3" ><img src="//thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=800" alt="Gray turtleneck sweater with a pendant necklace on a mannequin torso." srcset="//thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=300 300w, //thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=400 400w, //thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=500 500w, //thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=600 600w, //thekoda.online/cdn/shop/files/gray-turtleneck-sweater-pendant-necklace-mannequin-torso.webp?v=1728036755&amp;width=800 800w" width="800" height="800" loading="lazy" sizes="(max-width: 699px) calc(73vw - 40px), (max-width: 999px) calc(38vw - 64px), calc(min(1600px, 100vw) / 4)" class="rounded"><div class="v-stack gap-4 text-center"><p class="h4">Style &amp; Sophistication</p><div class="prose"><p>Our male wear collection includes everything from sharp suits to casual wear, allowing men to express their style with confidence and ease.ensuring that they remain a staple in your wardrobe for years to come.</p></div></div></div></div>
  3554.    </div>
  3555.  </div></section>
  3556. <!-- BEGIN sections: footer-group -->
  3557. <div id="shopify-section-sections--23414551413028__vitals_faq_waEeC8" class="shopify-section shopify-section-group-footer-group"><!-- --VERSION-5-- -->
  3558.  
  3559. <section class="vtls-sections-faq-container-sections--23414551413028__vitals_faq_waEeC8">
  3560. <div class="vtls-sections-faq-container-inner">
  3561. <h2 class="vtls-sections-faq-heading" >Frequently Asked Questions</h2>
  3562. <div class="vtls-sections-faq-question-container  vtls-sections-faq-question-divider" >
  3563. <input style="display:none!important;" type="checkbox" id="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-2" class="vtls-sections-faq-question-toggle" >
  3564. <label for="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-2" class="vtls-sections-faq-question-summary">
  3565. What are your shipping options?
  3566. </label>
  3567. <div class="vtls-sections-faq-question-answer">
  3568. You can choose your preferred shipping option during the checkout process. We offer various shipping options to cater to your needs. For specific shipping requirements, kindly contact our customer support team.
  3569. </div>
  3570. </div>
  3571. <div class="vtls-sections-faq-question-container  vtls-sections-faq-question-divider" >
  3572. <input style="display:none!important;" type="checkbox" id="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-3" class="vtls-sections-faq-question-toggle" >
  3573. <label for="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-3" class="vtls-sections-faq-question-summary">
  3574. How can I pay for my order?
  3575. </label>
  3576. <div class="vtls-sections-faq-question-answer">
  3577. We accept various payment methods, including credit/debit cards, PayPal, and other secure online payment gateways. You can choose your preferred payment option during the checkout process.
  3578. </div>
  3579. </div>
  3580. <div class="vtls-sections-faq-question-container  vtls-sections-faq-question-divider" >
  3581. <input style="display:none!important;" type="checkbox" id="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-4" class="vtls-sections-faq-question-toggle" >
  3582. <label for="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-4" class="vtls-sections-faq-question-summary">
  3583. Can I return the products?
  3584. </label>
  3585. <div class="vtls-sections-faq-question-answer">
  3586. We offer a hassle-free return policy within 30 days from the date of delivery. If you are unsatisfied with your purchase, you can initiate a return or exchange following the guidelines outlined on our Returns page.
  3587. </div>
  3588. </div>
  3589. <div class="vtls-sections-faq-question-container  vtls-sections-faq-question-divider" >
  3590. <input style="display:none!important;" type="checkbox" id="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-5" class="vtls-sections-faq-question-toggle" >
  3591. <label for="vtls-sections-faq-question-toggle-sections--23414551413028__vitals_faq_waEeC8-5" class="vtls-sections-faq-question-summary">
  3592. How can I contact Customer support?
  3593. </label>
  3594. <div class="vtls-sections-faq-question-answer">
  3595. You can easily contact our customer support team by visiting our Contact page. Our dedicated customer support team is available to assist you with any questions or concerns.
  3596. </div>
  3597. </div>
  3598. </div>
  3599. </section>
  3600.  
  3601.  
  3602.  
  3603. <style data-shopify>
  3604. .vtls-sections-faq-container-sections--23414551413028__vitals_faq_waEeC8 {
  3605. --generalBackgroundColor: ;
  3606. --headingTextColor: #222222;
  3607. --headingTextSize: 24px;
  3608. --headingAlignment: center;
  3609. --questionTextColor: #222222;
  3610. --questionBackgroundColor: ;
  3611. --questionTextSize: 16px;
  3612. --questionSpacing: 12px;
  3613. --answerTextColor: #222222;
  3614. --answerBackgroundColor: ;
  3615. --answerTextSize: 16px;
  3616. }
  3617. .vtls-sections-faq-container-sections--23414551413028__vitals_faq_waEeC8 {
  3618. background-color: var(--generalBackgroundColor);
  3619. min-width: 100%;
  3620. }
  3621. .vtls-sections-faq-container-inner {
  3622. padding: 48px 30px;
  3623. max-width: 786px;
  3624. margin: 0 auto;
  3625. }
  3626. @media (max-width: 991px) {
  3627. .vtls-sections-faq-container-inner {
  3628. padding: 48px 24px;
  3629. }
  3630. }
  3631. @media (max-width: 479px) {
  3632. .vtls-sections-faq-container-inner {
  3633. padding: 48px 16px;
  3634. }
  3635. }
  3636. .vtls-sections-faq-heading {
  3637. text-align: var(--headingAlignment);
  3638. font-size: var(--headingTextSize);
  3639. color: var(--headingTextColor);
  3640. margin: 0 0 40px 0;
  3641. }
  3642. h2.vtls-sections-faq-heading:not(:first-of-type) {
  3643. margin-top: 48px;
  3644. }
  3645. .vtls-sections-faq-question-container + .vtls-sections-faq-question-container {
  3646. margin-top: var(--questionSpacing);
  3647. }
  3648. .vtls-sections-faq-question-divider {
  3649. border-bottom: 1px solid #d3d3d3;
  3650. }
  3651. .vtls-sections-faq-question-summary {
  3652. position: relative;
  3653. display: block;
  3654. padding: 16px 42px 16px 16px;
  3655. font-size: var(--questionTextSize);
  3656. border-radius: 4px;
  3657. line-height: 1.2;
  3658. color: var(--questionTextColor);
  3659. background-color: var(--questionBackgroundColor);
  3660. transition: color 0.1s ease;
  3661. }
  3662. .vtls-sections-faq-question-summary:hover {
  3663. opacity: 0.5;
  3664. }
  3665. .vtls-sections-faq-question-summary::after {
  3666. position: absolute;
  3667. top: 16px;
  3668. right: 16px;
  3669. width: 16px;
  3670. height: 20px;
  3671. content: '';
  3672. background-color: var(--questionTextColor);
  3673. mask-image: url("data:image/svg+xml; utf8, %3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.48482%201.95453V1.45453H7.48049V1.95453V7.45453H1.95668H1.45451V8.45453H1.95668H7.48049V13.9545V14.4545H8.48482V13.9545V8.45453H14.0086H14.5108V7.45453H14.0086H8.48482V1.95453Z%22%20fill%3D%22%23222222%22%2F%3E%3C%2Fsvg%3E");
  3674. mask-repeat: no-repeat;
  3675. mask-size: contain;
  3676. }
  3677. .vtls-sections-faq-question-answer {
  3678. height: 0;
  3679. opacity: 0;
  3680. overflow: hidden;
  3681. visibility: hidden;
  3682. padding: 0;
  3683. font-size: var(--answerTextSize);
  3684. border-radius: 0 0 4px 4px;
  3685. color: var(--answerTextColor);
  3686. background-color: var(--answerBackgroundColor);
  3687. transition: opacity .3s ease;
  3688. }
  3689. .vtls-sections-faq-question-answer *:first-child {
  3690. margin: 0;
  3691. }
  3692. .vtls-sections-faq-question-button-container {
  3693. display: flex;
  3694. padding-top: 12px;
  3695. }
  3696. .vtls-sections-faq-question-button-container a {
  3697. text-decoration: none;
  3698. }
  3699.  
  3700. .vtls-sections-faq-question-button-container a.small {
  3701. font-size: 12px;
  3702. line-height: 16.8px;
  3703. padding: 6px 8px;
  3704. }
  3705. .vtls-sections-faq-question-button-container a.medium {
  3706. font-size: 14px;
  3707. line-height: 19.6px;
  3708. padding: 6px 12px;
  3709. }
  3710. .vtls-sections-faq-question-button-container a.large {
  3711. font-size: 16px;
  3712. line-height: 22.4px;
  3713. padding: 8px 16px;
  3714. }
  3715.  
  3716. .vtls-sections-faq-question-toggle:checked ~ .vtls-sections-faq-question-answer {
  3717. height: auto;
  3718. opacity: 1;
  3719. overflow: unset;
  3720. visibility: visible;
  3721. padding: 16px 16px 20px 16px;
  3722. }
  3723. .vtls-sections-faq-question-toggle:checked ~ .vtls-sections-faq-question-summary {
  3724. border-radius: 4px 4px 0px 0px;
  3725. }
  3726. .vtls-sections-faq-question-toggle:checked ~ .vtls-sections-faq-question-summary::after {
  3727. mask-image: url("data:image/svg+xml; utf8, %3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.5108%208.51514H14.0086H1.95668H1.45451V7.51514H1.95668H14.0086H14.5108V8.51514Z%22%20fill%3D%22%23222222%22%2F%3E%3C%2Fsvg%3E");
  3728. }
  3729.  
  3730. .vtls-uninstall-bg {
  3731. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABOcAAABkCAYAAADNCVTUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAqeSURBVHgB7d1dauNKGATQau1j1hrdtWYhcx2YQGaIY/10qyX1qYcYE0Md+3srDC6pkPf39/nx8Pbk3/OvX7/+y0FhYWFhYWEJCwsLCwsLCwsLCwvLRSwlHctbhYWFhYWFJSwsLCwsLCwsLCwsLBewVBvntpS3DAsLCwsLS1hYWFhYWFhYWFhYWE5uqTrOrS1vHRYWFhYWlrCwsLCwsLCwsLCwsJzYUn2cW1N+RFhYWFhYWMLCwsLCwsLCwsLCwnJSS5Nxbml5DgoLCwsLC0tYWFhYWFhYWFhYWFhOaGk2zi0pdxQWFhYWFhYWFhYWFhYWFhYWlpEtTce5V+VxFBYWFhYWFhYWFhYWFhYWFhaWgS3Nx7mfyv/EUVhYWFhYWFhYWFhYWFhmFhYWlhEth4xzz8q/xFFYWFhYWFhYWFhYWFhYZhYWFpbRLIeNc9+V/xNHYWFhYWFhYWFhYWFhYZlZWFhYRrJMjydvOSiPNzk/Hp690ZmFhYWFhYWFhYWFhYWFhYWFhWUkS3kU/46lkoWFhYWFhYWFhYWFhYWFhYWF5XDL5zjXpTyOwsLCwsLCwsLCwsLCwsLCwsIysGX6WuyrhCwsLCwsLCwsLCwsLCwsLCwsLMdZpnQsdxQWFhYWlrCwsLCwsLCwsLCwsAxsmdKx/COOwsLCwsISFhYWFhYWFhYWFhaWQS1TOpZ/xlFYWFhYWMLCwsLCwsLCwsLCwjKgZYoPgoWFhYWFhYWFhYWFhYWFhYWFpYulfPx592sZLCwsLCwsLCwsLCwsLCwsLCws89GW0rP8WVhYWFhYWMLCwsLCwsLCwsLCwjKApfQs/yksLCwsLCxhYWFhYWFhYWFhYWG5uaX0LH8VFhYWFhaWsLCwsLCwsLCwsLCw3NhS0rF8SVhYWFhYWMLCwsLCwsLCwsLCwnJTS0nH8qVhYWFhYWEJCwsLCwsLCwsLCwvLDS0lHcvXhIWFhYWFJSwsLCwsLCwsLCwsLDezlFcvcBSWNWFhYWFhYQkLCwsLCwsLCwsLy+K8HOdalm8JCwsLCwtLWFhYWFhYWFhYWFhYbmJZNM61Kt8aFhYWFhaWsLCwsLCwsLCwsLCw3MCyeJxrUb4nLCwsLCwsYWFhYWFhYWFhYWFhubhl1ThXu3xvWFhYWFhYwsLCwsLCwsLCwsLCcmHL6nGuZnmNsLCwsLCwhIWFhYWFhYWFhYWF5aKWTeNcrfJaYWFhYWFhCQsLCwsLCwsLCwsLywUtm8e5GuU1w8LCwsLCEhYWFhYWFhYWFhYWlotZdo1ze8trh4WFhYWFJSwsLCwsLCwsLCwsLBey7B7n9pS3CAsLCwsLS1hYWFhYWFhYWFhYWC5iqTLObS1vFRYWFhYWlrCwsLCwsLCwsLCwsFzAUm2c21LeMiwsLCwsLGFhYWFhYWFhYWFhYTm5peo4t7a8dVhYWFhYWMLCwsLCwsLCwsLCwnJiS/Vxbk35EWFhYWFhYQkLCwsLCwsLCwsLC8tJLU3GuaXlOSgsLCwsLCxhYWFhYWFhYWFhYWE5oaXZOLek3FFYWFhYWFhYWFhYWFhYWFhYWEa2NB3nXpXHUVhYWFhYWFhYWFhYWFhYWFhYBrY0H+d+Kv8TR2FhYWFhYWFhYWFhYWGZWVhYWEa0HDLOPSv/EkdhYWFhYWFhYWFhYWFhmVlYWFhGsxw2zn1X/k8chYWFhYWFhYWFhYWFhWVmYWFhGckyPZ685aA83uT8eHj2RmcWFhYWFhYWFhYWFhYWFhYWFpaRLOVR/DuWShYWFhYWFhYWFhYWFhYWFhYWlsMtn+Ncl/I4CgsLCwsLCwsLCwsLCwsLCwvLwJbpa7GvErKwsLCwsLCwsLCwsLCwsLCwsBxnmdKx3FFYWFhYWMLCwsLCwsLCwsLCwjKwZUrH8o84CgsLCwtLWFhYWFhYWFhYWFhYBrVM6Vj+GUdhYWFpFRYWFhYWlrCwsLCwsLCwnNgyxQfBwsLCwsLCwsLCwsLCwsLCwsLSxVI+/rz7tQwWFhYWFhYWFhYWFhYWFhYWFpb5aEvpWf4sLCwsLCwsYWFhYWFhYWFhYWFhGcBSepb/FBYWFhYWlrCwsLCwsLCwsLCwsNzcUnqWvwoLCwsLC0tYWFhYWFhYWFhYWFhubCnpWL4kLCwsLCwsYWFhYWFhYWFhYWFhuamlpGP50rCwsLCwsISFhYWFhYWFhYWFheWGlpKO5WvCwsLCwsISFhYWFhYWFhYWFhaWm1nKqxc4CgsLCwtLWFhYWFhYWFhYWFhYWOYWlpfjXMvyLWFhYWFhYQkLCwsLCwsLCwsLC8tNLIvGuVblW8PCwsLCwhIWFhYWFhYWFhYWFpYbWBaPcy3K94SFhYWFhSUsLCwsLCwsLCwsLCwXt6wa52qX7w0LCwsLC0tYWFhYWFhYWFhYWFgubFk9ztUsrxEWFhYWFpawsLCwsLCwsLCwsLBc1LJpnKtVXissLCwsLCxhYWFhYWFhYWFhYWG5oGXzOFejvGZYWFhYWFjCwsLCwsLCwsLCwsJyMcuucW5vee2wsLCwsLCEhYWFhYWFhYWFhYXlQpbd49ye8hZhYWFhYWEJCwsLCwsLCwsLCwvLRSxVxrmt5a3CwsLCwsISFhYWFhYWFhYWFhaWC1iqjXNbyluGhYWFhYUlLCwsLCwsLCwsLCwsJ7dUHefWlrcOCwsLCwtLWFhYWFhYWFhYWFhYTmypPs6tKT8iLCwsLCwsYWFhYWFhYWFhYWFhOamlyTi3tDwHhYWFhYWFJSwsLCwsLCwsLCwsLCe0NBvnlpQ7CgsLCwsLCwsLCwsLCwsLCwvLyJam49yr8jgKCwsLCwsLCwsLCwsLCwsLC8vAlubj3E/lf+IoLCwsLCyHhIWFhYWFJSwsLCwsLCezHDLOPSv/EkdhYWFhYWFhYWFhYWFhmVlYWFhGsxw2zn1X/k8chYWFhYWFhYWFhYWFhWVmYWFhGckyPZ685aA83uT8eHj2RmcWFhYWFhYWFhYWFhYWFhYWFpaRLOVR/DuWShYWFhYWFhYWFhYWFhYWFhYWlsMtn+Ncl/I4CgsLCwsLCwsLCwsLCwsLCwvLwJbpa7GvErKwsLCwsLCwsLCwsLCwsLCwsBxnmdKx3FFYWFhYWMLCwsLCwsLCwsLCwjKwZUrH8o84CgsLCwtLWFhYWFhYWFhYWFhYBrVM6Vj+GUdhYWFhYQkLCwsLCwsLCwsLC8uAlik+CBYWFhYWFhYWFhYWFhYWFhYWli6W8vHn3a9lsLCwsLCwsLCwsLCwsLCwsLCwzEdbSs/yZ2FhYWFhYQkLCwsLCwsLCwsLC8sAltKz/KewsLCwsLCE5a+wsLCwsLCEhYWFheV2ltKz/FVYWFhYWFjCwsLCwsLCwsLCwsJyY0tJx/IlYWFhYWFhCQsLCwsLCwsLCwsLy00tJR3Ll4aFhYWFhSUsLCwsLCwsLCwsLCw3tJR0LF8TFhYWFhaWsLCwsLCwsLCwsLCw3MxSXr3AUVhYWFhYwsLCwsLCwsLCwsLCwjK3sLwc51qWbwkLCwsLC0tYWFhYWFhYWFhYWFhuYlk0zrUq3xoWFhYWFpawsLCwsLCwsLCwsLDcwLJ4nGtRvicsLCwsLCxhYWFhYWFhYWFhYWG5uOV/yNgzN4WPcBYAAAAASUVORK5CYII=');
  3732. background-position: center;
  3733. background-size: cover;
  3734. text-align: center;
  3735. padding: 32px;
  3736. margin:0;
  3737.  
  3738. div {
  3739. color: #5E4200;
  3740. font-family: Inter, sans-serif;
  3741. font-size: 14px;
  3742. font-weight: 450;
  3743. line-height: 20px;
  3744. padding: 16px 16px 16px 42px;
  3745. background-color: #ffffff;
  3746. display: inline-block;
  3747.  
  3748. &:before {
  3749. content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj4KCQkJPHBhdGggZD0iTTkuOTk5OTQgNi43NUMxMC40MTQyIDYuNzUgMTAuNzQ5OSA3LjA4NTc5IDEwLjc0OTkgNy41VjExQzEwLjc0OTkgMTEuNDE0MiAxMC40MTQyIDExLjc1IDkuOTk5OTQgMTEuNzVDOS41ODU3MyAxMS43NSA5LjI0OTk0IDExLjQxNDIgOS4yNDk5NCAxMVY3LjVDOS4yNDk5NCA3LjA4NTc5IDkuNTg1NzMgNi43NSA5Ljk5OTk0IDYuNzVaIiBmaWxsPSIjQjI4NDAwIi8+CgkJCTxwYXRoIGQ9Ik0xMSAxMy41QzExIDE0LjA1MjMgMTAuNTUyMyAxNC41IDEwIDE0LjVDOS40NDc3MiAxNC41IDkgMTQuMDUyMyA5IDEzLjVDOSAxMi45NDc3IDkuNDQ3NzIgMTIuNSAxMCAxMi41QzEwLjU1MjMgMTIuNSAxMSAxMi45NDc3IDExIDEzLjVaIiBmaWxsPSIjQjI4NDAwIi8+CgkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTAgMy41QzguOTU0NzEgMy41IDguMjE2MTYgNC4yMDIzMiA3Ljg0NzYyIDQuOTQ2NzJDNy42NTU2NSA1LjMzNDQ4IDYuNzU5ODQgNy4wNDQxIDUuODQzMDUgOC43OTM1M0w1LjgxNTMxIDguODQ2NDZDNC45MjI5IDEwLjU0OTMgNC4wMTcxNCAxMi4yNzc3IDMuODA3MTYgMTIuNzAyQzMuNDM1MSAxMy40NTM3IDMuMzI5MzEgMTQuNDUxOSAzLjg5OTUzIDE1LjMxNkM0LjQ2OTExIDE2LjE3OTEgNS40NDIyMiAxNi41IDYuMzYzNTYgMTYuNUwxMy42MzY0IDE2LjVDMTQuNTU3NyAxNi41IDE1LjUzMDggMTYuMTc5MSAxNi4xMDA0IDE1LjMxNkMxNi42NzA3IDE0LjQ1MTkgMTYuNTY0OSAxMy40NTM3IDE2LjE5MjggMTIuNzAyQzE1Ljk4MzIgMTIuMjc4NCAxNS4wOCAxMC41NTUgMTQuMTg4OSA4Ljg1NDc2TDE0LjE1NjkgOC43OTM1MkMxMy4yNCA3LjA0NCAxMi4zNDQzIDUuMzM0NTQgMTIuMTUyNCA0Ljk0NjkzQzExLjc4NCA0LjIwMjQyIDExLjA0NTQgMy41IDEwIDMuNVpNOS4xOTE5IDUuNjEyMjVDOS41OTYwNSA0Ljc5NTkyIDEwLjQwNDEgNC43OTU5MiAxMC44MDgxIDUuNjEyMjVDMTEuMDEwMiA2LjAyMDYxIDExLjkyMDEgNy43NTY4NiAxMi44Mjk2IDkuNDkyNDNDMTMuNzM4MyAxMS4yMjYyIDE0LjY0NjYgMTIuOTU5NCAxNC44NDg1IDEzLjM2NzNDMTUuMjUyNSAxNC4xODM3IDE0Ljg0ODUgMTUgMTMuNjM2NCAxNUw2LjM2MzU2IDE1QzUuMTUxNSAxNSA0Ljc0NzQ2IDE0LjE4MzcgNS4xNTE1IDEzLjM2NzNDNS4zNTM3NiAxMi45NTg3IDYuMjY0NjggMTEuMjIwNSA3LjE3NDggOS40ODM4QzguMDgyODMgNy43NTExMSA4Ljk5MDA1IDYuMDE5OTQgOS4xOTE5IDUuNjEyMjVaIiBmaWxsPSIjQjI4NDAwIi8+CgkJPC9zdmc+");
  3750. position: absolute;
  3751. width: 20px;
  3752. height: 20px;
  3753. margin-left: -24px;
  3754. }
  3755.  
  3756. a {
  3757. color: #5E4200;
  3758.  
  3759. &:hover {
  3760. text-decoration: none;
  3761. }
  3762. }
  3763. }
  3764. }
  3765. </style>
  3766.  
  3767. <script>
  3768. if (document.getElementById('vtlsAebData') === null) {
  3769. const mainContainer = document.querySelector('.vtls-sections-faq-container-sections--23414551413028__vitals_faq_waEeC8');
  3770.  
  3771. if ('false' === 'true') {
  3772. mainContainer.innerHTML = `<h2 class="vtls-uninstall-bg">
  3773. <div>
  3774. Displaying this section requires an active Vitals subscription. Reinstall the <a href="https://apps.shopify.com/vitals" target="_blank">Vitals app</a> to activate it or consider removing the section.
  3775. </div>
  3776. </h2>`;
  3777. } else {
  3778. mainContainer.style.display = 'none';
  3779. }
  3780. }
  3781. </script></div><section id="shopify-section-sections--23414551413028__172800044008b31d7b" class="shopify-section shopify-section-group-footer-group shopify-section--apps"><style>
  3782.  #shopify-section-sections--23414551413028__172800044008b31d7b {
  3783.    --section-background-hash: 0;
  3784.  }
  3785.  
  3786.  #shopify-section-sections--23414551413028__172800044008b31d7b + * {
  3787.    --previous-section-background-hash: 0;
  3788.  }</style><style>
  3789.    #shopify-section-sections--23414551413028__172800044008b31d7b {
  3790.      
  3791.      
  3792.    }
  3793.  </style>
  3794.  
  3795.  <div class="section   section-blends section-full"><div id="shopify-block-klaviyo_email_marketing_sms_form_embed_block_tEzKLY" class="shopify-block shopify-app-block">
  3796.  <div class="klaviyo-form-"></div>
  3797.  
  3798.  
  3799.  
  3800.  
  3801. </div><div id="shopify-block-klaviyo_email_marketing_sms_form_embed_block_j84zN4" class="shopify-block shopify-app-block">
  3802.  <div class="klaviyo-form-"></div>
  3803.  
  3804.  
  3805.  
  3806.  
  3807. </div></div>
  3808. </section><section id="shopify-section-sections--23414551413028__custom_html_Gt3XAd" class="shopify-section shopify-section-group-footer-group shopify-section--custom-html"><style>
  3809.    #shopify-section-sections--23414551413028__custom_html_Gt3XAd {
  3810.      --section-spacing-block: 0px;
  3811.      --section-spacing-inline: 0px;
  3812.    }
  3813.  </style><style>
  3814.  #shopify-section-sections--23414551413028__custom_html_Gt3XAd {
  3815.    --section-background-hash: 0;
  3816.  }
  3817.  
  3818.  #shopify-section-sections--23414551413028__custom_html_Gt3XAd + * {
  3819.    --previous-section-background-hash: 0;
  3820.  }</style><div class="section   section-blends section-full">
  3821.    <div class="klaviyo-form-R5RCaw"></div>
  3822.  </div>
  3823. </section><footer id="shopify-section-sections--23414551413028__footer" class="shopify-section shopify-section-group-footer-group shopify-section--footer"><style>
  3824.  @media screen and (min-width: 1000px) {
  3825.    #shopify-section-sections--23414551413028__footer {--footer-block-list-justify-content: space-between;
  3826.    }
  3827.  }
  3828. </style><div class="footer">
  3829.  <div class="container">
  3830.    <div class="footer__wrapper"><div class="footer__block-list empty:hidden"><div class="footer__block footer__block--text" ><p class="bold">About Us</p><div class="prose text-subdued"><p>At TheKodaOnline, we are passionate about bringing you products that enhance your life in meaningful ways. Our commitment to quality, innovation, and customer satisfaction sets us apart from the rest. When you shop with us, you’re not just buying a product; you’re investing in a lifestyle.</p></div><div class="follow-on-shop"><script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js"></script>
  3831. <script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js"></script>
  3832. <script type="module">
  3833.  await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js");
  3834. await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js");
  3835.  
  3836.  
  3837. </script>
  3838.  
  3839. <shop-follow-button proxy="true"></shop-follow-button>
  3840. </div></div><div class="footer__block footer__block--menu" ><p class="bold">Our Policies</p><ul class="v-stack gap-3" role="list"><li>
  3841.                          <a href="/policies/shipping-policy" class="inline-block link-faded break-all">Shipping Policy</a>
  3842.                        </li><li>
  3843.                          <a href="/policies/refund-policy" class="inline-block link-faded break-all">Refund Policy</a>
  3844.                        </li><li>
  3845.                          <a href="/policies/privacy-policy" class="inline-block link-faded break-all">Privacy Policy</a>
  3846.                        </li><li>
  3847.                          <a href="/policies/terms-of-service" class="inline-block link-faded break-all">Terms of Service</a>
  3848.                        </li></ul>
  3849.                  </div><div class="footer__block footer__block--menu" ><p class="bold">Contact Us</p><ul class="v-stack gap-3" role="list"><li>
  3850.                          <a href="/" class="inline-block link-faded break-all">Home page</a>
  3851.                        </li><li>
  3852.                          <a href="/pages/about" class="inline-block link-faded break-all">ABOUT US</a>
  3853.                        </li><li>
  3854.                          <a href="/pages/koda-online-cookie-policy-contact-information" class="inline-block link-faded break-all">Contact Us</a>
  3855.                        </li><li>
  3856.                          <a href="/search" class="inline-block link-faded break-all">Search</a>
  3857.                        </li></ul>
  3858.                  </div><div class="footer__block footer__block--text" ><p class="bold">Business information</p><div class="prose text-subdued"><p><strong>Address:</strong> 4004 N 30th St, A, Tampa FL 33610, United States</p><p><strong>Phone:</strong> +1 8137107540</p><p><strong>Email: </strong>thekoda.online@thekoda.online</p><p><strong>Business Hours: </strong>9.00 AM - 5.00 PM ( Mon - Fri)</p></div><div class="follow-on-shop"><script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js"></script>
  3859. <script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js"></script>
  3860. <script type="module">
  3861.  await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js");
  3862. await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js");
  3863.  
  3864.  
  3865. </script>
  3866.  
  3867. <shop-follow-button proxy="true"></shop-follow-button>
  3868. </div></div><div class="footer__block footer__block--text" ><p class="bold">About our store</p><div class="prose text-subdued"><p>Use this text area to tell your customers about your brand and vision. You can change it in the theme editor.</p></div><div class="follow-on-shop"><script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js"></script>
  3869. <script defer="defer" async type="module" src="//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js"></script>
  3870. <script type="module">
  3871.  await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/client.shop-follow-button_D-XbuRAL.en.esm.js");
  3872. await import("//thekoda.online/cdn/shopifycloud/shop-js/modules/v2/chunk.common_BQ6KP1iq.esm.js");
  3873.  
  3874.  
  3875. </script>
  3876.  
  3877. <shop-follow-button proxy="true"></shop-follow-button>
  3878. </div></div></div><div class="footer__aside empty:hidden"><div class="footer__aside-top"><ul class="social-media " role="list"><li>
  3879.      <a href="https://www.facebook.com/share/QnT38cfqSW3SJJrT/?mibextid=qi2Omg" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Facebook"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-facebook" viewBox="0 0 24 24">
  3880.        <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
  3881.      </svg></a>
  3882.    </li><li>
  3883.      <a href="https://www.instagram.com/kodalife2021_?igsh=b3piMWw4c3ZjNml0" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Instagram"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-instagram" viewBox="0 0 24 24">
  3884.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
  3885.      </svg></a>
  3886.    </li><li>
  3887.      <a href="https://www.tiktok.com/@kodafashion24?_t=8pNdwWOffLi&_r=1" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on TikTok"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-tiktok" viewBox="0 0 24 24">
  3888.        <path d="M20.027 10.168a5.125 5.125 0 0 1-4.76-2.294v7.893a5.833 5.833 0 1 1-5.834-5.834c.122 0 .241.011.361.019v2.874c-.12-.014-.237-.036-.36-.036a2.977 2.977 0 0 0 0 5.954c1.644 0 3.096-1.295 3.096-2.94L12.56 2.4h2.75a5.122 5.122 0 0 0 4.72 4.573v3.195" fill="currentColor"/>
  3889.      </svg></a>
  3890.    </li></ul><div class="h-stack gap-6"><link rel="stylesheet" href="//thekoda.online/cdn/shop/t/6/assets/country-flags.css?v=173817741279906525751727974600" media="print" onload="this.media='all'; this.onload = null"><div class="relative">
  3891.      <button type="button" class="text-with-icon gap-2.5 group" aria-controls="popover-localization-form-country--sections--23414551413028__footer" aria-expanded="false">
  3892.        <div class="h-stack gap-2"><span class="country-flags country-flags--US"></span><span class="bold text-sm">United States (USD $)</span>
  3893.        </div><svg role="presentation" focusable="false" width="10" height="7" class="icon icon-chevron-bottom" viewBox="0 0 10 7">
  3894.        <path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  3895.      </svg></button>
  3896.  
  3897.      <x-popover id="popover-localization-form-country--sections--23414551413028__footer" initial-focus="[aria-selected='true']" anchor-horizontal="end" anchor-vertical="start" class="popover">
  3898.        <p class="h5" slot="title">Country</p><form method="post" action="/localization" id="localization-form-country--sections--23414551413028__footer" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><x-listbox class="popover-listbox popover-listbox--sm" role="listbox"><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AT" >
  3899.                <span class="country-flags country-flags--AT"></span>
  3900.                <span>Austria (EUR €)</span>
  3901.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="BE" >
  3902.                <span class="country-flags country-flags--BE"></span>
  3903.                <span>Belgium (EUR €)</span>
  3904.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="CZ" >
  3905.                <span class="country-flags country-flags--CZ"></span>
  3906.                <span>Czechia (CZK Kč)</span>
  3907.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="FI" >
  3908.                <span class="country-flags country-flags--FI"></span>
  3909.                <span>Finland (EUR €)</span>
  3910.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="DE" >
  3911.                <span class="country-flags country-flags--DE"></span>
  3912.                <span>Germany (EUR €)</span>
  3913.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="HK" >
  3914.                <span class="country-flags country-flags--HK"></span>
  3915.                <span>Hong Kong SAR (HKD $)</span>
  3916.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IE" >
  3917.                <span class="country-flags country-flags--IE"></span>
  3918.                <span>Ireland (EUR €)</span>
  3919.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IL" >
  3920.                <span class="country-flags country-flags--IL"></span>
  3921.                <span>Israel (ILS ₪)</span>
  3922.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="IT" >
  3923.                <span class="country-flags country-flags--IT"></span>
  3924.                <span>Italy (EUR €)</span>
  3925.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="JP" >
  3926.                <span class="country-flags country-flags--JP"></span>
  3927.                <span>Japan (JPY ¥)</span>
  3928.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="MY" >
  3929.                <span class="country-flags country-flags--MY"></span>
  3930.                <span>Malaysia (MYR RM)</span>
  3931.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="PT" >
  3932.                <span class="country-flags country-flags--PT"></span>
  3933.                <span>Portugal (EUR €)</span>
  3934.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SG" >
  3935.                <span class="country-flags country-flags--SG"></span>
  3936.                <span>Singapore (SGD $)</span>
  3937.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="KR" >
  3938.                <span class="country-flags country-flags--KR"></span>
  3939.                <span>South Korea (KRW ₩)</span>
  3940.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="ES" >
  3941.                <span class="country-flags country-flags--ES"></span>
  3942.                <span>Spain (EUR €)</span>
  3943.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="SE" >
  3944.                <span class="country-flags country-flags--SE"></span>
  3945.                <span>Sweden (SEK kr)</span>
  3946.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="AE" >
  3947.                <span class="country-flags country-flags--AE"></span>
  3948.                <span>United Arab Emirates (AED د.إ)</span>
  3949.              </button><button type="submit" class="popover-listbox__option" name="country_code" role="option" value="US" aria-selected="true">
  3950.                <span class="country-flags country-flags--US"></span>
  3951.                <span>United States (USD $)</span>
  3952.              </button></x-listbox></form></x-popover>
  3953.    </div></div></div><div class="footer__aside-bottom"><div class="footer__payment-icons h-stack wrap gap-2"><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-amazon"><title id="pi-amazon">Amazon</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" fill-rule="nonzero" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF" fill-rule="nonzero"/><path d="M25.26 16.23c-1.697 1.48-4.157 2.27-6.275 2.27-2.97 0-5.644-1.3-7.666-3.463-.16-.17-.018-.402.173-.27 2.183 1.504 4.882 2.408 7.67 2.408 1.88 0 3.95-.46 5.85-1.416.288-.145.53.222.248.47v.001zm.706-.957c-.216-.328-1.434-.155-1.98-.078-.167.024-.193-.148-.043-.27.97-.81 2.562-.576 2.748-.305.187.272-.047 2.16-.96 3.063-.14.138-.272.064-.21-.12.205-.604.664-1.96.446-2.29h-.001z" fill="#F90" fill-rule="nonzero"/><path d="M21.814 15.291c-.574-.498-.676-.73-.993-1.205-.947 1.012-1.618 1.315-2.85 1.315-1.453 0-2.587-.938-2.587-2.818 0-1.467.762-2.467 1.844-2.955.94-.433 2.25-.51 3.25-.628v-.235c0-.43.033-.94-.208-1.31-.212-.333-.616-.47-.97-.47-.66 0-1.25.353-1.392 1.085-.03.163-.144.323-.3.33l-1.677-.187c-.14-.033-.296-.153-.257-.38.386-2.125 2.223-2.766 3.867-2.766.84 0 1.94.234 2.604.9.842.82.762 1.918.762 3.11v2.818c0 .847.335 1.22.65 1.676.113.164.138.36-.003.482-.353.308-.98.88-1.326 1.2a.367.367 0 0 1-.414.038zm-1.659-2.533c.34-.626.323-1.214.323-1.918v-.392c-1.25 0-2.57.28-2.57 1.82 0 .782.386 1.31 1.05 1.31.487 0 .922-.312 1.197-.82z" fill="#221F1F"/></svg>
  3954. <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
  3955. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
  3956. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg><svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg><svg width="38" height="24" role="img" aria-labelledby="pi-metapay" viewBox="0 0 38 24" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-metapay">Meta Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M4.983 12.986c0 .348.076.614.176.776a.6.6 0 00.524.3c.257 0 .491-.063.943-.688.362-.5.788-1.204 1.076-1.645l.486-.747c.337-.518.728-1.095 1.176-1.486.366-.319.76-.496 1.158-.496.667 0 1.302.386 1.788 1.111.532.794.79 1.793.79 2.825 0 .613-.12 1.064-.326 1.42-.2.345-.587.688-1.238.688v-.981c.558 0 .697-.513.697-1.1 0-.836-.195-1.764-.624-2.427-.305-.47-.7-.757-1.134-.757-.47 0-.848.354-1.274.986-.226.336-.457.745-.718 1.207l-.287.508c-.576 1.02-.722 1.254-1.01 1.637-.504.672-.935.927-1.502.927-.674 0-1.1-.291-1.363-.73C4.106 13.956 4 13.486 4 12.95l.983.035z" fill="#0081FB"/><path d="M4.775 10.18C5.225 9.486 5.875 9 6.622 9c.432 0 .861.128 1.31.494.49.4 1.013 1.06 1.665 2.146l.234.39c.565.94.886 1.424 1.074 1.652.242.293.411.38.631.38.558 0 .697-.512.697-1.099l.867-.027c0 .613-.12 1.064-.326 1.42-.2.345-.587.688-1.238.688-.405 0-.764-.088-1.16-.462-.306-.287-.663-.798-.937-1.257l-.816-1.363c-.41-.684-.785-1.194-1.003-1.425-.234-.249-.534-.549-1.014-.549-.388 0-.718.273-.994.69l-.837-.498z" fill="url(#pi-paint0_linear_1164_3)"/><path d="M6.606 9.988c-.388 0-.718.273-.994.69-.39.588-.629 1.466-.629 2.308 0 .348.076.614.176.776l-.838.552C4.106 13.956 4 13.486 4 12.95c0-.973.267-1.987.775-2.77C5.225 9.485 5.875 9 6.622 9l-.016.988z" fill="url(#pi-paint1_linear_1164_3)"/><path d="M15.01 9.191h1.138l1.933 3.498 1.934-3.498h1.112v5.747h-.928v-4.405l-1.695 3.05h-.87l-1.696-3.05v4.405h-.927V9.191zm9.023 2.143c-.665 0-1.066.5-1.162 1.12h2.258c-.046-.638-.415-1.12-1.096-1.12zm-2.081 1.474c0-1.305.843-2.254 2.097-2.254 1.234 0 1.971.937 1.971 2.323v.255h-3.148c.111.674.559 1.129 1.28 1.129.576 0 .936-.176 1.277-.497l.493.603c-.465.427-1.055.674-1.803.674-1.358 0-2.167-.99-2.167-2.233zm5.193-1.392h-.854v-.76h.854V9.402h.895v1.256h1.297v.76H28.04v1.924c0 .657.21.89.726.89.236 0 .371-.02.57-.053v.752c-.248.07-.485.102-.742.102-.966 0-1.45-.528-1.45-1.584v-2.032zm5.96.739a1.207 1.207 0 00-1.17-.788c-.766 0-1.256.543-1.256 1.428 0 .863.451 1.433 1.22 1.433.603 0 1.034-.351 1.206-.788v-1.285zM34 14.938h-.878v-.6c-.246.353-.693.703-1.417.703-1.164 0-1.941-.975-1.941-2.246 0-1.283.796-2.241 1.99-2.241.591 0 1.055.236 1.368.653v-.55H34v4.281z" fill="#000000"/><defs><linearGradient id="pi-paint0_linear_1164_3" x1="5.93" y1="12.703" x2="12.196" y2="13.019" gradientUnits="userSpaceOnUse"><stop stop-color="#0064E1"/><stop offset=".4" stop-color="#0064E1"/><stop offset=".83" stop-color="#0073EE"/><stop offset="1" stop-color="#0082FB"/></linearGradient><linearGradient id="pi-paint1_linear_1164_3" x1="5.424" y1="13.399" x2="5.424" y2="11.089" gradientUnits="userSpaceOnUse"><stop stop-color="#0082FB"/><stop offset="1" stop-color="#0064E0"/></linearGradient></defs></svg>
  3957. <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
  3958. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg><svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
  3959. <svg viewBox="0 0 38 24" width="38" height="24" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-venmo"><title id="pi-venmo">Venmo</title><g fill="none" fill-rule="evenodd"><rect fill-opacity=".07" fill="#000" width="38" height="24" rx="3"/><path fill="#3D95CE" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M24.675 8.36c0 3.064-2.557 7.045-4.633 9.84h-4.74L13.4 6.57l4.151-.402 1.005 8.275c.94-1.566 2.099-4.025 2.099-5.702 0-.918-.154-1.543-.394-2.058l3.78-.783c.437.738.634 1.499.634 2.46z" fill="#FFF" fill-rule="nonzero"/></g></svg>
  3960. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg></div><p class="footer__copyright text-sm text-subdued">© 2024, thekodaonline. </p>
  3961.        </div>
  3962.      </div>
  3963.    </div>
  3964.  </div>
  3965. </div>
  3966.  
  3967. </footer>
  3968. <!-- END sections: footer-group --></main>
  3969.  
  3970.    
  3971.    <h3 style="display: none">thekodaonline</h3>
  3972.    
  3973.  
  3974.  
  3975.  
  3976. <div id="shopify-block-15683396631634586217" class="shopify-block shopify-app-block"><script
  3977.  id="chat-button-container"
  3978.  data-horizontal-position=bottom_right
  3979.  data-vertical-position=lowest
  3980.  data-icon=chat_bubble
  3981.  data-text=chat_with_us
  3982.  data-color=#000000
  3983.  data-secondary-color=#FFFFFF
  3984.  data-ternary-color=#6A6A6A
  3985.  
  3986.  data-domain=thekoda.online
  3987.  data-external-identifier=
  3988. >
  3989. </script>
  3990.  
  3991.  
  3992. </div><div id="shopify-block-5151619994548219592" class="shopify-block shopify-app-block"><style>
  3993.    :root {
  3994.      --ma-font-size-100: 14px;
  3995.      --ma-font-size-200: 16px;
  3996.      --ma-font-size-300: 20px;
  3997.      --ma-font-size-400: 24px;
  3998.      --ma-border-radius-1: 4px;
  3999.      --ma-button-padding-x: 16px;
  4000.      --ma-button-padding-y: 7px;
  4001.      --ma-color-text: #1f2124;
  4002.      --ma-color-bg: #ffffff;
  4003.      --ma-color-bg-subdued: #f9fafb;
  4004.      --ma-color-bg-input: #ffffff;
  4005.      --ma-color-border-strong: #aeb4b9;
  4006.      --ma-color-bg-primary: #007a5c;
  4007.      --ma-color-bg-primary-hover: #125443;
  4008.      --ma-color-border-primary: #007a5c;
  4009.      --ma-color-text-on-color: #ffffff;
  4010.      --ma-color-text-interactive: #2463bc;
  4011.      --ma-color-text-interactive-hover: #144995;
  4012.      --ma-color-text-subdued: #6d7175;
  4013.      --ma-color-border-critical: #c5280c;
  4014.      --ma-color-bg-critical-subdued: #fde2dd;
  4015.      --ma-color-text-critical: #d72c0d;
  4016.      --ma-color-bg-hover: #f1f2f4;
  4017.      --ma-color-border-critical-subdued: #f56b52;
  4018.      --ma-color-icon-critical: #d72c0d;
  4019.      --ma-color-border-info-subdued: #6dd3de;
  4020.      --ma-color-bg-info-subdued: #def5f7;
  4021.      --ma-color-bg-info-subdued-hover: #eefafb;
  4022.      --ma-color-icon-info: #2aacbb;
  4023.      --ma-color-border-success-subdued: #50dca9;
  4024.      --ma-color-bg-success-subdued: #e0f8ee;
  4025.      --ma-color-bg-success-subdued-hover: #f0fdf8;
  4026.      --ma-color-icon-success: #16a679;
  4027.      --ma-color-border-caution-subdued: #f5c452;
  4028.      --ma-color-bg-caution-subdued: #fcf0d4;
  4029.      --ma-color-bg-caution-subdued-hover: #fef8ec;
  4030.      --ma-color-icon-caution: #b77e0b;
  4031.  }
  4032.  
  4033.    
  4034.    
  4035.    .ma-make-an-offer,
  4036.    .ma-make-an-offer span,
  4037.    .ma-make-an-offer label,
  4038.    .ma-make-an-offer input,
  4039.    .ma-make-an-offer textarea,
  4040.    .ma-make-an-offer a {
  4041.      font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  4042.      font-style: normal;
  4043.      font-weight: 400;
  4044.      letter-spacing: normal;
  4045.    }
  4046.    .ma-make-an-offer #ma-make-an-offer-open-button {
  4047.      
  4048.        width: auto;
  4049.      
  4050.    }
  4051. </style>
  4052.  
  4053. <magical-make-an-offer data-id="5151619994548219592"><script type="application/json">
  4054.    {
  4055.      "app_id": "779883",
  4056.      "shop": "https://thekoda.online",
  4057.      "cart_url": "/cart",
  4058.      "offers" : [{
  4059.      "id" : "91115487524",
  4060.      "handle" : "app--779883--offer-2mgmplss",
  4061.      "title" : "Offer ",
  4062.      "status" : "active",
  4063.      "type" : "product",
  4064.      "logic" : {"appliedTo":["all_products"],"appliedDisjunctively":["true"],"conditions":[],"products":[],"collections":[]},
  4065.      "expires": "0",
  4066.      "automations": {"autoAccept":{"type":"percentage","threshold":"10"},"autoDecline":{"type":"percentage","threshold":"25"},"autoCounter":true},
  4067.      "display_options": {"button":true,"inline":false,"banner":false},
  4068.      "display_settings": {"button":{"tooltipPosition":"bottom"},"banner":{"bannerPosition":"bottom_right"},"modal":{"modalExitIntent":true,"modalTimed":true},"tos":{"tosCheckbox":true}},
  4069.      "settings": {"suggestedAmounts":{"enabled":true,"preset1":"10","preset2":"13.75","preset3":"17.5"},"acceptAbove":false,"disableBelow":false},
  4070.      "fields": []
  4071.      }],
  4072.      "priority": "default",
  4073.      "current_product": {
  4074.        "id": "",
  4075.        "title": null,
  4076.        "product_type": null,
  4077.        "variant_options": [],
  4078.        "selected_variant": "",
  4079.        "collections": []
  4080.      },
  4081.      "cart_contents": [],
  4082.      "display_settings": {"button":{"tooltipPosition":"bottom"},"banner":{"bannerPosition":"bottom_right"},"modal":{"modalExitIntent":true,"modalTimed":true},"tos":{"tosCheckbox":true}},
  4083.      "display_text": {"banner":{"headline":"Make an offer","subheadline":"Submit your offer. The seller will review your offer and respond to accept, decline or counter offer.","offerButton":"Make an offer"},"button":{"offerButton":"Make an offer","tooltip":"Name your own price!"},"feedback":{"checkoutButton":"Checkout","reviewMessage":"Your offer has been sent for review","acceptedMessage":"Your offer has been accepted","declinedMessage":"Your offer has been declined","expiredMessage":"Your offer has expired","counteredMessage":"Your offer has been countered","errorMessage":"Something went wrong"},"inlineForm":{"headline":"Make an offer","subheadline":"Submit your offer. The seller will review your offer and respond to accept, decline or counter offer.","sendOfferButton":"Send offer","offerInputLabel":"Your offer","emailAddress":"Email address","notes":"Message"},"modal":{"headline":"Make an offer","subheadline":"Submit your offer. The seller will review your offer and respond to accept, decline or counter offer.","sendOfferButton":"Send offer","counterOfferButton":"Make a counter offer","offerInputLabel":"Your offer","counterOfferInputLabel":"Your counter offer","emailAddress":"Email address","notes":"Message","reviewOfferHeadline":"Offer in Review","reviewOfferSubheadline":"The seller will review your offer and respond to accept, decline or counter offer. You will receive an email notification with their response.","acceptedOfferHeadline":"Accepted offer","acceptedOfferSubheadline":"The seller has accepted your offer. You can proceed to checkout now.","declinedOfferHeadline":"Declined offer","declinedOfferSubheadline":"The seller has declined your offer. You can submit a new offer 24 hours after your original offer was made.","counteredOpenOfferHeadline":"Seller offer","counteredOpenOfferSubheadline":"The seller has responded with an offer. You can accept this offer and proceed to checkout now or make a counter offer.","counteredFinalOfferHeadline":"Final offer","counteredFinalOfferSubheadline":"The seller has responded with their final offer. You can accept this offer and proceed to checkout now.","counterOfferHeadline":"Counter offer","counterOfferSubheadline":"The seller will review your offer and respond to accept, decline or counter offer. You will receive an email notification with their response.","expiredOfferHeadline":"Expired offer","expiredOfferSubheadline":"This offer has expired. You can make another offer in 24 hours after your original offer was made."},"tos":{"body":"I agree to the \u003ca href=\"\/policies\/terms-of-service\" target=\"_blank\"\u003eTerms of service\u003c\/a\u003e"}},
  4084.      "button_match_theme": true,
  4085.      "currency_format" : {
  4086.        "html_with_currency" :"$0.00 USD",
  4087.        "html_without_currency" :"0.00"},
  4088.      "locale": {
  4089.        "required": "Required",
  4090.        "required_prompt": "Please complete this required field.",
  4091.        "character_min_prompt": "Enter at least [CHAR_MIN] characters.",
  4092.        "quantity": "Quantity",
  4093.        "quantity_exceeds_inventory": "Quantity exceeds available inventory.",
  4094.        "offer_amount_per_product": "The offer amount is per product",
  4095.        "additional_payment": "Additional payment",
  4096.        "your_cart": "Your cart",
  4097.        "original_price": "Original price",
  4098.        "seller_offer": "Seller offer",
  4099.        "your_offer": "Your offer",
  4100.        "your_counter_offer": "Your counter offer",
  4101.        "expires_in": "This offer expires in",
  4102.        "feedback_expired_message": "Your offer has expired",
  4103.        "show_items": "Show items",
  4104.        "hide_items": "Hide items",
  4105.        "item": "item",
  4106.        "items": "items",
  4107.        "counter": "Make a counter offer",
  4108.        "review_offer_headline": "Offer in Review",
  4109.        "review_offer_subheadline": "The seller will review your offer and respond to accept, decline or counter offer. You will receive an email notification with their response.",
  4110.        "accepted_offer_headline": "Accepted offer",
  4111.        "accepted_offer_subheadline": "The seller has accepted your offer. You can proceed to checkout now.",
  4112.        "declined_offer_headline": "Declined offer",
  4113.        "declined_offer_subheadline": "The seller has declined your offer. You can submit a new offer 24 hours after your original offer was made.",
  4114.        "countered_open_offer_headline": "Seller offer",
  4115.        "countered_open_offer_subheadline": "The seller has responded with an offer. You can accept this offer and proceed to checkout now or make a counter offer.",
  4116.        "countered_final_offer_headline": "Final offer",
  4117.        "countered_final_offer_subheadline": "The seller has responded with their final offer. You can accept this offer and proceed to checkout now.",
  4118.        "counter_offer_headline": "Counter offer",
  4119.        "counter_offer_subheadline": "The seller will review your offer and respond to accept, decline or counter offer. You will receive an email notification with their response.",
  4120.        "expired_offer_headline": "Expired offer",
  4121.        "expired_offer_subheadline": "This offer has expired. You can make another offer in 24 hours after your original offer was made.",
  4122.        "view_offer_status": "View offer status"
  4123.      }
  4124.    }
  4125.  </script>
  4126.  
  4127.  <script>
  4128.    (function () {
  4129.      function getCurrentCurrency() {
  4130.        return Shopify.currency.active;
  4131.      }
  4132.  
  4133.      window.currentCurrency = getCurrentCurrency();
  4134.    })();
  4135.  </script>
  4136.  
  4137.  <!-- BEGIN app snippet: ma-make-an-offer-product-modal --><style>
  4138.  #mao-product-offer-modal {
  4139.    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  4140.    font-style: normal;
  4141.    font-weight: 400;
  4142.  }
  4143. </style>
  4144.  
  4145. <dialog
  4146.  class="ma-make-an-offer-modal"
  4147.  id="mao-product-offer-modal"
  4148.  aria-modal="true"
  4149.  tabindex="-1"
  4150. >
  4151.  <div class="mao-modal-header">
  4152.    <div class="mao-modal-title">
  4153.      Make an offer
  4154.    </div>
  4155.    <button
  4156.      class="mao-modal-close"
  4157.      type="button"
  4158.    >
  4159.      <svg
  4160.        width="15"
  4161.        height="15"
  4162.        viewBox="0 0 15 15"
  4163.        fill="none"
  4164.        xmlns="http://www.w3.org/2000/svg"
  4165.      >
  4166.        <path d="M13.1171 0.232849L7.20412 6.14585L1.29112 0.232849C1.1489 0.102708 0.961956 0.0324552 0.769229 0.0367255C0.576501 0.0409958 0.392853 0.11946 0.25654 0.255773C0.120228 0.392085 0.0417635 0.575734 0.0374932 0.768461C0.0332229 0.961189 0.103476 1.14813 0.233617 1.29035L6.14362 7.20335L0.232117 13.1148C0.159895 13.1837 0.102162 13.2662 0.0623104 13.3577C0.0224588 13.4492 0.00129289 13.5477 5.74026e-05 13.6474C-0.00117809 13.7472 0.0175417 13.8462 0.055116 13.9386C0.0926903 14.031 0.148361 14.115 0.218856 14.1856C0.28935 14.2562 0.373246 14.312 0.465612 14.3497C0.557978 14.3874 0.656949 14.4062 0.756709 14.4052C0.856468 14.4041 0.955002 14.383 1.04652 14.3433C1.13803 14.3036 1.22069 14.246 1.28962 14.1738L7.20412 8.26235L13.1171 14.1753C13.2593 14.3055 13.4463 14.3757 13.639 14.3715C13.8317 14.3672 14.0154 14.2887 14.1517 14.1524C14.288 14.0161 14.3665 13.8325 14.3707 13.6397C14.375 13.447 14.3048 13.2601 14.1746 13.1178L8.26162 7.20485L14.1746 1.29035C14.2468 1.22152 14.3046 1.13895 14.3444 1.04749C14.3843 0.956031 14.4054 0.857527 14.4067 0.757769C14.4079 0.658012 14.3892 0.559014 14.3516 0.466595C14.314 0.374175 14.2584 0.2902 14.1879 0.219606C14.1174 0.149011 14.0335 0.0932212 13.9411 0.055516C13.8488 0.0178107 13.7498 -0.00104908 13.65 4.50155e-05C13.5503 0.00113911 13.4517 0.0221651 13.3602 0.0618871C13.2687 0.101609 13.186 0.159225 13.1171 0.231349V0.232849Z" fill="currentColor" />
  4167.      </svg>
  4168.    </button>
  4169.  </div>
  4170.  <div class="mao-modal-body">
  4171.    <div
  4172.      class="mao-modal-content"
  4173.      data-type="modal"
  4174.    ></div>
  4175.  </div>
  4176. </dialog>
  4177.  
  4178. <script>
  4179.  const maoProductOfferDialog = document.querySelector('#mao-product-offer-modal');
  4180.  const maoProductOfferDialogCloseButton = document.querySelector('#mao-product-offer-modal .mao-modal-close');
  4181.  
  4182.  maoProductOfferDialogCloseButton.addEventListener('click', function () {
  4183.    maoProductOfferDialog.close();
  4184.  });
  4185. </script>
  4186. <!-- END app snippet -->
  4187.  <!-- BEGIN app snippet: ma-make-an-offer-order-modal --><style>
  4188.  #mao-order-offer-modal {
  4189.    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  4190.    font-style: normal;
  4191.    font-weight: 400;
  4192.  }
  4193. </style>
  4194.  
  4195. <dialog
  4196.  class="ma-make-an-offer-modal"
  4197.  id="mao-order-offer-modal"
  4198.  aria-modal="true"
  4199.  tabindex="-1"
  4200. >
  4201.  <div class="mao-modal-header">
  4202.    <div class="mao-modal-title">
  4203.      Make an offer
  4204.    </div>
  4205.    <button
  4206.      class="mao-modal-close"
  4207.      type="button"
  4208.    >
  4209.      <svg
  4210.        width="15"
  4211.        height="15"
  4212.        viewBox="0 0 15 15"
  4213.        fill="none"
  4214.        xmlns="http://www.w3.org/2000/svg"
  4215.      >
  4216.        <path d="M13.1171 0.232849L7.20412 6.14585L1.29112 0.232849C1.1489 0.102708 0.961956 0.0324552 0.769229 0.0367255C0.576501 0.0409958 0.392853 0.11946 0.25654 0.255773C0.120228 0.392085 0.0417635 0.575734 0.0374932 0.768461C0.0332229 0.961189 0.103476 1.14813 0.233617 1.29035L6.14362 7.20335L0.232117 13.1148C0.159895 13.1837 0.102162 13.2662 0.0623104 13.3577C0.0224588 13.4492 0.00129289 13.5477 5.74026e-05 13.6474C-0.00117809 13.7472 0.0175417 13.8462 0.055116 13.9386C0.0926903 14.031 0.148361 14.115 0.218856 14.1856C0.28935 14.2562 0.373246 14.312 0.465612 14.3497C0.557978 14.3874 0.656949 14.4062 0.756709 14.4052C0.856468 14.4041 0.955002 14.383 1.04652 14.3433C1.13803 14.3036 1.22069 14.246 1.28962 14.1738L7.20412 8.26235L13.1171 14.1753C13.2593 14.3055 13.4463 14.3757 13.639 14.3715C13.8317 14.3672 14.0154 14.2887 14.1517 14.1524C14.288 14.0161 14.3665 13.8325 14.3707 13.6397C14.375 13.447 14.3048 13.2601 14.1746 13.1178L8.26162 7.20485L14.1746 1.29035C14.2468 1.22152 14.3046 1.13895 14.3444 1.04749C14.3843 0.956031 14.4054 0.857527 14.4067 0.757769C14.4079 0.658012 14.3892 0.559014 14.3516 0.466595C14.314 0.374175 14.2584 0.2902 14.1879 0.219606C14.1174 0.149011 14.0335 0.0932212 13.9411 0.055516C13.8488 0.0178107 13.7498 -0.00104908 13.65 4.50155e-05C13.5503 0.00113911 13.4517 0.0221651 13.3602 0.0618871C13.2687 0.101609 13.186 0.159225 13.1171 0.231349V0.232849Z" fill="currentColor" />
  4217.      </svg>
  4218.    </button>
  4219.  </div>
  4220.  <div class="mao-modal-body">
  4221.    <div
  4222.      class="mao-offer-order-modal-content"
  4223.      data-type="modal"
  4224.    ></div>
  4225.  </div>
  4226. </dialog>
  4227.  
  4228. <script>
  4229.  const maoOrderOfferDialog = document.querySelector('#mao-order-offer-modal');
  4230.  const maoOrderOfferDialogCloseButton = document.querySelector('#mao-order-offer-modal .mao-modal-close');
  4231.  
  4232.  maoOrderOfferDialogCloseButton.addEventListener('click', function () {
  4233.    maoOrderOfferDialog.close();
  4234.  });
  4235. </script>
  4236. <!-- END app snippet -->
  4237.  <!-- BEGIN app snippet: ma-make-an-offer-counter-modal --><style>
  4238.  #mao-counter-offer-modal {
  4239.    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  4240.    font-style: normal;
  4241.    font-weight: 400;
  4242.  }
  4243. </style>
  4244.  
  4245. <dialog
  4246.  class="ma-make-an-offer-modal"
  4247.  id="mao-counter-offer-modal"
  4248.  aria-modal="true"
  4249.  tabindex="-1"
  4250. >
  4251.  <div class="mao-modal-header">
  4252.    <div class="mao-modal-title">
  4253.      Make an offer
  4254.    </div>
  4255.    <button
  4256.      class="mao-modal-close"
  4257.      type="button"
  4258.    >
  4259.      <svg
  4260.        width="15"
  4261.        height="15"
  4262.        viewBox="0 0 15 15"
  4263.        fill="none"
  4264.        xmlns="http://www.w3.org/2000/svg"
  4265.      >
  4266.        <path d="M13.1171 0.232849L7.20412 6.14585L1.29112 0.232849C1.1489 0.102708 0.961956 0.0324552 0.769229 0.0367255C0.576501 0.0409958 0.392853 0.11946 0.25654 0.255773C0.120228 0.392085 0.0417635 0.575734 0.0374932 0.768461C0.0332229 0.961189 0.103476 1.14813 0.233617 1.29035L6.14362 7.20335L0.232117 13.1148C0.159895 13.1837 0.102162 13.2662 0.0623104 13.3577C0.0224588 13.4492 0.00129289 13.5477 5.74026e-05 13.6474C-0.00117809 13.7472 0.0175417 13.8462 0.055116 13.9386C0.0926903 14.031 0.148361 14.115 0.218856 14.1856C0.28935 14.2562 0.373246 14.312 0.465612 14.3497C0.557978 14.3874 0.656949 14.4062 0.756709 14.4052C0.856468 14.4041 0.955002 14.383 1.04652 14.3433C1.13803 14.3036 1.22069 14.246 1.28962 14.1738L7.20412 8.26235L13.1171 14.1753C13.2593 14.3055 13.4463 14.3757 13.639 14.3715C13.8317 14.3672 14.0154 14.2887 14.1517 14.1524C14.288 14.0161 14.3665 13.8325 14.3707 13.6397C14.375 13.447 14.3048 13.2601 14.1746 13.1178L8.26162 7.20485L14.1746 1.29035C14.2468 1.22152 14.3046 1.13895 14.3444 1.04749C14.3843 0.956031 14.4054 0.857527 14.4067 0.757769C14.4079 0.658012 14.3892 0.559014 14.3516 0.466595C14.314 0.374175 14.2584 0.2902 14.1879 0.219606C14.1174 0.149011 14.0335 0.0932212 13.9411 0.055516C13.8488 0.0178107 13.7498 -0.00104908 13.65 4.50155e-05C13.5503 0.00113911 13.4517 0.0221651 13.3602 0.0618871C13.2687 0.101609 13.186 0.159225 13.1171 0.231349V0.232849Z" fill="currentColor" />
  4267.      </svg>
  4268.    </button>
  4269.  </div>
  4270.  <div class="mao-modal-body">
  4271.    <div
  4272.      class="mao-offer-counter-modal-content"
  4273.      data-type="modal"
  4274.    ></div>
  4275.  </div>
  4276. </dialog>
  4277.  
  4278. <script>
  4279.  const maoCounterOfferDialog = document.querySelector('#mao-counter-offer-modal');
  4280.  const maoCounterOfferDialogCloseButton = document.querySelector('#mao-counter-offer-modal .mao-modal-close');
  4281.  
  4282.  maoCounterOfferDialogCloseButton.addEventListener('click', function () {
  4283.    maoCounterOfferDialog.close();
  4284.  });
  4285. </script>
  4286. <!-- END app snippet -->
  4287.  
  4288.  <!-- BEGIN app snippet: ma-make-an-offer-banner --><style>
  4289.  
  4290.  
  4291.  .ma-make-an-offer-banner,
  4292.  .ma-make-an-offer-banner span {
  4293.    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  4294.    font-style: normal;
  4295.    font-weight: 400;
  4296.    letter-spacing: normal;
  4297.  }
  4298.  .ma-make-an-offer-banner {
  4299.    background-color: var(--ma-color-bg);
  4300.    color: var(--ma-color-text);
  4301.    border-radius: 8px;
  4302.    min-width: 500px;
  4303.    max-width: 640px;
  4304.    padding: 24px;
  4305.    position: fixed;
  4306.    z-index: 9999;
  4307.    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  4308.    display: none;
  4309.  
  4310.  
  4311.    
  4312.      bottom: 24px;
  4313.      right: 24px;
  4314.      
  4315.  }
  4316.  
  4317.  @media(max-width: 600px) {
  4318.    .ma-make-an-offer-banner {
  4319.      min-width:0;
  4320.      max-width: 100%;
  4321.      left:15px;
  4322.      right:15px;
  4323.      transform: none;
  4324.    }
  4325.  }
  4326.  
  4327.  .ma-make-an-offer-banner.form-submitted {
  4328.    background-color: transparent;
  4329.    min-width: unset;
  4330.    box-shadow: none;
  4331.    padding: 0;
  4332.  }
  4333.  .ma-make-an-offer-banner .banner-body {
  4334.    display: flex;
  4335.    flex-direction: column;
  4336.    justify-content: flex-start;
  4337.    align-items: flex-start;
  4338.  }
  4339.  .ma-make-an-offer-banner .banner-body.form-submitted {
  4340.    display: none;
  4341.  }
  4342.  .ma-make-an-offer-banner .banner-close {
  4343.    background: none;
  4344.    border: none;
  4345.    font-size: var(--ma-font-size-200);
  4346.    cursor: pointer;
  4347.    position: absolute;
  4348.    top: 8px;
  4349.    right: 8px;
  4350.  }
  4351.  .ma-make-an-offer-banner.hidden {
  4352.    display: none !important;
  4353.  }
  4354.  .ma-make-an-offer-banner .banner-title {
  4355.    display:block;
  4356.    font-size: var(--ma-font-size-300);
  4357.    font-weight: 600;
  4358.    line-height: 24px;
  4359.    max-width: 80%;
  4360.    margin-bottom:8px;
  4361.  }
  4362.  .ma-make-an-offer-banner .banner-content {
  4363.    font-size: var(--ma-font-size-100);
  4364.    font-weight: 400;
  4365.    max-width: 90%;
  4366.    line-height: 1.55;
  4367.    margin-top:0;
  4368.    margin-bottom:8px;
  4369.  }
  4370.  .ma-make-an-offer-banner .banner-button {
  4371.    position: relative;
  4372.    min-height: 36px;
  4373.    min-width: 36px;
  4374.    margin: 0;
  4375.    padding: var(--ma-button-padding-y) var(--ma-button-padding-x);
  4376.    background: var(--ma-color-bg-primary);
  4377.    box-shadow: 0rem 0.0625rem 0.0625rem rgba(31, 33, 36, 0.1);
  4378.    border-radius: var(--ma-border-radius-1);
  4379.    color: var(--ma-color-text-on-color);
  4380.    border: 1px solid var(--ma-color-border-primary);
  4381.    line-height: 1;
  4382.    text-align: center;
  4383.    cursor: pointer;
  4384.    -webkit-user-select: none;
  4385.    -moz-user-select: none;
  4386.    user-select: none;
  4387.    text-decoration: none;
  4388.    -webkit-tap-highlight-color: transparent;
  4389.    font-size: var(--ma-font-size-100);
  4390.    font-weight: 400;
  4391.    line-height: 16px;
  4392.    text-transform: none;
  4393.    letter-spacing: normal;
  4394.    display: flex;
  4395.    justify-content: center;
  4396.    align-items: center;
  4397.  }
  4398.  .ma-make-an-offer-banner .banner-button:hover {
  4399.    background: var(--ma-color-bg-primary-hover);
  4400.    border-color: transparent;
  4401.    color: var(--ma-color-text-on-color);
  4402.  }
  4403. </style>
  4404.  
  4405. <div
  4406.  role="status"
  4407.  aria-live="polite"
  4408.  class="ma-make-an-offer-banner"
  4409.  id="mao-banner"
  4410. >
  4411.  <div
  4412.    class="ma-make-an-offer-response"
  4413.    aria-live="polite"
  4414.    role="status"
  4415.  ></div>
  4416.  <div class="banner-body">
  4417.    <button
  4418.      class="banner-close"
  4419.      id="mao-banner-close"
  4420.      type="button"
  4421.    >
  4422.      <svg
  4423.        width="12"
  4424.        height="12"
  4425.        viewBox="0 0 15 15"
  4426.        fill="none"
  4427.        xmlns="http://www.w3.org/2000/svg"
  4428.      >
  4429.        <path d="M13.1171 0.232849L7.20412 6.14585L1.29112 0.232849C1.1489 0.102708 0.961956 0.0324552 0.769229 0.0367255C0.576501 0.0409958 0.392853 0.11946 0.25654 0.255773C0.120228 0.392085 0.0417635 0.575734 0.0374932 0.768461C0.0332229 0.961189 0.103476 1.14813 0.233617 1.29035L6.14362 7.20335L0.232117 13.1148C0.159895 13.1837 0.102162 13.2662 0.0623104 13.3577C0.0224588 13.4492 0.00129289 13.5477 5.74026e-05 13.6474C-0.00117809 13.7472 0.0175417 13.8462 0.055116 13.9386C0.0926903 14.031 0.148361 14.115 0.218856 14.1856C0.28935 14.2562 0.373246 14.312 0.465612 14.3497C0.557978 14.3874 0.656949 14.4062 0.756709 14.4052C0.856468 14.4041 0.955002 14.383 1.04652 14.3433C1.13803 14.3036 1.22069 14.246 1.28962 14.1738L7.20412 8.26235L13.1171 14.1753C13.2593 14.3055 13.4463 14.3757 13.639 14.3715C13.8317 14.3672 14.0154 14.2887 14.1517 14.1524C14.288 14.0161 14.3665 13.8325 14.3707 13.6397C14.375 13.447 14.3048 13.2601 14.1746 13.1178L8.26162 7.20485L14.1746 1.29035C14.2468 1.22152 14.3046 1.13895 14.3444 1.04749C14.3843 0.956031 14.4054 0.857527 14.4067 0.757769C14.4079 0.658012 14.3892 0.559014 14.3516 0.466595C14.314 0.374175 14.2584 0.2902 14.1879 0.219606C14.1174 0.149011 14.0335 0.0932212 13.9411 0.055516C13.8488 0.0178107 13.7498 -0.00104908 13.65 4.50155e-05C13.5503 0.00113911 13.4517 0.0221651 13.3602 0.0618871C13.2687 0.101609 13.186 0.159225 13.1171 0.231349V0.232849Z" fill="currentColor" />
  4430.      </svg>
  4431.    </button>
  4432.    <span class="banner-title">Make an offer</span>
  4433.    <p class="banner-content">Submit your offer. The seller will review your offer and respond to accept, decline or counter offer.</p>
  4434.    <button id="mao-banner-button" class="banner-button">
  4435.      Make an offer
  4436.    </button>
  4437.  </div>
  4438. </div>
  4439.  
  4440. <script>
  4441.  const banner = document.querySelector('#mao-banner');
  4442.  const bannerButton = document.querySelector('#mao-banner-button');
  4443.  const bannerCloseButton = document.querySelector('#mao-banner-close');
  4444.  const modalDialog = document.querySelector('#mao-product-offer-modal');
  4445.  
  4446.  bannerButton.addEventListener('click', function () {
  4447.    modalDialog.showModal();
  4448.    modalDialog.setAttribute('data-source', 'banner');
  4449.    banner.classList.add('hidden');
  4450.  });
  4451.  
  4452.  bannerCloseButton.addEventListener('click', function () {
  4453.    banner.classList.add('hidden');
  4454.  });
  4455. </script>
  4456. <!-- END app snippet -->
  4457. </magical-make-an-offer>
  4458.  
  4459.  
  4460. </div></body>
  4461. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda