<!doctype html>
<html lang="nl">
    <head >
        <script>
    var require = {
        "baseUrl": "https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL"
    };
</script>
        <meta charset="utf-8"/>
<meta name="description" content="Koop een waterpijp online of in onze winkel in Den Haag. Alleen de beste kwaliteit waterpijpen &amp; shisha producten. √ Voor 22:00, morgen in huis"/>
<meta name="keywords" content="waterpijpen, shisha, waterpijp, waterpijp speciaalzaak, waterpijp den haag, shisha den haag, waterpijp zaak rijswijk, waterpijp winkel den haag, waterpijp winkel rijswijk, premium hookahs, premium waterpijpen, kwaliteit waterpijpen, top kwaliteit shishas, waterpijp roken, waterpijp bestellen"/>
<meta name="robots" content="INDEX,FOLLOW"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="format-detection" content="telephone=no"/>
<title>Premium-Hookahs | De waterpijp &amp; shisha speciaalzaak!</title>
<link  rel="stylesheet" type="text/css"  media="all" href="https://premium-hookahs.nl/pub/static/version1632982119/_cache/merged/996eff7d038b74144f02d570f7020cc4.css" />
<link  rel="stylesheet" type="text/css"  media="screen and (min-width: 768px)" href="https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/css/styles-l.css" />
<link  rel="stylesheet" type="text/css"  media="print" href="https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/css/print.css" />
<link  rel="stylesheet" type="text/css"  media="all" href="https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/css/override.css" />
<script  type="text/javascript"  src="https://premium-hookahs.nl/pub/static/version1632982119/_cache/merged/bfe848b8a61af994d18eaa707936b7b3.js"></script>
<link  rel="canonical" href="https://premium-hookahs.nl" />
<link  rel="icon" type="image/x-icon" href="https://premium-hookahs.nl/pub/media/favicon/websites/1/favicon_1.png" />
<link  rel="shortcut icon" type="image/x-icon" href="https://premium-hookahs.nl/pub/media/favicon/websites/1/favicon_1.png" />
<!-- Hotjar Tracking Code for https://premium-hookahs.nl/ -->
<script>
    (function(h,o,t,j,a,r){
        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
        h._hjSettings={hjid:2219090,hjsv:6};
        a=o.getElementsByTagName('head')[0];
        r=o.createElement('script');r.async=1;
        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
        a.appendChild(r);
    })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
        <script type="text/javascript" src="https://chimpstatic.com/mcjs-connected/js/users/5877a3af5c2a52f0dca3d0964/8d651c396e16de2cc67d41ac6.js" defer></script>
<link rel="stylesheet" type="text/css" media="all" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css"/>    </head>
    <body data-container="body" data-mage-init='{"loaderAjax": {}, "loader": { "icon": "https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/images/loader-2.gif"}}' class="cms-home- cms-index-index page-layout-1column">
        
<script>
    try {
        if (!window.localStorage || !window.sessionStorage) {
            throw new Error();
        }

        localStorage.setItem('storage_test', 1);
        localStorage.removeItem('storage_test');
    } catch(e) {
        (function () {
            var Storage = function (type) {
                var data;

                function createCookie(name, value, days) {
                    var date, expires;

                    if (days) {
                        date = new Date();
                        date.setTime(date.getTime()+(days * 24 * 60 * 60 * 1000));
                        expires = '; expires=' + date.toGMTString();
                    } else {
                        expires = '';
                    }
                    document.cookie = name + '=' + value+expires+'; path=/';
                }

                function readCookie(name) {
                    var nameEQ = name + '=',
                        ca = document.cookie.split(';'),
                        i = 0,
                        c;

                    for (i=0; i < ca.length; i++) {
                        c = ca[i];

                        while (c.charAt(0) === ' ') {
                            c = c.substring(1,c.length);
                        }

                        if (c.indexOf(nameEQ) === 0) {
                            return c.substring(nameEQ.length, c.length);
                        }
                    }

                    return null;
                }

                function setData(data) {
                    data = encodeURIComponent(JSON.stringify(data));
                    createCookie(type === 'session' ? getSessionName() : 'localStorage', data, 365);
                }

                function clearData() {
                    createCookie(type === 'session' ? getSessionName() : 'localStorage', '', 365);
                }

                function getData() {
                    var data = type === 'session' ? readCookie(getSessionName()) : readCookie('localStorage');

                    return data ? JSON.parse(decodeURIComponent(data)) : {};
                }

                function getSessionName() {
                    if (!window.name) {
                        window.name = new Date().getTime();
                    }

                    return 'sessionStorage' + window.name;
                }

                data = getData();

                return {
                    length: 0,
                    clear: function () {
                        data = {};
                        this.length = 0;
                        clearData();
                    },

                    getItem: function (key) {
                        return data[key] === undefined ? null : data[key];
                    },

                    key: function (i) {
                        var ctr = 0,
                            k;

                        for (k in data) {
                            if (ctr.toString() === i.toString()) {
                                return k;
                            } else {
                                ctr++
                            }
                        }

                        return null;
                    },

                    removeItem: function (key) {
                        delete data[key];
                        this.length--;
                        setData(data);
                    },

                    setItem: function (key, value) {
                        data[key] = value.toString();
                        this.length++;
                        setData(data);
                    }
                };
            };

            window.localStorage.__proto__ = window.localStorage = new Storage('local');
            window.sessionStorage.__proto__ = window.sessionStorage = new Storage('session');
        })();
    }
</script>
    <script>
        require.config({
            deps: [
                'jquery',
                'mage/translate',
                'jquery/jquery-storageapi'
            ],
            callback: function ($) {
                'use strict';

                var dependencies = [],
                    versionObj;

                $.initNamespaceStorage('mage-translation-storage');
                $.initNamespaceStorage('mage-translation-file-version');
                versionObj = $.localStorage.get('mage-translation-file-version');

                
                if (versionObj.version !== '93fe93ddf6d243e968cb69e7fc62ccc17ca4f0b0') {
                    dependencies.push(
                        'text!js-translation.json'
                    );

                }

                require.config({
                    deps: dependencies,
                    callback: function (string) {
                        if (typeof string === 'string') {
                            $.mage.translate.add(JSON.parse(string));
                            $.localStorage.set('mage-translation-storage', string);
                            $.localStorage.set(
                                'mage-translation-file-version',
                                {
                                    version: '93fe93ddf6d243e968cb69e7fc62ccc17ca4f0b0'
                                }
                            );
                        } else {
                            $.mage.translate.add($.localStorage.get('mage-translation-storage'));
                        }
                    }
                });
            }
        });
    </script>

<script type="text/x-magento-init">
    {
        "*": {
            "mage/cookies": {
                "expires": null,
                "path": "/",
                "domain": ".premium-hookahs.nl",
                "secure": false,
                "lifetime": "86400"
            }
        }
    }
</script>
    <noscript>
        <div class="message global noscript">
            <div class="content">
                <p>
                    <strong>JavaScript lijkt te zijn uitgeschakeld in uw browser.</strong>
                    <span>Voor de beste gebruikerservaring, zorg ervoor dat javascript ingeschakeld is voor uw browser.</span>
                </p>
            </div>
        </div>
    </noscript>
<form style="display:none;" class="form"
              action="https://premium-hookahs.nl/sociallogin/account/loginPost/"
              method="post"
              id="sociallogin-login-form"
              >
    <input id="sociallogin-login-referer" name="refress-redirect-url" type="hidden" value="" />
    <input id="sociallogin-login-submit" type="submit" value="" />
</form>    <div role="alertdialog"
         tabindex="-1"
         class="message global cookie"
         id="notice-cookie-block"
         style="display: none;">
        <div role="document" class="content" tabindex="0">
            <p>
                <strong>Wij gebruiken cookies om uw ervaring beter te maken.</strong>
                <span>Om aan de <a href="https://premium-hookahs.nl/privacy-policy/">nieuwe e-Privacy richtlijn te voldoen</a>, vragen we je om toestemming om cookies te plaatsen.</span>
            </p>
            <div class="actions">
                <button id="btn-cookie-allow" class="action allow primary">
                    <span>Cookies toestaan</span>
                </button>
            </div>
        </div>
    </div>
    <script type="text/x-magento-init">
        {
            "#notice-cookie-block": {
                "cookieNotices": {
                    "cookieAllowButtonSelector": "#btn-cookie-allow",
                    "cookieName": "user_allowed_save_cookie",
                    "cookieValue": {"1":1},
                    "cookieLifetime": 31536000,
                    "noCookiesUrl": "https\u003A\u002F\u002Fpremium\u002Dhookahs.nl\u002Fcookie\u002Findex\u002FnoCookies\u002F"
                }
            }
        }
    </script>

<script>
    var foomanGaBaseUrl = '';
    var foomanGaQuery = '';
