_stoqVersionMatch = window._RestockRocketConfig.scriptHost.match(/(\d+)\/?(?:assets\/?)?$/); window._RestockRocketConfig.appVersion = (_stoqVersionMatch && _stoqVersionMatch[1]) || ''; } catch (e) { window._RestockRocketConfig.appVersion = ''; } const SETTINGS_CACHE_DURATION = 15 * 60 * 1000; const LIQUID_CACHE_MAX_AGE = 15 * 60; const liquidRenderedAt = window._RestockRocketConfig.liquidRenderedAt; if (!liquidRenderedAt || typeof liquidRenderedAt !== 'number' || isNaN(liquidRenderedAt)) { console.debug('STOQ - Invalid or missing liquidRenderedAt timestamp, assuming fresh'); window._RestockRocketConfig.isLiquidCacheFresh = true; window._RestockRocketConfig.liquidCacheAge = null; } else { const now = Math.floor(Date.now() / 1000); const liquidCacheAge = now - liquidRenderedAt; window._RestockRocketConfig.liquidCacheAge = Math.max(0, liquidCacheAge); if (liquidCacheAge
0) { console.debug(`STOQ - Client clock appears ahead of server by ${Math.abs(Math.round(liquidCacheAge / 60))} minutes, assuming cache fresh`); window._RestockRocketConfig.isLiquidCacheFresh = true; } else if (liquidCacheAge
= LIQUID_CACHE_MAX_AGE) { console.debug(`STOQ - Liquid cache is fresh (${Math.round(liquidCacheAge / 60)} minutes old)`); window._RestockRocketConfig.isLiquidCacheFresh = true; } else { console.debug(`STOQ - Liquid cache is stale (${Math.round(liquidCacheAge / 60)} minutes old, max ${Math.round(LIQUID_CACHE_MAX_AGE / 60)} minutes)`); window._RestockRocketConfig.isLiquidCacheFresh = false; } } function checkSettingsExpiry(settings) { try { if (!settings || !settings.updated_at) { console.debug('STOQ - Invalid settings data structure'); return null; } if (!settings.cache) { console.debug('STOQ - settings caching disabled'); return null; } if (settings.multi_language_enabled) { if (!settings.translations) { console.debug('STOQ - multi-language enabled but no translation data in cache, fetching fresh'); return null; } if (window._RestockRocketConfig.normalizedLocale &<
nitConfig.product.variants)) ? _stoqInitConfig.product.variants.map(function(v) { return v.id }) : []; const _stoqSelectedVariantId = _stoqInitConfig.selected_variant_id; var _stoqPageSeq = 0; try { _stoqPageSeq = (parseInt(window.sessionStorage.getItem('_stoq_pls') || '0', 10) || 0) + 1; window.sessionStorage.setItem('_stoq_pls', String(_stoqPageSeq)); } catch (e) { } Shopify?.analytics?.publish?.('stoq_initialized', { cart_token: _stoqInitConfig.cartToken || '', page_url: window.location.href, page_type: _stoqInitConfig.pageType || '', shop_domain: _stoqInitConfig.shop || '', market_id: _stoqInitConfig.marketId || '', country_code: _stoqInitConfig.countryIsoCode || '', detected_variant_ids: _stoqDetectedVariantIds, selected_variant_id: _stoqSelectedVariantId || '', page_load_seq: _stoqPageSeq, liquid_rendered_at: _stoqInitConfig.liquidRenderedAt || 0, app_version: _stoqInitConfig.appVersion || '', Header Image var _sqVidNum = Number(variantId); var _sqPlan = null; var _sqPlans = Array.isArray(_sqTrack.sellingPlans) ? _sqTrack.sellingPlans : []; var _sqMktId = Number(_sqTrack.marketId); var _sqForVariant = function (pl) { return pl && pl.enabled && Array.isArray(pl.variant_ids) && pl.variant_ids.indexOf(_sqVidNum) !== -1; }; _sqPlans.forEach(function (pl) { if (!_sqPlan && _sqForVariant(pl) && pl.markets_enabled && Array.isArray(pl.shopify_market_ids) && pl.shopify_market_ids.indexOf(_sqMktId) !== -1) { _sqPlan = pl; } }); if (!_sqPlan) { _sqPlans.forEach(function (pl) { if (!_sqPlan && _sqForVariant(pl) && !pl.markets_enabled) { _sqPlan = pl; } }); } Shopify?.analytics?.publish?.('stoq_accelerated_checkout_clicked', { variant_id: variantId, product_id: (_sqTrack.product && _sqTra
as(_sqTrack.cachedInStockVariantIds && _sqTrack.cachedInStockVariantIds.in_stock_variant_ids); })(), enrolled_plan_id: (_sqPlan && (_sqPlan.shopify_selling_plan_id || _sqPlan.shopify_selling_plan_group_id)) || '', enrolled_plan_provider: (_sqPlan && _sqPlan.inventory_provider) || '', block_enabled: !!(_sqTrack.cachedSettings && _sqTrack.cachedSettings.block_accelerated_checkout), gate_armed: !!_sqTrack.acceleratedGateArmed, gate_active_at_click: !!(document.documentElement && document.documentElement.classList.contains('stoq-buy-now-pending')), blocked: (function () { try { var rr = window._RestockRocket; return !!(rr && typeof rr.willBlockAcceleratedClick === 'function' && rr.willBlockAcceleratedClick(e)); } catch (err) { return false; } })(), }, }); (function(key) { const value = translatedFields[key]; if (value !== null && value !== undefined && value !== '') { settings[key] = value; } }); } else { console.debug('STOQ - No translated fields found for locale:', normalizedLocale); } delete settings.translations; return settings; } catch (e) { console.debug('STOQ - error applying translations:', e); return settings; } } function setupCartSellingPlanUpdater(settings) { window.addEventListener('stoq:inventory-data-loaded', function(event) { console.debug('STOQ - Inventory data loaded, updating cart selling plans'); if (window._RestockRocket && window._RestockRocket.updateCartSellingPlans) { window._RestockRocket.updateCartSellingPlans() .then(hasUpdates => { if (hasUpdates) { console.debug('STOQ - cart selling plans updated successfully'); } else { console.debug('STOQ
tatus); } return response.json(); }) .then(function(body) { if (body && body.errors && body.errors.length) { throw new Error('Storefront API errors: ' + body.errors.map(function(e) { return e && e.message; }).join(', ')); } const value = body && body.data && body.data.shop && body.data.shop.metafield && body.data.shop.metafield.value; if (!value) { throw new Error('Storefront API returned no settings metafield value'); } cfg.storefrontSettings = JSON.parse(value); console.debug('STOQ - stored live settings from Storefront API on config.storefrontSettings'); }) .catch(function(e) { console.debug('STOQ - Storefront settings fetch failed (non-fatal):', e && e.message); }); } if (typeof window.requestIdleCallback === 'function') { window.requestIdleCallback(run, { timeout: 5000 }); } else { setTimeout(run, 0); } })(); const cachedSettings = window._RestockRocketConfig.cachedSett
ot ok'); } return response.json(); }) .then(function(settings) { initializeScripts(settings); }) .catch(function(error) { if (cachedSettings) { console.debug('STOQ - using expired cached settings as fallback'); initializeScripts(cachedSettings); } else { console.error('STOQ - failed to load settings:', error); } }) .catch(function(e) { console.error(e) }) } function fetchEmbedConfig(endpoint, apply) { return fetch( `${window._RestockRocketConfig.host}/api/v1/embed/${endpoint}.json`, { headers: { 'X-Shopify-Shop-Domain': window._RestockRocketConfig.shop || window.Shopify.shop, 'ngrok-skip-browser-warning': 'skip' } } ) .then(function(response) { if (!response.ok) throw new Error(`Failed to fetch ${endpoint}`); return response.json(); }) .then(function(data) { try { apply(data); } catch (applyError) {
Hungary (HUFFt) Ireland (EUR€)
Isle of Man (GBP£)

Create account

Size

Search

Latvia (EUR€) Lesotho (GBP£) Country Liberia (GBP£) Åland Islands (EUR€) Libya (GBP£) Liechtenstein (CHFCHF) Lithuania (EUR€) Andorra (EUR€) Luxembourg (EUR€) Madagascar (GBP£) Quantity Malawi (MWKMK) 1 Ascension Island (SHP£) Mali (XOFFr) Malta (EUR€) 2 Mauritania (GBP£) Belgium (EUR€) 3 Mauritius (MUR₨) Mayotte (EUR€) 4 Moldova (MDLL) Botswana (BWPP) Monaco (EUR€) 6 Montenegro (EUR€) Morocco (MADد.م.) Burkina Faso (XOFFr) Mozambique (GBP£) 8 Namibia (GBP£) 9 Netherlands (EUR€) 10 + Cape Verde (CVE$) Niger (XOFFr) Nigeria (NGN₦) Quantity North Macedonia (MKDден) Increase QuantityComoros (KMFFr) Norway (GBP£) Poland (PLNzł) Portugal (EUR€) Côte d’Ivoire (XOFFr) Réunion (EUR€) Romania (RONLei) £2,700.00 £2,700.00 Rwanda (RWFFRw) Czechia (CZKKč) San Marino (EUR€)   São Tomé & Príncipe (STDDb)   Senegal (XOFFr) Egypt (EGPج.م) Serbia (RSDРСД) Seychelles (GBP£)
Frame L 500 Series OCLV Carbon, IsoSpeed, internal storage, tapered head tube, internal cable routing, 3S chain keeper, mudguard mounts, flat mount disc, 142x12 mm thru axle
Frame Material GBP£MCARBON
Rim Size S 28 Albania (ALLL)
Fork Algeria (DZDد.ج) XLTrek
Fork {"id":58205428253055,"title":"Cobra Blood \/ XL","option1":"Cobra Blood","option2":"XL","option3":null,"sku":"5352127","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"District+ 4 R10 LS - Cobra Blood \/ XL","public_title":"Cobra Blood \/ XL","options":["Cobra Blood","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424826","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}} Domane SL carbon, tapered carbon steerer, internal brake routing, mudguard mounts, flat-mount disc, 12x100 mm thru axle Angola (GBP£)
Tires Armenia (AMDդր.) Bontrager Kwaremont Pro TLR, tubeless ready, folding bead, Race Dual-Compound, 120 tpi, 700x32 mm
Hub Front 1 Bontrager alloy, sealed bearing, CenterLock disc, 100x12 mm thru axle Austria (EUR€)
Hub Rear Belarus (GBP£) Bontrager alloy, sealed bearing, CenterLock disc, Shimano 11-speed freehub, 142x12 mm thru axle
Rims Bontrager Paradigm 23, Tubeless Ready, 24-hole, 23 mm width, Presta valve Benin (XOFFr)
Shifter Bosnia & Herzegovina (BAMКМ) Shimano 5
Derailleur Front Shimano 105 R7100, braze-on, down swing British Indian Ocean Territory (USD$)
Derailleur Rear 7 Bulgaria (EUR€) Shimano 105 R7100, 36T max cog
Crank Shimano 105 R7100, 50/34, 165 mm length Burundi (BIFFr)
Bottom Bracket Cameroon (XAFCFA) Praxis, T47 threaded, internal bearing
Cassette Shimano 105 7101, 11-34, 12-speed Central African Republic (XAFCFA)
Chain Decrease QuantityChad (XAFCFA) Shimano SLX M7100, 12-speed
Brake Rotor Shimano CL700, CentreLock, 160 mm // Shimano RT70, CentreLock, 160 mm Congo - Brazzaville (XAFCFA)
Saddle Congo - Kinshasa (CDFFr) Verse Short Comp, steel rails, 145 mm width // Verse Short Elite, hollow magnesium rails, 155 mm width
Seatpost KVF aero carbon seat post, 20 mm offset, 280 mm length Add to CartCroatia (EUR€)
Handlebar Cyprus (EUR€) Bontrager Comp, alloy, 31.8 mm, 80 mm reach, 121 mm drop, 36 cm control width, 40 cm drop width
Stem Trek RCS Pro, -7-degree, 70 mm length Denmark (DKKkr.)
Size Chart Rider Height Djibouti (DJFFdj) Rider Height - 152.0 - 158.0
Size Chart Rider Inseam Inseam - 71.0 - 75.0 window.appBlockPlacements ||= []; if (window.klarnaAppBlocksManager) { window.klarnaAppBlocksManager.push({ productVariants: [{"id":58205428154751,"title":"Cobra Blood \/ L","option1":"Cobra Blood","option2":"L","option3":null,"sku":"5352126","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ L","public_title":"Cobra Blood \/ L","options":["Cobra Blood","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424819","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428187519,"title":"Cobra Blood \/ M","option1":"Cobra Blood","option2":"M","option3":null,"sku":"5352125","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ M","public_title":"Cobra Blood \/ M","options":["Cobra Blood","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424802","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428220287,"title":"Cobra Blood \/ S","option1":"Cobra Blood","option2":"S","option3":null,"sku":"5352124","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ S","public_title":"Cobra Blood \/ S","options":["Cobra Blood","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424796","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428253055,"title":"Cobra Blood \/ XL","option1":"Cobra Blood","option2":"XL","option3":null,"sku":"5352127","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"District+ 4 R10 LS - Cobra Blood \/ XL","public_title":"Cobra Blood \/ XL","options":["Cobra Blood","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424826","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428285823,"title":"Dark Star \/ L","option1":"Dark Star","option2":"L","option3":null,"sku":"5352118","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ L","public_title":"Dark Star \/ L","options":["Dark Star","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424734","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428318591,"title":"Dark Star \/ M","option1":"Dark Star","option2":"M","option3":null,"sku":"5352117","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ M","public_title":"Dark Star \/ M","options":["Dark Star","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424727","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428351359,"title":"Dark Star \/ S","option1":"Dark Star","option2":"S","option3":null,"sku":"5352116","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ S","public_title":"Dark Star \/ S","options":["Dark Star","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424710","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428384127,"title":"Dark Star \/ XL","option1":"Dark Star","option2":"XL","option3":null,"sku":"5352119","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ XL","public_title":"Dark Star \/ XL","options":["Dark Star","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424741","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428416895,"title":"Lunar Silver \/ L","option1":"Lunar Silver","option2":"L","option3":null,"sku":"5352122","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ L","public_title":"Lunar Silver \/ L","options":["Lunar Silver","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424772","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428449663,"title":"Lunar Silver \/ M","option1":"Lunar Silver","option2":"M","option3":null,"sku":"5352121","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ M","public_title":"Lunar Silver \/ M","options":["Lunar Silver","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424765","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428482431,"title":"Lunar Silver \/ S","option1":"Lunar Silver","option2":"S","option3":null,"sku":"5352120","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ S","public_title":"Lunar Silver \/ S","options":["Lunar Silver","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424758","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428515199,"title":"Lunar Silver \/ XL","option1":"Lunar Silver","option2":"XL","option3":null,"sku":"5352123","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ XL","public_title":"Lunar Silver \/ XL","options":["Lunar Silver","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424789","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}], templateName: 'product', dataKey: 'top-strip-promotion-badge', storefrontCurrency: 'GBP', storefrontCountry: 'GB', storefrontLanguage: 'en', shopLocale: 'en', shopDomain: 'projektride.co.uk', variantPrice: '270000', cartPrice: '0', selector: 'shopify-osm-AZkxmY3VSTnFmNnNiW__klarna_on_site_messaging_app_block_k6rYHt', topPadding: '0', bottomPadding: '0', }); } else { window.appBlockPlacements.push({ productVariants: [{"id":58205428154751,"title":"Cobra Blood \/ L","option1":"Cobra Blood","option2":"L","option3":null,"sku":"5352126","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ L","public_title":"Cobra Blood \/ L","options":["Cobra Blood","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424819","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428187519,"title":"Cobra Blood \/ M","option1":"Cobra Blood","option2":"M","option3":null,"sku":"5352125","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ M","public_title":"Cobra Blood \/ M","options":["Cobra Blood","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424802","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428220287,"title":"Cobra Blood \/ S","option1":"Cobra Blood","option2":"S","option3":null,"sku":"5352124","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Cobra Blood \/ S","public_title":"Cobra Blood \/ S","options":["Cobra Blood","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424796","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428253055,"title":"Cobra Blood \/ XL","option1":"Cobra Blood","option2":"XL","option3":null,"sku":"5352127","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"District+ 4 R10 LS - Cobra Blood \/ XL","public_title":"Cobra Blood \/ XL","options":["Cobra Blood","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424826","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428285823,"title":"Dark Star \/ L","option1":"Dark Star","option2":"L","option3":null,"sku":"5352118","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ L","public_title":"Dark Star \/ L","options":["Dark Star","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424734","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428318591,"title":"Dark Star \/ M","option1":"Dark Star","option2":"M","option3":null,"sku":"5352117","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ M","public_title":"Dark Star \/ M","options":["Dark Star","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424727","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428351359,"title":"Dark Star \/ S","option1":"Dark Star","option2":"S","option3":null,"sku":"5352116","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ S","public_title":"Dark Star \/ S","options":["Dark Star","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424710","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428384127,"title":"Dark Star \/ XL","option1":"Dark Star","option2":"XL","option3":null,"sku":"5352119","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Dark Star \/ XL","public_title":"Dark Star \/ XL","options":["Dark Star","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424741","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428416895,"title":"Lunar Silver \/ L","option1":"Lunar Silver","option2":"L","option3":null,"sku":"5352122","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ L","public_title":"Lunar Silver \/ L","options":["Lunar Silver","L"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424772","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428449663,"title":"Lunar Silver \/ M","option1":"Lunar Silver","option2":"M","option3":null,"sku":"5352121","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ M","public_title":"Lunar Silver \/ M","options":["Lunar Silver","M"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424765","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428482431,"title":"Lunar Silver \/ S","option1":"Lunar Silver","option2":"S","option3":null,"sku":"5352120","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ S","public_title":"Lunar Silver \/ S","options":["Lunar Silver","S"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424758","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":58205428515199,"title":"Lunar Silver \/ XL","option1":"Lunar Silver","option2":"XL","option3":null,"sku":"5352123","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"District+ 4 R10 LS - Lunar Silver \/ XL","public_title":"Lunar Silver \/ XL","options":["Lunar Silver","XL"],"price":270000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"197216424789","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}], templateName: 'product', shopLocale: 'en', dataKey: 'top-strip-promotion-badge', storefrontCurrency: 'GBP', storefrontCountry: 'GB', storefrontLanguage: 'en', shopDomain: 'projektride.co.uk', variantPrice: '270000', cartPrice: '0', selector: 'shopify-osm-AZkxmY3VSTnFmNnNiW__klarna_on_site_messaging_app_block_k6rYHt', topPadding: '0', bottomPadding: '0', }); } Equatorial Guinea (XAFCFA)
District+ 4 R10 Lowstep is a well-rounded city e-bike built for recreation, commuting, and everyday versatility. Its comfortable geometry and touchpoints pair with a powerful Bosch Performance Line Smart System motor and a 10-speed Shimano CUES drivetrain for smooth support on everything from city streets to weekend paths.Eritrea (GBP£)
Sierra Leone (SLLLe)
Technology Estonia (EUR€)
FrameEswatini (GBP£)
Slovenia (EUR€)

Frequently Asked Questions Premium Alpha Platinum Aluminium frame, top-load PowerPack, integrated cockpit routing, 135x5 mm QR

Ethiopia (ETBBr) Somalia (GBP£) Svalbard & Jan Mayen (GBP£)
Tires
Cassette