</script>
<div class="page-wrapper"><header class="page-header"><div class="panel wrapper"><div class="panel header">
<div data-block="minicart" class="minicart-wrapper">
    <a class="action showcart" href="https://premium-hookahs.nl/checkout/cart/"
       data-bind="scope: 'minicart_content'">
        <span class="text">Mijn mandje</span>
        <span class="counter qty empty"
              data-bind="css: { empty: !!getCartParam('summary_count') == false }, blockLoader: isLoading">
            <span class="counter-number"><!-- ko text: getCartParam('summary_count') --><!-- /ko --></span>
            <span class="counter-label">
            <!-- ko if: getCartParam('summary_count') -->
                <!-- ko text: getCartParam('summary_count') --><!-- /ko -->
                <!-- ko i18n: 'items' --><!-- /ko -->
            <!-- /ko -->
            </span>
        </span>
    </a>
            <div class="block block-minicart empty"
             data-role="dropdownDialog"
             data-mage-init='{"dropdownDialog":{
                "appendTo":"[data-block=minicart]",
                "triggerTarget":".showcart",
                "timeout": "2000",
                "closeOnMouseLeave": false,
                "closeOnEscape": true,
                "triggerClass":"active",
                "parentClass":"active",
                "buttons":[]}}'>
            <div id="minicart-content-wrapper" data-bind="scope: 'minicart_content'">
                <!-- ko template: getTemplate() --><!-- /ko -->
            </div>
                    </div>
        <script>
        window.checkout = {"shoppingCartUrl":"https:\/\/premium-hookahs.nl\/checkout\/cart\/","checkoutUrl":"https:\/\/premium-hookahs.nl\/checkout\/cart\/","updateItemQtyUrl":"https:\/\/premium-hookahs.nl\/checkout\/sidebar\/updateItemQty\/","removeItemUrl":"https:\/\/premium-hookahs.nl\/checkout\/sidebar\/removeItem\/","imageTemplate":"Magento_Catalog\/product\/image_with_borders","baseUrl":"https:\/\/premium-hookahs.nl\/","minicartMaxItemsVisible":3,"websiteId":"1","maxItemsToDisplay":10,"customerLoginUrl":"https:\/\/premium-hookahs.nl\/customer\/account\/login\/","isRedirectRequired":false,"autocomplete":"off","captcha":{"user_login":{"isCaseSensitive":false,"imageHeight":50,"imageSrc":"","refreshUrl":"https:\/\/premium-hookahs.nl\/captcha\/refresh\/","isRequired":false},"guest_checkout":{"isCaseSensitive":false,"imageHeight":50,"imageSrc":"","refreshUrl":"https:\/\/premium-hookahs.nl\/captcha\/refresh\/","isRequired":false}}};
    </script>
    <script type="text/x-magento-init">
    {
        "[data-block='minicart']": {
            "Magento_Ui/js/core/app": {"components":{"minicart_content":{"children":{"subtotal.container":{"children":{"subtotal":{"children":{"subtotal.totals":{"config":{"display_cart_subtotal_incl_tax":1,"display_cart_subtotal_excl_tax":0,"template":"Magento_Tax\/checkout\/minicart\/subtotal\/totals"},"component":"Magento_Tax\/js\/view\/checkout\/minicart\/subtotal\/totals","children":{"subtotal.totals.msrp":{"component":"Magento_Msrp\/js\/view\/checkout\/minicart\/subtotal\/totals","config":{"displayArea":"minicart-subtotal-hidden","template":"Magento_Msrp\/checkout\/minicart\/subtotal\/totals"}}}}},"component":"uiComponent","config":{"template":"Magento_Checkout\/minicart\/subtotal"}}},"component":"uiComponent","config":{"displayArea":"subtotalContainer"}},"item.renderer":{"component":"uiComponent","config":{"displayArea":"defaultRenderer","template":"Magento_Checkout\/minicart\/item\/default"},"children":{"item.image":{"component":"Magento_Catalog\/js\/view\/image","config":{"template":"Magento_Catalog\/product\/image","displayArea":"itemImage"}},"checkout.cart.item.price.sidebar":{"component":"uiComponent","config":{"template":"Magento_Checkout\/minicart\/item\/price","displayArea":"priceSidebar"}}}},"extra_info":{"component":"uiComponent","config":{"displayArea":"extraInfo"}},"promotion":{"component":"uiComponent","config":{"displayArea":"promotion"}}},"config":{"itemRenderer":{"default":"defaultRenderer","simple":"defaultRenderer","virtual":"defaultRenderer"},"template":"Magento_Checkout\/minicart\/content"},"component":"Magento_Checkout\/js\/view\/minicart"}},"types":[]}        },
        "*": {
            "Magento_Ui/js/block-loader": "https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/images/loader-1.gif"
        }
    }
    </script>
</div>


<ul class="header links"><li class="authorization-link ww-logout">
    <a href="https://premium-hookahs.nl/customer/account/login/referer/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv/">
        Inloggen    </a>
</li>

<script type="text/x-magento-init">
    {
        "*": {
            "Magento_Ui/js/core/app": {
                "components": {
                    "rewards": {
                        "component": "Mirasvit_RewardsCheckout/js/view/rewards",
                        "defaultValue": ""
                    }
                }
            }
        }
    }
</script>
</ul><a class="action skip contentarea" href="#contentarea"><span>Ga naar de inhoud</span></a>
    <div id="google_translate_element"></div><script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'nl', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, gaTrack: true, gaId: 'UA-16086299-1'}, 'google_translate_element');
}
</script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
        
<div class="block block-search">
    <div class="block block-title"><strong>Zoek</strong></div>
    <div class="block block-content">
        <form class="form minisearch" id="search_mini_form" action="https://premium-hookahs.nl/catalogsearch/result/" method="get">
            <div class="field search">
                <label class="label" for="search" data-role="minisearch-label">
                    <span>Zoek</span>
                </label>
                <div class="control">
                    <input id="search"
                           data-mage-init='{"quickSearch":{
                                "formSelector":"#search_mini_form",
                                "url":"https://premium-hookahs.nl/search/ajax/suggest/",
                                "destinationSelector":"#search_autocomplete"}
                           }'
                           type="text"
                           name="q"
                           value=""
                           placeholder="Doorzoek de hele winkel"
                           class="input-text"
                           maxlength="60"
                           role="combobox"
                           aria-haspopup="false"
                           aria-autocomplete="both"
                           autocomplete="off"/>
                    <div id="search_autocomplete" class="search-autocomplete"></div>
                    
<div data-bind="scope: 'searchsuiteautocomplete_form'">
    <!-- ko template: getTemplate() --><!-- /ko -->
</div>

<script type="text/x-magento-init">
{
    "*": {
        "Magento_Ui/js/core/app": {
            "components": {
                "searchsuiteautocomplete_form": {
                    "component": "MageWorx_SearchSuiteAutocomplete/js/autocomplete"
                },
                "searchsuiteautocompleteBindEvents": {
                    "component": "MageWorx_SearchSuiteAutocomplete/js/bindEvents",
                    "config": {
                        "searchFormSelector": "#search_mini_form",
                        "searchButtonSelector": "button.search",
                        "inputSelector": "#search, #mobile_search, .minisearch input[type=\"text\"]",
                        "searchDelay": "500"
                    }
                },
                "searchsuiteautocompleteDataProvider": {
                    "component": "MageWorx_SearchSuiteAutocomplete/js/dataProvider",
                    "config": {
                        "url": "https://premium-hookahs.nl/mageworx_searchsuiteautocomplete/ajax/index/"
                    }
                }
            }
        }
    }
}
</script>                </div>
            </div>
            <div class="actions">
                <button type="submit"
                        title="Zoek"
                        class="action search">
                    <span>Zoek</span>
                </button>
            </div>
        </form>
    </div>
</div>
</div></div><div class="header content"><div class="container-fluid ww-header-content">
    <div class="ww-mobile-menu"></div>
    <div class="row">
        <div class="col-sm-9">
            <div class="logo-bg"></div>
                <strong class="logo">
        <img src="https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/images/logo/Logo-PremiumHookahs.png"
             alt="Premium-hookahs logo"
             width="400"             height="115"        />
    </strong>
            <div class="ww-header-banner">
<ul>
<li><span class="phicon-truck"></span>
<div>Gratis verzending vanaf <br /><span class="ww-text-attention">€49,-</span> anders <strong>slechts <span class="ww-text-attention">€4,95</span></strong></div>
</li>
<li><span class="phicon-stopwatch"></span>
<div><b>Voor <span class="ww-text-attention">22:00</span> </b>besteld, <br />morgen in huis!</div>
</li>
<li><span class="phicon-save-money"></span>
<div><strong><span class="ww-text-attention">31</span> dagen Retourneren</strong> <br />niet goed, geld terug!</div>
</li>
</ul>
</div>        </div>
        <div class="col-sm-3">
                <div class="store-availability" data-settings='{"colors":{"closed":"grey","closes_at":"orange","open":"green","opens_at":"blue"},"texts":{"closed":"gesloten","closes_at":"Sluit om %s","open":"open","opens_at":"Opent om %s"},"threshold":3600}'>
        <div class="row">
                        <div class=" col-sm-6 row store-availability-detail" data-availability='{"1":false,"2":[["12:00","16:00"]],"3":[["12:00","16:00"]],"4":false,"5":[["12:00","16:00"]],"6":false,"0":false}'>
                    <div class="label">Klantenservice</div>
                    <div class="status text-grey"></div>
                </div>
                                <div class=" col-sm-6 row store-availability-detail" data-availability='{"1":false,"2":[["12:00","18:00"]],"3":[["12:00","18:00"]],"4":[["17:30","21:00"]],"5":[["12:00","18:00"]],"6":[["12:00","18:00"]],"0":false}'>
                    <div class="label">Showroom</div>
                    <div class="status text-grey"></div>
                </div>
                            </div>
    </div>
        </div>
    </div>
</div>
<div class="ww-mobile-filterbutton"></div></div></header>    <div class="sections nav-sections">
                <div class="section-items nav-sections-items" data-mage-init='{"tabs":{"openedState":"active"}}'>
                                                            <div class="section-item-title nav-sections-item-title" data-role="collapsible">
                    <a class="nav-sections-item-switch" data-toggle="switch" href="#store.menu">Menu</a>
                </div>
                <div class="section-item-content nav-sections-item-content" id="store.menu" data-role="content">
<nav class="navigation" data-action="navigation">
    <ul data-mage-init='{"menu":{"responsive":true, "expanded":true, "position":{"my":"left top","at":"left bottom"}}}'>
        <li  class="level0 nav-1 first level-top parent"><a href="https://premium-hookahs.nl/waterpijp/"  class="level-top" ><span>Waterpijpen</span></a><ul class="level0 submenu"><li  class="level1 nav-1-1 first"><a href="https://premium-hookahs.nl/waterpijp/farida/" ><span>Farida</span></a></li><li  class="level1 nav-1-2"><a href="https://premium-hookahs.nl/waterpijp/khalil-mamoon/" ><span>Khalil Mamoon</span></a></li><li  class="level1 nav-1-3"><a href="https://premium-hookahs.nl/waterpijp/el-nefes/" ><span>El Nefes</span></a></li><li  class="level1 nav-1-4"><a href="https://premium-hookahs.nl/waterpijp/oduman/" ><span>Oduman</span></a></li><li  class="level1 nav-1-5"><a href="https://premium-hookahs.nl/waterpijp/amy-deluxe/" ><span>Amy Deluxe</span></a></li><li  class="level1 nav-1-6"><a href="https://premium-hookahs.nl/waterpijp/wd-hookahs/" ><span>WD Hookah</span></a></li><li  class="level1 nav-1-7"><a href="https://premium-hookahs.nl/waterpijp/maklaud/" ><span>Maklaud</span></a></li><li  class="level1 nav-1-8"><a href="https://premium-hookahs.nl/waterpijp/aladin/" ><span>Aladin</span></a></li><li  class="level1 nav-1-9"><a href="https://premium-hookahs.nl/waterpijp/starbuzz-waterpijpen/" ><span>Starbuzz</span></a></li><li  class="level1 nav-1-10"><a href="https://premium-hookahs.nl/waterpijp/steamulation/" ><span>Steamulation</span></a></li><li  class="level1 nav-1-11"><a href="https://premium-hookahs.nl/waterpijp/wookah/" ><span>Wookah</span></a></li><li  class="level1 nav-1-12"><a href="https://premium-hookahs.nl/waterpijp/japona-hookah/" ><span>Japona Hookah</span></a></li><li  class="level1 nav-1-13"><a href="https://premium-hookahs.nl/waterpijp/geometry-hookah/" ><span>Geometry Hookah</span></a></li><li  class="level1 nav-1-14"><a href="https://premium-hookahs.nl/waterpijp/mamay-customs/" ><span>Mamay Customs</span></a></li><li  class="level1 nav-1-15"><a href="https://premium-hookahs.nl/waterpijp/mexanika-smoke/" ><span>Mexanika Smoke</span></a></li><li  class="level1 nav-1-16"><a href="https://premium-hookahs.nl/waterpijp/voodoo-hookah/" ><span>Voodoo Hookah</span></a></li><li  class="level1 nav-1-17"><a href="https://premium-hookahs.nl/waterpijp/adalya-ath/" ><span>ATH</span></a></li><li  class="level1 nav-1-18 last"><a href="https://premium-hookahs.nl/waterpijp/overige-waterpijpen/" ><span>Overige Waterpijpen</span></a></li></ul></li><li  class="level0 nav-2 level-top parent"><a href="https://premium-hookahs.nl/waterpijp-slangen/"  class="level-top" ><span>Slangen</span></a><ul class="level0 submenu"><li  class="level1 nav-2-1 first"><a href="https://premium-hookahs.nl/waterpijp-slangen/shisha-slangen-wasbaar/" ><span>Wasbare slangen</span></a></li><li  class="level1 nav-2-2"><a href="https://premium-hookahs.nl/waterpijp-slangen/shisha-slangen-niet-wasbaar/" ><span>Niet wasbare slangen</span></a></li><li  class="level1 nav-2-3 last"><a href="https://premium-hookahs.nl/waterpijp-slangen/siliconen-slang-mondstuk/" ><span>Siliconen slang &amp; mondstukken</span></a></li></ul></li><li  class="level0 nav-3 level-top parent"><a href="https://premium-hookahs.nl/tabakskoppen/"  class="level-top" ><span>Tabakskoppen</span></a><ul class="level0 submenu"><li  class="level1 nav-3-1 first"><a href="https://premium-hookahs.nl/tabakskoppen/klassieke-koppen/" ><span>Klassiek</span></a></li><li  class="level1 nav-3-2"><a href="https://premium-hookahs.nl/tabakskoppen/phunnel-bowls/" ><span>Phunnel</span></a></li><li  class="level1 nav-3-3 last"><a href="https://premium-hookahs.nl/tabakskoppen/vortex-bowls/" ><span>Vortex</span></a></li></ul></li><li  class="level0 nav-4 level-top parent"><a href="https://premium-hookahs.nl/waterpijp-kooltjes/"  class="level-top" ><span>Kolen</span></a><ul class="level0 submenu"><li  class="level1 nav-4-1 first"><a href="https://premium-hookahs.nl/waterpijp-kooltjes/natuurkooltjes/" ><span>Natuurkooltjes</span></a></li><li  class="level1 nav-4-2 last"><a href="https://premium-hookahs.nl/waterpijp-kooltjes/easy-light-kooltjes/" ><span>Easy Light Kooltjes</span></a></li></ul></li><li  class="level0 nav-5 level-top parent"><a href="https://premium-hookahs.nl/shisha-smaken/"  class="level-top" ><span>Shisha smaken</span></a><ul class="level0 submenu"><li  class="level1 nav-5-1 first"><a href="https://premium-hookahs.nl/shisha-smaken/shiazo-steam-stones/" ><span>Shiazo Steam Stones</span></a></li><li  class="level1 nav-5-2"><a href="https://premium-hookahs.nl/shisha-smaken/aladin-bigg-ice-rockz/" ><span>Aladin Bigg Ice Rockz</span></a></li><li  class="level1 nav-5-3"><a href="https://premium-hookahs.nl/shisha-smaken/mig-vulcanos/" ><span>MIG Vulcanos</span></a></li><li  class="level1 nav-5-4"><a href="https://premium-hookahs.nl/shisha-smaken/paradise/" ><span>Paradise</span></a></li><li  class="level1 nav-5-5"><a href="https://premium-hookahs.nl/shisha-smaken/true-passion-steam-stones/" ><span>True Passion</span></a></li><li  class="level1 nav-5-6"><a href="https://premium-hookahs.nl/shisha-smaken/steamshox-steam-stones/" ><span>SteamshoX</span></a></li><li  class="level1 nav-5-7"><a href="https://premium-hookahs.nl/shisha-smaken/el-nefes-hookah-cream/" ><span>El Nefes Hookah Cream</span></a></li><li  class="level1 nav-5-8"><a href="https://premium-hookahs.nl/shisha-smaken/true-cloudz/" ><span>True Cloudz</span></a></li><li  class="level1 nav-5-9"><a href="https://premium-hookahs.nl/shisha-smaken/shaashii-poeder/" ><span>Shaashii poeder</span></a></li><li  class="level1 nav-5-10 last"><a href="https://premium-hookahs.nl/shisha-smaken/jeffs-seven-elements/" ><span>Jeff&#039;s seven element</span></a></li></ul></li><li  class="level0 nav-6 level-top"><a href="https://premium-hookahs.nl/waterpijp-tabak/"  class="level-top" ><span>Waterpijp Tabak</span></a></li><li  class="level0 nav-7 level-top parent"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/"  class="level-top" ><span>Accessoires</span></a><ul class="level0 submenu"><li  class="level1 nav-7-1 first"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/kolenbranders/" ><span>Kolenbranders</span></a></li><li  class="level1 nav-7-2"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/waterpijp-vazen/" ><span>Waterpijp vazen</span></a></li><li  class="level1 nav-7-3"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/kool-accessoires/" ><span>Kool Accessoires</span></a></li><li  class="level1 nav-7-4"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/heat-management-devices/" ><span>Heat Management Devices (HMD)</span></a></li><li  class="level1 nav-7-5"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/mondstukjes-rubbertjes/" ><span>Mondstukjes &amp; rubbertjes</span></a></li><li  class="level1 nav-7-6"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/schoonmaakartikelen/" ><span>Schoonmaakartikelen</span></a></li><li  class="level1 nav-7-7"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/windschermen/" ><span>Windschermen</span></a></li><li  class="level1 nav-7-8"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/losse-onderdelen/" ><span>Losse onderdelen</span></a></li><li  class="level1 nav-7-9"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/waterpijp-kleur-poeder/" ><span>Waterpijp kleurpoeder</span></a></li><li  class="level1 nav-7-10 last"><a href="https://premium-hookahs.nl/waterpijp-onderdelen/overige/" ><span>Overige</span></a></li></ul></li><li  class="level0 nav-8 level-top parent"><a href="https://premium-hookahs.nl/experience/"  class="level-top" ><span>Experience</span></a><ul class="level0 submenu"><li  class="level1 nav-8-1 first"><a href="https://premium-hookahs.nl/experience/thee-en-chai/" ><span>Thee &amp; Chai</span></a></li><li  class="level1 nav-8-2"><a href="https://premium-hookahs.nl/experience/candy-sweets/" ><span>Candy &amp; Sweets</span></a></li><li  class="level1 nav-8-3"><a href="https://premium-hookahs.nl/experience/noten-en-delicatessen/" ><span>Nootjes &amp; Delicatessen</span></a></li><li  class="level1 nav-8-4"><a href="https://premium-hookahs.nl/experience/chocolade/" ><span>Premium Chocolade</span></a></li><li  class="level1 nav-8-5"><a href="https://premium-hookahs.nl/experience/exclusive-drinks/" ><span>Exclusive drinks</span></a></li><li  class="level1 nav-8-6"><a href="https://premium-hookahs.nl/experience/sfeer-ambiance/" ><span>Sfeer &amp; Ambiance</span></a></li><li  class="level1 nav-8-7 last"><a href="https://premium-hookahs.nl/experience/parfume-fragrance-oud-musk/" ><span>Fragrance &amp; Oud Musk&#039;s</span></a></li></ul></li><li  class="level0 nav-9 last level-top"><a href="https://premium-hookahs.nl/waterpijp-informatie/"  class="level-top" ><span>Blog</span></a></li>            </ul>
</nav>
</div>
                                                                                                                    <div class="section-item-title nav-sections-item-title">
                            <a class="nav-sections-item-switch" href="https://premium-hookahs.nl/customer/account/login/">log in</a>
                        </div>
                                                    </div>
    </div>
<div class="container ww-page-top ww-page-top__slideshow">
    <div class="row">
        <div class="col-sm-8">
                    <div class="flexslider flexslider-8">
            <ul class="slides">
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/b/a/banner-02.png">
                        <a href="" target="_new">
                            <img alt="Nieuwe showroom locatie 2" title="Nieuwe showroom locatie 2" src="https://premium-hookahs.nl/pub/media/bannerslider/b/a/banner-02.png"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/d/i/different_hookah_smoking_style.png">
                        <a href="https://premium-hookahs.nl/waterpijp-informatie/verschillende-rookstijlen/" target="_blank">
                            <img alt="ARS" title="ARS" src="https://premium-hookahs.nl/pub/media/bannerslider/d/i/different_hookah_smoking_style.png"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/j/a/japona_hookah.jpg">
                        <a href="https://premium-hookahs.nl/waterpijp/japona-hookah/" target="_new">
                            <img alt="Japona Hookah" title="Japona Hookah" src="https://premium-hookahs.nl/pub/media/bannerslider/j/a/japona_hookah.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/a/m/amy_deluxe_nederlands_805x382.jpg">
                        <a href="/waterpijp/amy-deluxe/" target="_blank">
                            <img alt="Amy Deluxe Nederlands" title="Amy Deluxe Nederlands" src="https://premium-hookahs.nl/pub/media/bannerslider/a/m/amy_deluxe_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/e/x/experience_b.png">
                        <a href="https://premium-hookahs.nl/experience/" target="_new">
                            <img alt="Experience " title="Experience " src="https://premium-hookahs.nl/pub/media/bannerslider/e/x/experience_b.png"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/p/r/premium_points_nederlands_805x382.jpg">
                        <a href="" target="_new">
                            <img alt="Premium punten Nederlands" title="Premium punten Nederlands" src="https://premium-hookahs.nl/pub/media/bannerslider/p/r/premium_points_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/t/o/tom_cococha_nederlands_805x382.jpg">
                        <a href="/waterpijp-kooltjes/" target="_new">
                            <img alt="Tom Cococha Nederlands" title="Tom Cococha Nederlands" src="https://premium-hookahs.nl/pub/media/bannerslider/t/o/tom_cococha_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/h/o/hookah_bowls_nederlands_805x382.jpg">
                        <a href="/tabakskoppen/" target="_blank">
                            <img alt="Tabakskopjes Nederlands" title="Tabakskopjes Nederlands" src="https://premium-hookahs.nl/pub/media/bannerslider/h/o/hookah_bowls_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/h/o/hookah_hoses_nederlands_805x382.jpg">
                        <a href="/waterpijp-slangen/" target="_blank">
                            <img alt="Waterpijp slangen Nederlands" title="Waterpijp slangen Nederlands" src="https://premium-hookahs.nl/pub/media/bannerslider/h/o/hookah_hoses_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                                    <li data-thumb="https://premium-hookahs.nl/pub/media/bannerslider/w/o/wookah_nederlands_805x382.jpg">
                        <a href="/waterpijp/wookah/" target="_new">
                            <img alt="Wookah Engels" title="Wookah Engels" src="https://premium-hookahs.nl/pub/media/bannerslider/w/o/wookah_nederlands_805x382.jpg"/>
                        </a>
                    </li>
                            </ul>
        </div>
        <script type="text/javascript">
            require(['jquery', 'cpflexslider', 'cpmousewheel'], function () {
                jQuery(document).ready(function () {
                    jQuery('.flexslider-8').flexslider({
                        animation: "slide",
                        controlNav: "true",
                        slideshowSpeed: 3900,
                        direction: "horizontal",
                        animationLoop: true,
                        smoothHeight: true,
                        startAt: 0,
                        slideshow: true,
                        animationSpeed: 2000,
                        initDelay: 4000,
                        pauseOnHover: true,
                        touch: true,
                        directionNav: true,
                        keyboard: true,
                        mousewheel: false,
                        prevText: '<',
                        nextText: '>'
                    });
                });
            });
        </script>

                    </div>
        <div class="col-sm-4 row">
            <ul class="home-banners-small">
<li><a href="waterpijpen/" target="_self"><img src="https://premium-hookahs.nl/pub/media/wysiwyg/home2-hookas_1.jpg" alt="alle waterpijpen en shisha's" /></a></li>
<li><a href="waterpijp-kooltjes/" target="_self"><img src="https://premium-hookahs.nl/pub/media/wysiwyg/Charcoal.jpg" alt="waterpijp kolen" width="394" height="109" /></a></li>
<li><a href="waterpijp-onderdelen/" target="_self"><img src="https://premium-hookahs.nl/pub/media/wysiwyg/home3-accessories_1.jpg" alt="alle waterpijp en shisha accessoires" /></a></li>
</ul>        </div>
    </div>
</div><main id="maincontent" class="page-main"><a id="contentarea" tabindex="-1"></a>
<div class="page messages"><div data-placeholder="messages"></div>
<div id="ww_mage_messages" data-bind="scope: 'messages'">
    <div data-bind="foreach: { data: cookieMessages, as: 'message' }" class="messages">
        <div data-bind="attr: { class: 'message-'+message.type+' '+message.type+' message', 'data-ui-id': 'message-'+message.type }">
            <div data-bind="html: message.text"></div>
            <button data-bind="visible : message.text" class="hide-ww-mage-message">X</button>
        </div>
    </div>
    <div data-bind="foreach: { data: messages().messages, as: 'message' }" class="messages">
        <div data-bind="attr: { class: 'message-' + message.type + ' ' + message.type + ' message', 'data-ui-id': 'message-' + message.type }">
            <div data-bind="html: message.text"></div>
            <button data-bind="visible : message.text" class="hide-ww-mage-message">X</button>
        </div>
    </div>
</div>
<script type="text/x-magento-init">
    {
        "*": {
            "Magento_Ui/js/core/app": {
                "components": {
                    "messages": {
                        "component": "Magento_Theme/js/view/messages"
                    }
                }
            }
        }
    }
</script>
<script>
    require(['jquery'], function($) {
        function ww_init_messages() {
            if ($('.hide-ww-mage-message').length) {
                setTimeout(function() {
                    $('.hide-ww-mage-message').each(function() {
                        $(this).parent().hide(function() {
                            $(this).remove();
                        });
                    });
                }, 6000);
            }

            setTimeout(ww_init_messages, 5000);
        }

        $(document).on('click', '.hide-ww-mage-message', function() {
            $(this).parent().hide(function() {
                $(this).remove();
            });
        }).ready(ww_init_messages);
    });
</script></div><div class="columns"><div class="column main"><input name="form_key" type="hidden" value="j0sgKbOYXlKs6BVN" /><div id="authenticationPopup" data-bind="scope:'authenticationPopup'" style="display: none;">
    <script>
        window.authenticationPopup = {"autocomplete":"off","customerRegisterUrl":"https:\/\/premium-hookahs.nl\/customer\/account\/create\/","customerForgotPasswordUrl":"https:\/\/premium-hookahs.nl\/customer\/account\/forgotpassword\/","baseUrl":"https:\/\/premium-hookahs.nl\/"};
    </script>
    <!-- ko template: getTemplate() --><!-- /ko -->
    <script type="text/x-magento-init">
        {
            "#authenticationPopup": {
                "Magento_Ui/js/core/app": {"components":{"authenticationPopup":{"component":"Magento_Customer\/js\/view\/authentication-popup","children":{"messages":{"component":"Magento_Ui\/js\/view\/messages","displayArea":"messages"},"captcha":{"component":"MageWorkshop_ReCaptcha\/js\/view\/checkout\/loginCaptcha","displayArea":"additional-login-form-fields","formId":"guest_checkout","configSource":"checkout"}}}}}            },
            "*": {
                "Magento_Ui/js/block-loader": "https\u003A\u002F\u002Fpremium\u002Dhookahs.nl\u002Fpub\u002Fstatic\u002Fversion1632982119\u002Ffrontend\u002FWebWhales\u002Fpremiumhookahs_theme\u002Fnl_NL\u002Fimages\u002Floader\u002D1.gif"
            }
        }
    </script>
</div>
<script type="text/x-magento-init">
{"*":{"Magento_Customer\/js\/section-config":{"sections":{"stores\/store\/switch":"*","directory\/currency\/switch":"*","*":["messages"],"customer\/account\/logout":["recently_viewed_product","recently_compared_product"],"customer\/account\/loginpost":"*","customer\/account\/createpost":"*","customer\/account\/editpost":"*","customer\/ajax\/login":["checkout-data","cart"],"sociallogin\/account\/loginpost":"*","catalog\/product_compare\/add":["compare-products"],"catalog\/product_compare\/remove":["compare-products"],"catalog\/product_compare\/clear":["compare-products"],"sales\/guest\/reorder":["cart"],"sales\/order\/reorder":["cart"],"checkout\/cart\/add":["cart","gtm"],"checkout\/cart\/delete":["cart","gtm"],"checkout\/cart\/updatepost":["cart"],"checkout\/cart\/updateitemoptions":["cart"],"checkout\/cart\/couponpost":["cart"],"checkout\/cart\/estimatepost":["cart"],"checkout\/cart\/estimateupdatepost":["cart"],"checkout\/onepage\/saveorder":["cart","checkout-data","last-ordered-items","checkout-fields"],"checkout\/sidebar\/removeitem":["cart","gtm"],"checkout\/sidebar\/updateitemqty":["cart"],"rest\/*\/v1\/carts\/*\/payment-information":["cart","checkout-data","last-ordered-items","instant-purchase","gtm"],"rest\/*\/v1\/guest-carts\/*\/payment-information":["cart","checkout-data","gtm"],"rest\/*\/v1\/guest-carts\/*\/selected-payment-method":["cart","checkout-data"],"rest\/*\/v1\/carts\/*\/selected-payment-method":["cart","checkout-data","instant-purchase"],"review\/product\/post":["review"],"authorizenet\/directpost_payment\/place":["cart","checkout-data"],"customer\/address\/*":["instant-purchase"],"customer\/account\/*":["instant-purchase"],"vault\/cards\/deleteaction":["instant-purchase"],"multishipping\/checkout\/overviewpost":["cart"],"paypal\/express\/placeorder":["cart","checkout-data"],"paypal\/payflowexpress\/placeorder":["cart","checkout-data"],"wishlist\/index\/add":["wishlist"],"wishlist\/index\/remove":["wishlist"],"wishlist\/index\/updateitemoptions":["wishlist"],"wishlist\/index\/update":["wishlist"],"wishlist\/index\/cart":["wishlist","cart"],"wishlist\/index\/fromcart":["wishlist","cart"],"wishlist\/index\/allcart":["wishlist","cart"],"wishlist\/shared\/allcart":["wishlist","cart"],"wishlist\/shared\/cart":["cart"],"braintree\/paypal\/placeorder":["cart","checkout-data"],"rest\/*\/v1\/guest-carts\/*\/collection-point\/select":["collection-point-result"],"rest\/*\/v1\/carts\/mine\/collection-point\/select":["collection-point-result"],"checkout\/cart\/configure":["gtm"],"rest\/*\/v1\/guest-carts\/*\/shipping-information":["gtm"],"rest\/*\/v1\/carts\/*\/shipping-information":["gtm"]},"clientSideSections":["checkout-data","cart-data"],"baseUrls":["https:\/\/premium-hookahs.nl\/"]}}}</script>
<script type="text/x-magento-init">
{"*":{"Magento_Customer\/js\/customer-data":{"sectionLoadUrl":"https:\/\/premium-hookahs.nl\/customer\/section\/load\/","expirableSectionLifetime":60,"expirableSectionNames":["cart"],"cookieLifeTime":"86400","updateSessionUrl":"https:\/\/premium-hookahs.nl\/customer\/account\/updateSession\/"}}}</script>
<script type="text/x-magento-init">
{"*":{"Magento_Customer\/js\/invalidation-processor":{"invalidationRules":{"website-rule":{"Magento_Customer\/js\/invalidation-rules\/website-rule":{"scopeConfig":{"websiteId":1}}}}}}}</script>
<script>
    window.reCaptcha = [];
</script>
<script type="text/x-magento-init">
    {
        "body": {
            "awArpAjax": {"url":"https:\/\/premium-hookahs.nl\/autorelated\/view\/process\/"}        }
    }
</script>
<div id="monkey_campaign" style="display:none;"
     data-mage-init='{"campaigncatcher":{"checkCampaignUrl": "https://premium-hookahs.nl/mailchimp/campaign/check/"}}'>
</div><script type="text/x-magento-init">
    {
        "body": {
            "pageCache": {"url":"https:\/\/premium-hookahs.nl\/page_cache\/block\/render\/","handles":["default","cms_index_index","cms_page_view","cms_index_index_id_home_"],"originalRequest":{"route":"cms","controller":"index","action":"index","uri":"\/"},"versionCookieName":"private_content_version"}        }
    }
</script>
        <style type="text/css">
                            .form-customer-login .g-recaptcha {
                padding-top: 20%;
            }
        
        .form.form-login .g-recaptcha .grecaptcha-badge{
            position: unset !important;
        }

        .form-customer-login .g-recaptcha {
            margin: 0px;
        }

        #social-form-create .g-recaptcha{
            padding-top: 5%;
        }

        #social-form-password-forget .g-recaptcha{
            padding-top: 5%;
        }

        .onestepcheckout-index-index .form-login .g-recaptcha .grecaptcha-badge {
            position: unset !important;
        }

        .checkout-index-index form[data-role=login] .g-recaptcha .grecaptcha-badge {
            position: unset !important;
        }

        #mpageverify-form .g-recaptcha {
            margin-left: 30%;
        }

        .g-recaptcha {
            margin-top: 15px;
            margin-bottom: 15px;
        }
    </style>
    <script type="text/x-magento-init">
        {
            "*": {
                "Mageplaza_GoogleRecaptcha/js/captcha": {
                    "key": "6LdWKXQUAAAAAC9rrdD3EKX7qSrb6dq-YmBZA9fn",
                    "language": "en",
                    "position": "bottomright",
                    "theme": "light",
                    "forms": ["#newsletter-validate-detail"],
                    "type": "invisible",
                    "size": ""
                }
            }
        }
    </script>
<section class="ww-products-grid">
    <div class="container">
        <div class="row">
            <div class="col-sm-12">
                <div class="ww-switch-buttons">
                    <button id="ww-button-new-product" data-tab="#ww-field-new-product" class="active">
                        <span>Nieuwe producten</span>
                    </button>
                    <button id="ww-button-specials" data-tab="#ww-field-specials">
                        <span>Aanbiedingen</span>
                    </button>
                </div>
            </div>
            <div>
                <div id="ww-field-new-product" class="col-sm-12 ww-field-new-product">
                    <p>    <div class="block widget block-products-list grid">
                    <div class="ww-block-title">

            </div>
                <div class="block-content">
            <div class="products-grid grid">
                <ol class="product-items widget-new-grid">
                    <li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/siliconen-slang-los-gestreept-blauw-wit.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/s/i/siliconen_slang_striped_blue_white.jpg"
            width="240"
            height="300"
            alt="Siliconen slang (los) - Gestreept (Blauw/Wit)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Siliconen slang (los) - Gestreept (Blauw/Wit)"
                                           href="https://premium-hookahs.nl/siliconen-slang-los-gestreept-blauw-wit.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Siliconen slang (los) - Gestreept (Blauw/Wit)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="11487">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-11487-widget-new-grid"                data-price-amount="12.5"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 12,50</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/11487\/","data":{"product":"11487","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/leren-mondstuk-dragon-scales-green.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/l/e/leren_mondstuk_dragon_scales_green.jpg"
            width="240"
            height="300"
            alt="Leren mondstuk - Dragon Scales (Green)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Leren mondstuk - Dragon Scales (Green)"
                                           href="https://premium-hookahs.nl/leren-mondstuk-dragon-scales-green.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Leren mondstuk - Dragon Scales (Green)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="11452">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-11452-widget-new-grid"                data-price-amount="29"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 29,00</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/11452\/","data":{"product":"11452","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/serp-epoxy-stainless-steel-mondstuk-venus.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/s/e/serp_epoxy_mondstuk_stainless_steel_ghost.jpg"
            width="240"
            height="300"
            alt="SERP - Epoxy &amp; Stainless Steel mondstuk (Venus)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="SERP - Epoxy &amp; Stainless Steel mondstuk (Venus)"
                                           href="https://premium-hookahs.nl/serp-epoxy-stainless-steel-mondstuk-venus.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            SERP - Epoxy &amp; Stainless Steel mondstuk (Venus)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="11474">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-11474-widget-new-grid"                data-price-amount="29"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 29,00</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/11474\/","data":{"product":"11474","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/mamay-customs-coilover-micro-black-shisha.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/m/a/mamay_coilover_hookah_micro_black_1.jpg"
            width="240"
            height="300"
            alt="Mamay Customs Coilover - Micro - (Black)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Mamay Customs Coilover - Micro - (Black)"
                                           href="https://premium-hookahs.nl/mamay-customs-coilover-micro-black-shisha.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Mamay Customs Coilover - Micro - (Black)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="11456">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-11456-widget-new-grid"                data-price-amount="249"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 249,00</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/11456\/","data":{"product":"11456","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/ice-mondstuk-aqua.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/i/c/ice_mondstuk_aqua_ijs_shisha.png"
            width="240"
            height="300"
            alt="Ice Mondstuk (Aqua)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Ice Mondstuk (Aqua)"
                                           href="https://premium-hookahs.nl/ice-mondstuk-aqua.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Ice Mondstuk (Aqua)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="12533">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-12533-widget-new-grid"                data-price-amount="17.5"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 17,50</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/12533\/","data":{"product":"12533","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/ice-mondstuk-zwart.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/i/c/ice_mondstuk_ijs_waterpijp_zwart.png"
            width="240"
            height="300"
            alt="Ice Mondstuk (Zwart)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Ice Mondstuk (Zwart)"
                                           href="https://premium-hookahs.nl/ice-mondstuk-zwart.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Ice Mondstuk (Zwart)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="12534">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-12534-widget-new-grid"                data-price-amount="17.5"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 17,50</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/12534\/","data":{"product":"12534","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/ice-mondstuk-wit.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/i/c/ice_hose_mondstuk_wit.jpg"
            width="240"
            height="300"
            alt="Ice Mondstuk (Wit)"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Ice Mondstuk (Wit)"
                                           href="https://premium-hookahs.nl/ice-mondstuk-wit.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Ice Mondstuk (Wit)                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="12535">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-12535-widget-new-grid"                data-price-amount="17.5"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 17,50</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/12535\/","data":{"product":"12535","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li itemscope itemtype = "http://schema.org/Product"  class="product-item">                            <div class="product-item-info" data-container="product-grid">
                                <a href="https://premium-hookahs.nl/oblako-x-hooligan-edition-green.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/o/b/oblako_x_hooligan_edition_green.jpg"
            width="240"
            height="300"
            alt="Oblako x Hooligan - Green Edition"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                    <div class="stock available">
                                        <span>Op voorraad</span>
                                    </div>

                                    <strong class="product-item-name">
                                        <a title="Oblako x Hooligan - Green Edition"
                                           href="https://premium-hookahs.nl/oblako-x-hooligan-edition-green.html"
                                           itemprop="name"
                                           class="product-item-link">
                                            Oblako x Hooligan - Green Edition                                        </a>
                                    </strong>


                                    <div class="product-reviews-summary empty">
    <div class="reviews-actions">
        <a class="action add" href="#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>


                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="11470">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-11470-widget-new-grid"                data-price-amount="35"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 35,00</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                    <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/11470\/","data":{"product":"11470","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li>                </ol>
            </div>

                    </div>
    </div>
</p>                </div>
                <div id="ww-field-specials" class="col-sm-12 ww-field-specials">
                    <p>    <div class="block widget block-products-list grid">
                <div class="block-content">
            <div class="products-grid grid">
                <ol class="product-items widget-product-grid">
                    <li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/wookah-white-nox-24k-gold-plated-check-black.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/w/o/wookah_check_black_mastercut_white_nox.png"
            width="240"
            height="300"
            alt="khalil mamoon osama"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Wookah - White Nox 24K Gold-Plated (Check Black)"
                                           href="https://premium-hookahs.nl/wookah-white-nox-24k-gold-plated-check-black.html"
                                           class="product-item-link">
                                            Wookah - White Nox 24K Gold-Plated (Check Black)                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/wookah-white-nox-24k-gold-plated-check-black.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="10159">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-10159-widget-product-grid"                data-price-amount="1900"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 1.900,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-10159-widget-product-grid"                data-price-amount="1800"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 1.800,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/10159\/","data":{"product":"10159","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/wookah-mastercut-check-black-pink.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/w/o/wookah_mastercut_check_brown_black_pink.jpg"
            width="240"
            height="300"
            alt="khalil mamoon osama"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Wookah - Mastercut Check - Black Pink"
                                           href="https://premium-hookahs.nl/wookah-mastercut-check-black-pink.html"
                                           class="product-item-link">
                                            Wookah - Mastercut Check - Black Pink                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/wookah-mastercut-check-black-pink.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="12553">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-12553-widget-product-grid"                data-price-amount="600"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 600,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-12553-widget-product-grid"                data-price-amount="550"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 550,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/12553\/","data":{"product":"12553","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/wookah-grom.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/w/o/wookah_grom.jpeg"
            width="240"
            height="300"
            alt="khalil mamoon osama"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Wookah - Grom"
                                           href="https://premium-hookahs.nl/wookah-grom.html"
                                           class="product-item-link">
                                            Wookah - Grom                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/wookah-grom.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="10160">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-10160-widget-product-grid"                data-price-amount="700"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 700,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-10160-widget-product-grid"                data-price-amount="665"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 665,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/10160\/","data":{"product":"10160","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/wookah-nox.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/w/o/wookah_classic_nox.jpeg"
            width="240"
            height="300"
            alt="khalil mamoon osama"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Wookah - Nox"
                                           href="https://premium-hookahs.nl/wookah-nox.html"
                                           class="product-item-link">
                                            Wookah - Nox                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/wookah-nox.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="10162">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-10162-widget-product-grid"                data-price-amount="600"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 600,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-10162-widget-product-grid"                data-price-amount="550"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 550,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/10162\/","data":{"product":"10162","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/junior-waterpijp-zwart.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/k/l/kleine_junior_waterpijp_zwart.jpg"
            width="240"
            height="300"
            alt="Junior Waterpijp - Zwart"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Junior Waterpijp - Zwart"
                                           href="https://premium-hookahs.nl/junior-waterpijp-zwart.html"
                                           class="product-item-link">
                                            Junior Waterpijp - Zwart                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/junior-waterpijp-zwart.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="2200">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-2200-widget-product-grid"                data-price-amount="35"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 35,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-2200-widget-product-grid"                data-price-amount="29"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 29,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/2200\/","data":{"product":"2200","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/rotterdam-shisha-zwart.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/r/o/rotterdam_waterpijp_shisha.jpeg"
            width="240"
            height="300"
            alt="Rotterdam shisha - Zwart"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Rotterdam shisha - Zwart"
                                           href="https://premium-hookahs.nl/rotterdam-shisha-zwart.html"
                                           class="product-item-link">
                                            Rotterdam shisha - Zwart                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/rotterdam-shisha-zwart.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="9536">            <div class="product-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-9536-widget-product-grid"                data-price-amount="39"
        data-price-type="oldPrice"
        class="price-wrapper ">
        <span class="price">€ 39,00</span>    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/9536\/","data":{"product":"9536","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/amy-klassieke-steenkop.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/a/m/amy_deluxe_steen_kop.jpeg"
            width="240"
            height="300"
            alt="Amy Hot Screen Set"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Amy - Klassieke steenkop"
                                           href="https://premium-hookahs.nl/amy-klassieke-steenkop.html"
                                           class="product-item-link">
                                            Amy - Klassieke steenkop                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short empty">
    <div class="reviews-actions">
        <a class="action add" href="https://premium-hookahs.nl/amy-klassieke-steenkop.html#reviews" data-offset="getHeaderAndMenuHeight">
            Geen reviews voor dit product. Schrijf een review en ontvang 25 Premium punten!        </a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="10032">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-10032-widget-product-grid"                data-price-amount="12.5"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 12,50    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-10032-widget-product-grid"                data-price-amount="9.95"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 9,95    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/10032\/","data":{"product":"10032","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li><li class="product-item has-special-price">                            <div class="product-item-info">
                                <a href="https://premium-hookahs.nl/egyptisch-ondiep.html" class="product-item-photo">
                                    
<span class="product-image-container"
      style="width:240px;">
    <span class="product-image-wrapper"
          style="padding-bottom: 125%;">
        <img class="product-image-photo"
                        src="https://premium-hookahs.nl/pub/media/catalog/product/cache/f073062f50e48eb0f0998593e568d857/e/g/egyptische_tabakskop_ondiep.jpg"
            width="240"
            height="300"
            alt="ondiepe tabakskop"/></span>
</span>
                                </a>

                                <div class="product-item-details">
                                                                            <div class="stock available">
                                            <span>Op voorraad</span>
                                        </div>
                                    
                                    <strong class="product-item-name">
                                        <a title="Egyptische tabakskop (Ondiep)"
                                           href="https://premium-hookahs.nl/egyptisch-ondiep.html"
                                           class="product-item-link">
                                            Egyptische tabakskop (Ondiep)                                        </a>
                                    </strong>
                                    <div class="product-reviews-summary short">
        <div class="rating-summary">
        <span class="label"><span>Waardering:</span></span>
        <div class="rating-result" title="98%">
            <span style="width:98%"><span>98%</span></span>
        </div>
    </div>
        <div class="reviews-actions">
        <a class="action view" href="https://premium-hookahs.nl/egyptisch-ondiep.html#reviews" data-offset="getHeaderAndMenuHeight">18&nbsp;<span>Reviews</span></a>
    </div>
</div>

                                    <div class="product-item-inner clearfix">
                                        <div class="price-box price-final_price" data-role="priceBox" data-product-id="124">            <div class="product-price has-special-price old-price">
                <span>

<span class="price-container "
        >
        <span  id="old-price-124-widget-product-grid"                data-price-amount="3"
        data-price-type="oldPrice"
        class="price-wrapper ">
        € 3,00    </span>
        </span>
</span>
        </div>
        <div class="product-special-price">
                <span>  

<span class="price-container "
        >
        <span  id="old-price-124-widget-product-grid"                data-price-amount="2"
        data-price-type="finalPrice"
        class="price-wrapper ">
        € 2,00    </span>
        </span>
</span>
        </div>
        </div>                                                                                    <div class="product-item-actions">
                                                                                                    <div class="actions-primary">
                                                                                                                                                                                                                                                                                                                <button class="action tocart primary"
                                                                        data-post='{"action":"https:\/\/premium-hookahs.nl\/checkout\/cart\/add\/uenc\/aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv\/product\/124\/","data":{"product":"124","uenc":"aHR0cHM6Ly9wcmVtaXVtLWhvb2thaHMubmwv"}}'
                                                                        type="button" title="In mandje">
                                                                    <span>In mandje</span>
                                                                </button>
                                                                                                                                                                        </div>
                                                                                            </div>
                                                                            </div>
                                </div>
                            </div>
                            </li>                </ol>
            </div>

                    </div>
    </div>
</p>                </div>
            </div>
        </div>
    </div>
    <script>
        require(['jquery', 'Magento_Customer/js/customer-data'], function($) {
            var $firstButton;

            $(document).on('click', '.ww-switch-buttons button[data-tab]', function() {
                var $this = $(this), $target = $($this.data('tab'));

                if ($target.length) {
                    $this.addClass('active').siblings().removeClass('active');
                    $target.show(0).siblings().hide(0);
                }
            });

            if (($firstButton = $('.ww-switch-buttons button.active')).length) {
                $firstButton.first().trigger('click');
            } else {
                $('.ww-switch-buttons button').first().trigger('click')
            }
        });
    </script>
</section><p style="text-align: center;"><img src="https://premium-hookahs.nl/pub/media/wysiwyg/Logos/divider1.jpg" width="700" height="64" /></p>
<h1 style="text-align: center;"><span style="font-size: x-large;"><strong><span style="font-family: tahoma, arial, helvetica, sans-serif;">Een waterpijp kopen in de winkel van Premium Hookahs</span></strong></span></h1>
<p style="text-align: center;">Wil je een waterpijp kopen in onze online winkel of showroom in Den Haag? Van volledige shisha tot het zeldzaamste rubbertje; geen waterpijpwens blijft bij ons onvervuld. Ons ruime assortiment bestaat uit top merken vanuit de hele wereld speciaal voor jou geimporteerd! Of je nu een shisha online wilt kopen, een waterpijp wilt huren of gloednieuwe tabakskoppen, slangen en accessoires wilt ontdekken; in de winkel van Premium Hookahs zit je helemaal goed!</p>
<h2 style="text-align: center;">Kies een waterpijp uit het ruime aanbod in onze winkel</h2>
<p style="text-align: center;">In onze online winkel kun je niet alleen een waterpijp en <a href="https://premium-hookahs.nl/shisha-smaken/">shisha kopen</a>, maar ook de fantastische waterpijpwereld verkennen. Dag in en dag uit werken we round the clock om onze voorliefde voor dit eeuwenoude gebruik te delen. Naast een vlotte bezorging en service voegen we constant de nieuwste en meest nuttige shisha's en <a href="https://premium-hookahs.nl/waterpijp-onderdelen/">accessoires</a> toe aan het aanbod. Daarnaast kun je bij ons ook zelf een waterpijp samenstellen. De waterpijp is zo oud als de wereld, maar wordt - mede dankzij internationale populariteit - nog altijd regelmatig vernieuwd en ontwikkeld. Machinaal of traditioneel, phunnel of klassiek, Egyptisch of Duits; we halen het in huis, zodat jij in &eacute;&eacute;n klap klaar bent voor een droomsessie.</p>
<h3 style="text-align: center;">Neem bij vragen contact met ons op</h3>
<p style="text-align: center;">Een waterpijp online kopen was nog nooit zo simpel. Neem een duik in de honderden selecties shisha's en accessoires van <a href="https://premium-hookahs.nl/merken/">diverse merken</a>. Alle bestellingen boven de &euro; 49,- worden gratis bezorgd. Plaats je jouw bestelling voor 22.00 uur? Dan wordt jouw shisha of waterpijp uit onze winkel de volgende dag al thuisbezorgd. Dit geldt niet alleen voor levering in Nederland, maar ook voor Belgi&euml; en Duitsland. Wil je liever langskomen? Kom dan naar onze exclusieve showroom in Den Haag en kijk je ogen uit. Wanneer je vragen hebt, neem je gerust contact met ons op. Wij helpen je graag verder!</p>    <script>
        require([
            'jquery',
            'amScrollScript'
        ], function ($) {
            var bodyElem = $('body');
            if ($.data(bodyElem[0], 'mage-amScrollScript')) {
                bodyElem.amScrollScript('initialize');
            } else {
                bodyElem.amScrollScript({"actionMode":"auto","product_container":".products.products-grid:not(.amasty-banners), .products.products-list:not(.amasty-banners), .products-grid.grid:not(.amasty-banners)","product_link":".product-item-link","loadingImage":"https:\/\/premium-hookahs.nl\/pub\/static\/version1632982119\/frontend\/WebWhales\/premiumhookahs_theme\/nl_NL\/Amasty_Scroll\/images\/amscroll-scroll.gif","pageNumbers":"0","pageNumberContent":"PAGE #","loadNextStyle":"background: #3A4F62;","loadingafterTextButton":"Laad volgende","loadingbeforeTextButton":"Laad vorige","progressbar":{"enabled":"1","styles":"background: #3A4F62;"},"progressbarText":"PAGE %1 of %2","current_page":1});
            }
        });
    </script>
<script type="text/javascript">
	require(['jquery',
				"Ves_All/lib/owl.carousel/owl.carousel.min",
				'Ves_Brand/js/brand'], function () {});
</script></div></div></main><footer class="page-footer"><div class="webwinkelkeur-big-widget" style="background: #f4f4f4; padding: 30px; border-top: solid 1px #dadada; border-bottom: 5px solid #bda580; ">
                        <div itemscope itemtype="http://schema.org/WebPage">
                <div class="container" style="background: #fff; border: solid 1px #dadada; padding 20px; border-radius: 10px; ">
                    <div class="row" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating" style="padding: 5px;  ">
                        <div class="col-sm-5">
                            <img src="https://premium-hookahs.nl/pub/static/version1632982119/frontend/WebWhales/premiumhookahs_theme/nl_NL/Magmodules_WebwinkelKeur/images/webwinkelkeur_brand.png" style="height: 60px!important;margin-top: 4px; float:right;margin-right:5px;"/>
                        </div>
                        <div class="col-sm-3 webwinkelkeur-score--ww">
                            <p>
                                <span class="score"><span itemprop="ratingValue">8.8</span> </span>				    <span style="display:none;" itemprop="bestRating">10</span>
                            </p>
                        </div>
                        <div class="col-sm-3 rating-summary webwinkelkeur-result" style="width: 160px!important">
                            <div class="rating-result">
                                <span style="width: 88%;"></span>
                            </div>
                        </div>
                        <div class="col-sm-3 webwinkelkeur-reviews--number" >
                            <p>
                                <a href="https://www.webwinkelkeur.nl/webshop/Premium-Hookahs_277" class="webwinkelkeurPopup" title="Webshop Trustmark" target="_blank" style="color: #646464; "><span itemprop="ratingCount" style="color: #646464; "><strong>3194</strong></span> Reviews</a>                            </p>
                        </div>
                    </div>
                </div>
            </div>
            </div><div class="footer content" style="padding-top: 30px;">
    <div class="container">
        <div class="row">
            <div class="col-sm-3">
                <div class="row">
                    <div class="col-sm-12">
                                            </div>
                    <div class="col-sm-12">
                        <h5>ADRES SHOWROOM</h5>
<p><a href="https://goo.gl/maps/GxzmfAdgqAuRf3G37" target="_blank">Boomsluiterskade 2</a><br /><a href="https://goo.gl/maps/GxzmfAdgqAuRf3G37" target="_blank">2511VK Den Haag</a></p>                    </div>
                    <div class="col-sm-12" style="margin-bottom: 20px">
                        <h5>OPENINGSTIJDEN</h5>
<ul>
<li>Di, Wo, Vr, Za: 12:00-18:00</li>
<li>Donderdag shopping night: 17:30 - 21:00</li>
<li>Ma &amp; Zo: Showroom gesloten</li>
</ul>                    </div>
                    <div class="col-sm-12 links-angles">
                        <h5>Bestelling</h5>
<ul>
<li><a href="https://premium-hookahs.nl/waterpijp-winkel-den-haag/" target="_self">Showroom</a></li>
<li><a href="https://premium-hookahs.nl/verzending/">Leveringen</a></li>
<li><a href="https://premium-hookahs.nl/retourneren/">Retourneren</a></li>
<li><a href="https://premium-hookahs.nl/betalingen/">Betalingen</a></li>
<li><a href="https://premium-hookahs.nl/klachten-pagina/?___store=premium_nl" target="_self">Klachten</a></li>
</ul>                    </div>
                </div>
            </div>
            <div class="col-sm-5">
                <div class="row">
                    <div class="col-sm-12">
                        <div class="newsletter">
    <div class="title"><h5>Nieuwsbrief</h5></div>
    <div class="content">
        <form class="form subscribe"
            novalidate
            action="https://premium-hookahs.nl/newsletter/subscriber/new/"
            method="post"
            data-mage-init='{"validation": {"errorClass": "mage-error"}}'
            id="newsletter-validate-detail">
            <div class="field newsletter">
                <label class="label" for="newsletter"><span>Aanmelden voor onze nieuwsbrief:</span></label>
                <div class="control">
                    <input name="email" type="email" id="newsletter"
                                placeholder="Voer je e-mailadres in"
                                data-validate="{required:true, 'validate-email':true}"/>  <button class="action subscribe primary" title="Inschrijven" type="submit">
                        <span>Inschrijven</span>
                    </button>
                </div>
            </div>

        </form>
    </div>
</div>
                    </div>
                    <div class="col-sm-12 big-buttons">
                        <ul>
<li><a href="https://premium-hookahs.nl/blog/"> <strong>Hookah Blog</strong> <span>Lees al onze waterpijp tips</span> </a></li>
<!--li><a href="{{store direct_url="> <strong>FAQ</strong> <span>VRAAG EN ANTWOORD</span> </a></li--></ul>
                    </div>
                </div>
            </div>
            <div class="col-sm-4">
                <div class="row">
                    <div class="col-sm-12 links-angles" style="margin-bottom: 20px;">
                        <h5>PREMIUM HOOKAHS</h5>
<ul>
<li><a href="https://premium-hookahs.nl/contact/">Contact</a></li>
<li><a href="https://waterpijp-groothandel.nl/">Groothandel</a></li>
<li><a href="https://premium-hookahs.nl/waterpijp-huren" target="_self">Waterpijp Verhuur</a></li>
<li><a href="https://premium-hookahs.nl/over-ons/">Over ons</a></li>
<li><a href="https://premium-hookahs.nl/merken/" target="_self">Onze merken</a></li>
<li><a href="https://premium-hookahs.nl/premium-punten/">Premium punten</a></li>
</ul>                    </div>
                    <div class="col-sm-12 links-social">
                            <h5>STAY CONNECTED</h5>
    <div class="row">
                    <div class="col-xs-6">
                <span>logo-facebook</span>
                <a href="https://www.facebook.com/premiumhookahs" target="_blank">facebook</a>
            </div>
                    <div class="col-xs-6">
                <span>logo-twitter</span>
                <a href="https://twitter.com/waterpijpexpert" target="_blank">twitter</a>
            </div>
                    <div class="col-xs-6">
                <span>logo-instagram</span>
                <a href="https://www.instagram.com/premium_hookahs/" target="_blank">instagram</a>
            </div>
                    <div class="col-xs-6">
                <span>logo-youtube</span>
                <a href="https://www.youtube.com/user/PremiumHookahs" target="_blank">youtube</a>
            </div>
            </div>
                    </div>
                </div>
            </div>
            <div class="col-sm-12 links-payments" style="padding: 20px">
                <ul class="payment-methods">
<li class="logo logo-webwinkelkeur">WebwinkelKeur</li>
<li class="logo logo-bitcoin">Bitcoin</li>
<li class="logo logo-ideal">iDEAL</li>
<li class="logo logo-mastercard">MasterCard</li>
<li class="logo logo-visa">Visa</li>
<li class="logo logo-pin">Paypal</li>
<li class="logo logo-pin">Bancontact</li>
<li class="logo logo-pin">SSL</li>
</ul>            </div>

        </div>
    </div>
    <div class="col-sm-12 footer-links-bg" style="padding: 3px;">
        <div style="width: 490px!important; margin: 0 auto;">
        <ul class="footer-links">
<li><div class="">
    <a href="https://premium-hookahs.nl/algemene-voorwaarden/" title="Algemene voorwaarden - Premium-Hookahs">
        <span>Algemene Voorwaarden</span>
    </a>
</div>
</li>
<li><div class="">
    <a href="https://premium-hookahs.nl/privacy-policy/" title="Premium-Hookahs - Privacy policy">
        <span>Privacyverklaring</span>
    </a>
</div>
</li>
</ul>        </div>
    </div>
</div>

</footer><script type="text/x-magento-init">
        {
            "*": {
                "Magento_Ui/js/core/app": {
                    "components": {
                        "storage-manager": {
                            "component": "Magento_Catalog/js/storage-manager",
                            "appendTo": "",
                            "storagesConfiguration" :
                                         {"recently_viewed_product":{"requestConfig":{"syncUrl":"https:\/\/premium-hookahs.nl\/catalog\/product\/frontend_action_synchronize\/"},"lifetime":"1000","allowToSendRequest":null},"recently_compared_product":{"requestConfig":{"syncUrl":"https:\/\/premium-hookahs.nl\/catalog\/product\/frontend_action_synchronize\/"},"lifetime":"1000","allowToSendRequest":null},"product_data_storage":{"updateRequestConfig":{"url":"https:\/\/premium-hookahs.nl\/rest\/premium_nl\/V1\/products-render-info"},"allowToSendRequest":null}}                        }
                    }
                }
            }
        }
</script>
<!-- Hotjar Tracking Code for https://premium-hookahs.nl -->
<script>
    (function(h,o,t,j,a,r){
        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
        h._hjSettings={hjid:1489230,hjsv:6};
        a=o.getElementsByTagName('head')[0];
        r=o.createElement('script');r.async=1;
        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
        a.appendChild(r);
    })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- Start of premium-hookahs Zendesk Widget script -->
<script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key=7aafc1cb-2c80-4923-817d-5c6096436c69"> </script>
<!-- End of premium-hookahs Zendesk Widget script --><!-- add button  -->
<div id="add_button_login_byclass" style="display: none;">
    <div class="sociallogin-block sociallogin-login">
        <div class="sociallogin-buttons">
            <ul class="sociallogin-clearfix">
                            <li class="sociallogin-button facebook"   title="Login with Facebook">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://www.facebook.com/dialog/oauth?client_id=210329300433524&redirect_uri=https://premium-hookahs.nl/sociallogin/account/login/type/facebook/&response_type=code&display=popup&scope=email" data-width="650" data-height="350" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Login with Facebook</span>
                                                    </span>
                    </a>
                </li>
                                        <li class="sociallogin-button googleplus"   title="Login with Google">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=https%3A%2F%2Fpremium-hookahs.nl%2Fsociallogin%2Faccount%2Flogin%2Ftype%2Fgoogleplus%2F&client_id=788768345615-p9e77dbi9kdogpocuu6rf2vdb1qbg5uv.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&state=&access_type=offline&approval_prompt=auto" data-width="630" data-height="650" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Login with Google</span>
                                                    </span>
                    </a>
                </li>
                                        <li class="sociallogin-button instagram"   title="Login with Instagram">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://api.instagram.com/oauth/authorize?response_type=code&redirect_uri=https%3A%2F%2Fpremium-hookahs.nl%2Fsociallogin%2Faccount%2Flogin%2Ftype%2Finstagram%2F&client_id=3ada4b0a1f8340e39f34aeb7a44acd4e&scope=basic" data-width="650" data-height="350" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Login with Instagram</span>
                                                    </span>
                    </a>
                </li>
                                    </ul>

                    </div>

    </div>
    <div style="clear: both;"></div>
</div>
<div id="add_button_register_byclass" style="display: none;">
    <div class="sociallogin-block sociallogin-login">
        <div class="sociallogin-buttons">
            <ul class="sociallogin-clearfix">
                            <li class="sociallogin-button facebook"   title="Register with Facebook">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://www.facebook.com/dialog/oauth?client_id=210329300433524&redirect_uri=https://premium-hookahs.nl/sociallogin/account/login/type/facebook/&response_type=code&display=popup&scope=email" data-width="650" data-height="350" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Register with Facebook</span>
                                                    </span>
                    </a>
                </li>
                                        <li class="sociallogin-button googleplus"   title="Register with Google">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=https%3A%2F%2Fpremium-hookahs.nl%2Fsociallogin%2Faccount%2Flogin%2Ftype%2Fgoogleplus%2F&client_id=788768345615-p9e77dbi9kdogpocuu6rf2vdb1qbg5uv.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&state=&access_type=offline&approval_prompt=auto" data-width="630" data-height="650" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Register with Google</span>
                                                    </span>
                    </a>
                </li>
                                        <li class="sociallogin-button instagram"   title="Login with Instagram">
                    <a class="sociallogin-button-link sociallogin-button-click" rel="nofollow" href="javascript:void(0);" data-href="https://api.instagram.com/oauth/authorize?response_type=code&redirect_uri=https%3A%2F%2Fpremium-hookahs.nl%2Fsociallogin%2Faccount%2Flogin%2Ftype%2Finstagram%2F&client_id=3ada4b0a1f8340e39f34aeb7a44acd4e&scope=basic" data-width="650" data-height="350" >
                        <span class="sociallogin-button-auto">
                            <span class="sociallogin-button-icon">
                                                            </span>
                                                            <span class="sociallogin-button-text">Login with Instagram</span>
                                                    </span>
                    </a>
                </li>
                                    </ul>

                    </div>

    </div>
    <div style="clear: both;"></div>
</div>
<script type="text/x-magento-init">
    {
        "*": {
            "Bss_SocialLogin/js/social-popup": {
                "isPopup": "",
                "class_login": [".customer-account-login .block-customer-login .block-content"],
                "class_register":[""],
                "formLoginUrl": "https://premium-hookahs.nl/sociallogin/popup/login/",
                "forgotFormUrl": "https://premium-hookahs.nl/sociallogin/popup/forgot/",
                "createFormUrl": "https://premium-hookahs.nl/sociallogin/popup/create/",
                "recaptchaLogin": "",
                "recaptchaForgot": "",
                "recaptchaCreate": "",
                "recaptchaSitekey": "",
                "recaptchaTheme": "light",
                "recaptchaType": "image",
                "recaptchaSize": "normal"
            }
        }
    }
</script>
<script>
    window.fsbConfig = {"priceFormat":{"pattern":"\u20ac\u00a0%s","precision":2,"requiredPrecision":2,"decimalSymbol":",","groupSymbol":".","groupLength":3,"integerRequired":1}};
</script>

    <div id="scroll-to-top">
        <a class="scrollup" href="#" title="Scroll to Top" style=" right:10px;  ">
                                    <span style=" float: left;padding: 10px 0;text-align: center;width: 100%; "><span class="fa fa-arrow-up"></span></span>
                    </a>
    </div>
    <style>
    .scrollup:visited, .scrollup:active {
        color: #333333;
    }
    .scrollup{
        color: #333333;
        background-color: #f0f0ec;
        border-color: #f0f0ec;
    }
    
    .scrollup:hover {
        color: #FFFFFF;
        background-color: #333333;
    }
</style>
<script type="text/x-magento-init">
    {
        "*": {
            "solwinScroll": {}
        }
    }
</script>
</div>    </body>
</html>
