<!doctype html>
<html lang="de" data-theme="xtra" dir="ltr" class="no-js">
<head>
<meta name="google-site-verification" content="p6vV16dFNYlWvQeZ4DqyV5l40ji0pFS0REkRQRBI9lk" />
<script>window['otkConsent']={"ad_user_data":true,"ad_personalization":true,"ad_storage":true,"analytics_storage":true,"functionality_storage":true,"personalization_storage":true,"security_storage":true,"url_passthrough":true,"ads_data_redaction":true};function otValidateDefault(e) { const t = e[0] ?? !1, o = e[1] ?? !1; if (t && "consent" == t && o && "default" == o) { const t = e[2] ?? {}; if (Object.values(t).length) { const e = Object.keys(t), o = Object.values(t).some((e => "granted" == e)), n = e.includes("cst_default"); return !o || o && n } return !0 } if (t && "consent" == t && o && "update" == o) { return Object.keys(e[2]).includes("cst_update") } return !0 } function gtag() { dataLayer.push(arguments) } window.dataLayer = [], window.dataLayer.push = function (...e) { e.forEach((e => { if (otValidateDefault(e)) { const t = e[0] ?? !1, o = e[1] ?? !1, n = e[2] ?? []; if (t && "consent" == t && o && "update" == o && n && Object.keys(n).includes("cst_update")) { const { cst_update: t, ...o } = n; e[2] = { ...o }, Array.prototype.push.call(this, e) } if (t && "consent" == t && o && "default" == o && n && Object.keys(n).includes("cst_default")) { const { cst_default: t, ...o } = n; e[2] = { ...o }, Array.prototype.push.call(this, e) } else Array.prototype.push.call(this, e) } else console.log("gr d", e) })) }, window.OMG_CONSENT_EXTENSION_ENABLED = !1; const otConsentObserver = new MutationObserver((function (e) { for (const t of e) if ("childList" === t.type) { const e = Array.from(t.addedNodes).filter((e => "SCRIPT" === e.tagName && 1 === e.nodeType)); for (const t of e) { const e = t.getAttribute("src"); if (e && e.includes("consentik-ex")) return window.OMG_CONSENT_EXTENSION_ENABLED = !0, void otConsentObserver.disconnect() } } })); otConsentObserver.observe(document.documentElement, { childList: !0, subtree: !0 }), window.dataLayer = window.dataLayer || [], function (e, t) { e.otCookiesGCM = {}, e.otCookiesGCM = { url_passthrough: !1, ads_data_redaction: !1, config: { ad_user_data: "denied", ad_personalization: "denied", ad_storage: "denied", analytics_storage: "denied", functionality_storage: "denied", personalization_storage: "denied", security_storage: "denied", wait_for_update: 500, } }, gtag("consent", "default", e.otCookiesGCM.config), addEventListener("DOMContentLoaded", (function () { const o = e.otkConsent; let n = function (e, t) { const o = e + "=", n = decodeURIComponent(t.cookie), a = n.split(";"); for (let e = 0; e < a.length; e++) { let t = a[e]; for (; " " === t.charAt(0);)t = t.substring(1); if (0 === t.indexOf(o)) return t.substring(o.length, t.length) } return "" }("cookiesNotification", t), a = !0; if (n && e.OMG_CONSENT_EXTENSION_ENABLED) { n = JSON.parse(n); const t = n[0].categoriesSelected; a = !t.includes("marketing"), e.otCookiesGCM.config = { ad_user_data: o.ad_user_data && t.includes("marketing") ? "granted" : "denied", ad_personalization: o.ad_personalization && t.includes("marketing") ? "granted" : "denied", ad_storage: o.ad_storage && t.includes("marketing") ? "granted" : "denied", analytics_storage: o.analytics_storage && t.includes("analytics") ? "granted" : "denied", functionality_storage: o.functionality_storage && t.includes("necessary") ? "granted" : "denied", personalization_storage: o.personalization_storage && t.includes("preferences") ? "granted" : "denied", security_storage: o.security_storage && t.includes("necessary") ? "granted" : "denied" }, gtag("consent", "update", { ...e.otCookiesGCM.config, cst_update: "granted" }) } e.otCookiesGCM.ads_data_redaction = e.otkConsent.ads_data_redaction && a, e.otCookiesGCM.url_passthrough = e.otkConsent.url_passthrough, e.otCookiesGCM.ads_data_redaction && gtag("set", "ads_data_redaction", e.otCookiesGCM.ads_data_redaction), e.otCookiesGCM.url_passthrough && gtag("set", "url_passthrough", e.otCookiesGCM.url_passthrough) })) }(window, document);</script><script>
window.dataLayer = window.dataLayer || [];
window.rsProducts = window.rsProducts || {};
window.dataLayer.push({
rs_context: 'storefront',
template: 'index',
page_type: "index",
currency: "CHF",
customer_logged_in: false
});
</script>
<script>
(function () {
if (window.__rsDataLayerHooks) return; // Idempotenz: Hooks nie doppelt installieren (doppelte Events)
window.__rsDataLayerHooks = true;
var CUR = "CHF";
var CART_RE = /\/cart\/(add|change|update)(\.js)?(\?|$)|\/cart\.js(\?|$)/;
// window.dataLayer zur Laufzeit aufloesen (Consentik setzt das Array beim Laden neu)
function push(ev) {
var dl = window.dataLayer = window.dataLayer || [];
ev.rs_context = 'storefront';
dl.push({ ecommerce: null });
dl.push(ev);
}
function money(cents) { return Math.round(Number(cents) || 0) / 100; }
function sum(items) {
return Math.round(items.reduce(function (s, i) { return s + (i.price || 0) * (i.quantity || 1); }, 0) * 100) / 100;
}
/* ---------- Cart: add_to_cart / remove_from_cart ---------- */
// Baut ein GA4-Item aus einer /cart.js-Line (add.js-Antwort oder cart.items) + Enrichment-Map aus Liquid.
function itemFromLine(li) {
var e = (window.rsProducts || {})[li.product_id] || {};
var it = {
item_id: li.sku || String(li.product_id),
item_name: li.product_title,
price: money(li.price),
quantity: li.quantity || 1
};
if (li.product_type) it.item_category = li.product_type;
if (li.variant_title) it.item_variant = li.variant_title;
if (e.brand) it.item_brand = e.brand;
if (e.team) it.item_category3 = e.team;
if (e.season) it.item_category4 = e.season;
if (e.condition) it.item_category5 = e.condition;
if (e.jersey_type) it.jersey_type = e.jersey_type;
return it;
}
var snapshot = window.rsCart || null; // { variant_id: line }
function snap(cart) {
var m = {};
(cart.items || []).forEach(function (li) { m[li.variant_id] = li; });
snapshot = m;
}
function removedSince(prev, cart) {
var now = {}, out = [];
(cart.items || []).forEach(function (li) { now[li.variant_id] = li; });
Object.keys(prev || {}).forEach(function (vid) {
var p = prev[vid], n = now[vid];
var dq = (p.quantity || 0) - (n ? n.quantity : 0);
if (dq > 0) {
var copy = {}; for (var k in p) copy[k] = p[k]; copy.quantity = dq;
out.push(itemFromLine(copy));
}
});
return out;
}
function onCartResponse(url, json) {
if (!json || typeof json !== 'object') return;
if (/\/cart\/add(\.js)?(\?|$)/.test(url)) {
var lines = json.items ? json.items : [json];
if (!lines.length || !lines[0].product_id) return;
var items = lines.map(itemFromLine);
push({ event: 'add_to_cart', ecommerce: { currency: CUR, value: sum(items), items: items } });
if (!snapshot) snapshot = {}; // leerer Warenkorb beim Seitenaufruf: Snapshot jetzt anlegen, sonst kein remove-Diff moeglich
lines.forEach(function (li) {
var p = snapshot[li.variant_id];
if (p) { var c = {}; for (var k in p) c[k] = p[k]; c.quantity = (p.quantity || 0) + (li.quantity || 1); snapshot[li.variant_id] = c; }
else snapshot[li.variant_id] = li;
});
} else if (/\/cart\/(change|update)(\.js)?(\?|$)/.test(url) && json.items) {
if (snapshot) {
var rem = removedSince(snapshot, json);
if (rem.length) push({ event: 'remove_from_cart', ecommerce: { currency: CUR, value: sum(rem), items: rem } });
}
snap(json);
} else if (json.items && json.token) {
snap(json); // /cart.js
}
}
// fetch-Hook
if (window.fetch) {
var _fetch = window.fetch;
window.fetch = function (input, init) {
var url = typeof input === 'string' ? input : (input && input.url) || '';
var p = _fetch.apply(this, arguments);
if (CART_RE.test(url)) {
p.then(function (r) {
try { r.clone().json().then(function (j) { try { onCartResponse(url, j); } catch (e) {} }).catch(function () {}); } catch (e) {}
}).catch(function () {});
}
return p;
};
}
// XHR-Hook (Theme-Side-Cart / jQuery)
var _open = XMLHttpRequest.prototype.open, _send = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.open = function (m, u) { this._rsUrl = String(u || ''); return _open.apply(this, arguments); };
XMLHttpRequest.prototype.send = function () {
var x = this;
if (x._rsUrl && CART_RE.test(x._rsUrl)) {
x.addEventListener('load', function () {
try { onCartResponse(x._rsUrl, JSON.parse(x.responseText)); } catch (e) {}
});
}
return _send.apply(this, arguments);
};
/* ---------- Searchanise: view_item_list / select_item ---------- */
// Searchanise rendert Collection- und Suchseiten client-seitig (JSONP) und feuert jQuery-Events auf document.
// DataRequestEnd -> ['results', params, result]; ProductSrwClicked -> [el, item, query]. Bindung via Searchanise.$.
var lastParams = null;
function listCtx(params) {
params = params || {};
if (params.q) return { id: 'search', name: 'Suche: ' + params.q };
var col = params.collection;
if (col && col !== 'all') {
var h1 = document.querySelector('h1');
return { id: 'collection_' + col, name: (h1 && h1.textContent.trim()) || col };
}
return { id: 'collection_all', name: 'Alle Produkte' };
}
function apiItem(it, ctx, index) {
var v = (it.shopify_variants || [])[0] || {};
var o = {
item_id: it.product_code || v.sku || String(it.product_id),
item_name: it.title,
price: parseFloat(it.price) || 0,
quantity: 1,
item_list_id: ctx.id,
item_list_name: ctx.name
};
if (typeof index === 'number') o.index = index;
if (v.title) o.item_variant = v.title;
var e = (window.rsProducts || {})[it.product_id];
if (e && e.brand) o.item_brand = e.brand;
return o;
}
function bindSearchanise() {
var S = window.Searchanise;
if (!(S && S.$)) return false;
var $ = S.$;
// Nur auf Searchanise.$ binden: triggerEvent feuert zusaetzlich auf window.jQuery - doppelt binden = doppelt zaehlen.
$(document).on('Searchanise.DataRequestEnd', function (e, type, params, result) {
if (type !== 'results' || !result || !result.items || !result.items.length) return;
lastParams = params;
var ctx = listCtx(params);
var start = parseInt(result.startIndex || 0, 10) || 0;
var items = result.items.map(function (it, i) { return apiItem(it, ctx, start + i); });
push({ event: 'view_item_list', item_list_id: ctx.id, item_list_name: ctx.name,
ecommerce: { item_list_id: ctx.id, item_list_name: ctx.name, items: items } });
});
$(document).on('Searchanise.ProductSrwClicked', function (e, el, item, query) {
if (!item) return;
var ctx = listCtx(query ? { q: query } : lastParams);
push({ event: 'select_item', item_list_id: ctx.id, item_list_name: ctx.name,
ecommerce: { item_list_id: ctx.id, item_list_name: ctx.name, items: [apiItem(item, ctx)] } });
});
return true;
}
(function poll(n) {
if (bindSearchanise()) return;
if (n < 400) setTimeout(function () { poll(n + 1); }, 50); // bis 20 s auf das Widget warten
})(0);
})();
</script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Original Retro-Fussballtrikots kaufen | RetroShirts.ch</title><meta name="description" content="Originale Retro- & Vintage-Fussballtrikots: handverlesen, echt geprüft, meist Einzelstücke. Von Clubs & Nationen - online und im Store in Zürich."><meta name="theme-color" content="">
<meta name="MobileOptimized" content="320">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<style>/* Consent-Banner ueber schwebendem Review-Badge halten (z-index-Konflikt) */#cookies-wrapper.cst-position-full-bottom{z-index:2147483646!important;}/* Cookie-Reopener nach unten-rechts (Consentik setzt faelschlich left:50%) */.cst-reopener-wrapper.cst-position-bottom-right{left:auto!important;right:16px!important;transform:none!important;bottom:16px!important;}.cst-reopener-wrapper.cst-position-bottom-right .cst-cookie-btn-text{margin-bottom:0!important;}</style>
<style>/* Searchanise Search & Filter: Groessen-Kacheln einheitlich gross (sonst werden lange Labels wie "Kids XL" abgeschnitten), Produktkachel-Texte zentriert, Filter-Anzahl rechtsbuendig in Klammern, Such-Tab-Zaehler normal statt hochgestellt in Klammern */
ul.snize-product-size-filter{display:grid!important;grid-template-columns:repeat(3,68px)!important;justify-content:start!important;gap:8px!important;height:auto!important;max-height:none!important;overflow:visible!important;}
ul.snize-product-size-filter::before,ul.snize-product-size-filter::after{content:none!important;display:none!important;}
ul.snize-product-size-filter>li{float:none!important;width:auto!important;height:auto!important;margin:0!important;padding:0!important;list-style:none!important;}
ul.snize-product-size-filter>li>label{display:block!important;width:100%!important;margin:0!important;}
ul.snize-product-size-filter .snize-size-filter-checkbox{padding:0!important;display:block!important;width:100%!important;height:auto!important;overflow:visible!important;}
ul.snize-product-size-filter .snize-size-filter-checkbox span,ul.snize-product-size-filter .needsclick{display:flex!important;align-items:center!important;justify-content:center!important;box-sizing:border-box!important;width:100%!important;height:34px!important;padding:0 4px!important;white-space:nowrap!important;overflow:visible!important;text-overflow:clip!important;line-height:normal!important;}
li.snize-product .snize-title,li.snize-product .snize-attribute,li.snize-product .snize-price{display:block!important;width:100%!important;text-align:center!important;}
li.snize-product .snize-price-list{width:100%!important;justify-content:center!important;text-align:center!important;}
ul.snize-product-filters-list li>label{position:relative!important;display:flex!important;align-items:center!important;}
ul.snize-product-filters-list li>label>span.needsclick{flex:1 1 auto!important;min-width:0!important;padding-right:30px!important;}
ul.snize-product-filters-list .snize-filter-variant-count{position:absolute!important;right:0!important;top:50%!important;transform:translateY(-50%)!important;margin:0!important;float:none!important;font-size:inherit!important;line-height:normal!important;vertical-align:baseline!important;}
ul.snize-product-filters-list .snize-filter-variant-count::before{content:"("!important;}
ul.snize-product-filters-list .snize-filter-variant-count::after{content:")"!important;}
.snize-product-filters-search input.snize-filter-input{width:100%!important;box-sizing:border-box!important;}
.snize-products-tab-total,.snize-categories-tab-total{font-size:inherit!important;vertical-align:baseline!important;line-height:inherit!important;margin-left:4px!important;}
.snize-products-tab-total::before,.snize-categories-tab-total::before{content:"("!important;}
.snize-products-tab-total::after,.snize-categories-tab-total::after{content:")"!important;}
/* Bugfix: der "Filter zuruecksetzen"-Button (Searchanise) erbt die Theme-Button-Fuellung (::before, position:absolute, inset:0, background:var(--secondary_bg)). Da der Button position:static ist, spannt das inset:0-Pseudo bis zum naechsten positionierten Vorfahren (voller Seitencontainer, ~9200px) -> burgunderroter Vollflaechen-Layer hinter dem Collection-Inhalt, nur auf schmalen Screens. Pseudo hier neutralisieren. */
.snize-product-filters-reset-all::before,.snize-product-filters-reset-all::after{content:none!important;display:none!important;}
/* Collection-Notifier-Widget (Soldout-PDP, updates.retroshirts.ch): Toggle-Buttons "Team / Nur dieses Trikot" und "E-Mail / WhatsApp" vom globalen Theme-Button-Styling entkoppeln. Xtra gibt jedem button float/min-width, background:none und die Burgundy-Fuellung per ::before - der inaktive Toggle (Widget: weiss, color:inherit, ohne !important) wurde dadurch burgundy-auf-burgundy. Inaktiv = Outline (weiss/burgundy), aktiv bleibt wie vom Widget gesetzt. Der grosse Abonnieren-Button (.cn-sw-btn) ist bewusst nicht betroffen. */
[data-soldout-widget] .cn-sw-toggle-btn::before,[data-soldout-widget] .cn-sw-toggle-btn::after,[data-soldout-widget] .cn-sw-ch-btn::before,[data-soldout-widget] .cn-sw-ch-btn::after{content:none!important;display:none!important;}
[data-soldout-widget] .cn-sw-toggle-btn,[data-soldout-widget] .cn-sw-ch-btn{float:none!important;min-width:0!important;margin:0!important;box-shadow:none!important;}
[data-soldout-widget] .cn-sw-toggle-btn:not(.cn-sw-active){background:#fff!important;color:var(--secondary_bg_btn,#640b22)!important;border:1px solid var(--secondary_bg_btn,#640b22)!important;}
[data-soldout-widget] .cn-sw-ch-btn:not(.cn-sw-active){background:transparent!important;color:var(--secondary_bg_btn,#640b22)!important;opacity:.7!important;}
/* aktiv: Widget-Config hat Blau als Buttonfarbe, bisher vom Theme-::before burgundy uebermalt - ohne ::before explizit auf Theme-Buttonfarbe setzen */
[data-soldout-widget] .cn-sw-toggle-btn.cn-sw-active,[data-soldout-widget] .cn-sw-ch-btn.cn-sw-active{background:var(--secondary_bg_btn,#640b22)!important;border-color:var(--secondary_bg_btn,#640b22)!important;color:#fff!important;opacity:1!important;}</style>
<meta name="msapplication-config" content="//retroshirts.ch/cdn/shop/t/60/assets/browserconfig.xml?v=52024572095365081671782384560">
<link rel="canonical" href="https://retroshirts.ch/">
<link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
<link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><link media="screen" rel="stylesheet" href="//retroshirts.ch/cdn/shop/t/60/assets/screen.min.css?v=12664562431834921951783934484" id="core-css">
<link rel="preload" as="font" href="//retroshirts.ch/cdn/fonts/figtree/figtree_n6.9d1ea52bb49a0a86cfd1b0383d00f83d3fcc14de.woff2" type="font/woff2" crossorigin>
<link rel="preload" as="font" href="//retroshirts.ch/cdn/fonts/anonymous_pro/anonymouspro_n4.f8892cc1cfa3d797af6172c8eeddce62cf610e33.woff2" type="font/woff2" crossorigin>
<link rel="preload" as="font" href="//retroshirts.ch/cdn/shop/t/60/assets/xtra.woff2?v=39519511259337068301782384561" crossorigin>
<noscript><link rel="stylesheet" href="//retroshirts.ch/cdn/shop/t/60/assets/async-menu.css?v=36590982183417486461782384562"></noscript><link rel="icon" href="//retroshirts.ch/cdn/shop/files/brandmark-design-512x0_1_37b1659d-ca33-433f-95ee-a159213df223.png?crop=center&height=32&v=1692774723&width=32" type="image/png">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#333333">
<link rel="apple-touch-icon" href="apple-touch-icon.png"><link rel="manifest" href="//retroshirts.ch/cdn/shop/t/60/assets/manifest.json?v=69675086569049310631782384556">
<link rel="preconnect" href="//cdn.shopify.com"><link media="screen" rel="stylesheet" href="//retroshirts.ch/cdn/shop/t/60/assets/screen-settings.css?v=174341028211752803621782385658" id="custom-css">
<script>document.documentElement.classList.remove('no-js'); document.documentElement.classList.add('js');</script>
<meta name="msapplication-config" content="//retroshirts.ch/cdn/shop/t/60/assets/browserconfig.xml?v=52024572095365081671782384560">
<meta property="og:title" content="Original Retro-Fussballtrikots kaufen">
<meta property="og:type" content="website">
<meta property="og:description" content="Originale Retro- & Vintage-Fussballtrikots: handverlesen, echt geprüft, meist Einzelstücke. Von Clubs & Nationen - online und im Store in Zürich.">
<meta property="og:site_name" content="RetroShirts.ch - Originale Fussballtrikots">
<meta property="og:url" content="https://retroshirts.ch/">
<meta property="og:image" content="//retroshirts.ch/cdn/shop/files/logo-800x400_c90503a0-2578-4892-85a9-680cfabc95b9.jpg?crop=center&height=500&v=1692775190&width=600">
<meta name="twitter:title" content="Original Retro-Fussballtrikots kaufen">
<meta name="twitter:description" content="Originale Retro- & Vintage-Fussballtrikots: handverlesen, echt geprüft, meist Einzelstücke. Von Clubs & Nationen - online und im Store in Zürich.">
<meta name="twitter:site" content="RetroShirts.ch - Originale Fussballtrikots">
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"url": "https://retroshirts.ch/",
"name": "RetroShirts.ch - Originale Fussballtrikots",
"legalName": "RetroShirts.ch - Originale Fussballtrikots",
"description": "Originale Retro- & Vintage-Fussballtrikots: handverlesen, echt geprüft, meist Einzelstücke. Von Clubs & Nationen - online und im Store in Zürich.","contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer service",
"telephone": "+41766511219"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "Badenerstrasse 280",
"addressLocality": "Zürich",
"postalCode": "8004",
"addressCountry": "CH"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://retroshirts.ch/",
"name": "RetroShirts.ch - Originale Fussballtrikots",
"description": "Originale Retro- & Vintage-Fussballtrikots: handverlesen, echt geprüft, meist Einzelstücke. Von Clubs & Nationen - online und im Store in Zürich."
}
</script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="ivqyyaguro29p5rxrh8gvipkke0mf8">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/58542096407/digital_wallets/dialog">
<meta id="in-context-paypal-metadata" data-shop-id="58542096407" data-venmo-supported="false" data-environment="production" data-locale="de_DE" data-paypal-v4="true" data-currency="CHF">
<link rel="ucp" href="/.well-known/ucp" version="2026-08-25"><script async="async" src="/checkouts/internal/preloads.js?locale=de-CH"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":58542096407,"countryCode":"CH","currencyCode":"CHF","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/58542096407","merchantName":"RetroShirts.ch - Originale Fussballtrikots","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex"],"total":{"type":"pending","label":"RetroShirts.ch - Originale Fussballtrikots","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"7e826a70d14f09716c0a354c53b62a6d","betas":["rich-media-storefront-analytics"],"domain":"retroshirts.ch","predictiveSearch":true,"shopId":58542096407,"locale":"de"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "retroshirtsch.myshopify.com";
Shopify.locale = "de";
Shopify.currency = {"active":"CHF","rate":"1.0"};
Shopify.country = "CH";
Shopify.theme = {"name":"retroshirts-theme\/main","id":196418765183,"schema_name":"Xtra","schema_version":"3.3.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "retroshirts.ch/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";
Shopify.SignInWithShop = Shopify.SignInWithShop || {};
Shopify.SignInWithShop.User = Shopify.SignInWithShop.User || {};
Shopify.SignInWithShop.User.recognized = false;</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
window.Shopify = window.Shopify || {};
window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
window.Shopify.SignInWithShop.assetMetrics = { sampleRate: 0.25 };
window.Shopify.SignInWithShop.eligible = true;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="https://cdn.shopify.com/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js"></script>
<script type="module">
await import("https://cdn.shopify.com/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js");
window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});
</script>
<script>
window.Shopify = window.Shopify || {};
if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
window.Shopify.featureAssets['shop-js'] = {"avatar":["modules/v2/loader.avatar.de.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.de.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.de.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.de.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.de.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.de.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.de.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.de.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.de.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.de.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.de.esm.js"],"listener":["modules/v2/loader.listener.de.esm.js"],"pay-button":["modules/v2/loader.pay-button.de.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.de.esm.js"],"shop-button":["modules/v2/loader.shop-button.de.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.de.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.de.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.de.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.de.esm.js"],"shop-login":["modules/v2/loader.shop-login.de.esm.js"],"shop-toast-manager":["modules/v2/loader.shop-toast-manager.de.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.de.esm.js"]};
</script>
<script>(function() {
var isLoaded = false;
function asyncLoad() {
if (isLoaded) return;
isLoaded = true;
var urls = ["https:\/\/dyuszqdfuyvqq.cloudfront.net\/packs\/mf_embed_v8.js?mf_token=30ea2d9a-12ea-4f4a-9d8f-f2b2be9cacc1\u0026shop=retroshirtsch.myshopify.com","\/\/cdn.shopify.com\/proxy\/f547018d723c603bf447936df203f7edb512e92af7c1d68b07bf2949ef232c7c\/d1639lhkj5l89m.cloudfront.net\/js\/storefront\/uppromote.js?shop=retroshirtsch.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('load', asyncLoad, false);
}
})();</script>
<script id="__st">var __st={"a":58542096407,"offset":7200,"reqid":"30cae968-3239-4b30-806f-2074f1b34b48-1790365376","pageurl":"retroshirts.ch\/","u":"d9aaecbd59b2","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.3.iife.js',D={infoText:'Durch hCaptcha geschützt',privacyText:'Datenschutz',termsText:'Allgemeine Geschäftsbedingungen'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//retroshirts.ch/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script>(function () {var userAgent = navigator.userAgent;var platform = navigator.platform;var maxTouchPoints = navigator.maxTouchPoints || 0;var isIOS = /iPad|iPhone|iPod/.test(platform) || (platform === 'MacIntel' && maxTouchPoints > 1);var isMacSafari = platform.indexOf('Mac') === 0 && /Safari/.test(userAgent) && !/Chrome|Chromium|CriOS|FxiOS|Edg|OPR|Android/.test(userAgent);var isAppleSafari = isIOS || isMacSafari;if (isAppleSafari) {fetch('/sf_private_access_tokens' + location.search).catch(function () {});}function browserMajorVersion(pattern) {var match = userAgent.match(pattern);return match ? parseInt(match[1], 10) : null;}function shouldLoadAutosizesPolyfill() {if (!window.PerformanceObserver?.supportedEntryTypes?.includes('paint')) {return false;}var chromeVersion = browserMajorVersion(/Chrome\/(\d+)/);if (chromeVersion !== null) {return chromeVersion < 126;}var firefoxVersion = browserMajorVersion(/Firefox\/(\d+)/);if (firefoxVersion !== null) {return firefoxVersion < 150;}var safariVersion = isAppleSafari ? browserMajorVersion(/Version\/(\d+).*Safari\//) : null;if (safariVersion !== null) {return safariVersion < 27;}return true;}if (shouldLoadAutosizesPolyfill()) {var autosizesScript = document.createElement('script');autosizesScript.async = true;autosizesScript.crossOrigin = 'anonymous';autosizesScript.src = "//retroshirts.ch/cdn/shopifycloud/storefront/assets/storefront/autosizes-84416378.js";(document.head || document.documentElement).appendChild(autosizesScript);}window.ShopifyAnalytics = window.ShopifyAnalytics || {};window.ShopifyAnalytics.performance = window.ShopifyAnalytics.performance || {};(function () {var LONG_FRAME_THRESHOLD = 50;var longAnimationFrames = [];var activeRafId = null;function collectLongFrames() {var previousTime = null;function rafMonitor(now) {if (activeRafId === null) {return;}var delta = now - previousTime;if (delta > LONG_FRAME_THRESHOLD) {longAnimationFrames.push({startTime: previousTime,endTime: now,});}previousTime = now;activeRafId = requestAnimationFrame(rafMonitor);}previousTime = performance.now();activeRafId = requestAnimationFrame(rafMonitor);}if (!window.PerformanceObserver?.supportedEntryTypes?.includes('long-animation-frame')) {collectLongFrames();var timeoutId = setTimeout(function () {cancelAnimationFrame(activeRafId);}, 10000);window.ShopifyAnalytics.performance.getLongAnimationFrames = function (stopCollection) {if (stopCollection === undefined) {stopCollection = false;}if (stopCollection) {clearTimeout(timeoutId);cancelAnimationFrame(activeRafId);}return longAnimationFrames;};}})();})();</script><script id="shopify-origin-trials" async="async" integrity="sha256-qJbe/jEZBHtr5W/BlA2cKAz3vkXu6vJQyLjgvgCC86g=" src="//cdn.shopify.com/shopifycloud/storefront/assets/storefront/origin_trials-318ab40a.js" crossorigin="anonymous" onload="window.__shopifyOriginTrialsDone = true" onerror="window.__shopifyOriginTrialsDone = true"></script>
<script>
window.Shopify = window.Shopify || {};
window.Shopify.MCP = window.Shopify.MCP || {};
window.Shopify.MCP.enabled = true;
window.Shopify.MCP.shop = "retroshirtsch.myshopify.com";
window.Shopify.MCP.mcpEndpoint = "https:\/\/retroshirts.ch\/api\/mcp";
window.Shopify.MCP.tools = [{"name":"search_shop_policies_and_faqs","description":"Used to get facts about the stores policies, products, or services.\nSome examples of questions you can ask are:\n - What is your return policy?\n - What is your shipping policy?\n - What is your phone number?\n - What are your hours of operation?\"\n","inputSchema":{"$schema":"https:\/\/json-schema.org\/draft\/2020-12\/schema","type":"object","properties":{"query":{"type":"string","description":"A natural language query."},"context":{"type":"string","description":"Additional information about the request such as user demographics, mood, location, or other relevant details that could help in tailoring the response appropriately."}},"required":["query"]}}];
</script>
<script>(()=>{var d="shopify:webmcp_adapter_loaded",n=Symbol.for("shopify.webmcp_adapter_loading");function s(c,a,{win:r=window,doc:o=document}={}){function p(){try{return r.localStorage.getItem(d)==="true"}catch{return!1}}function l(){try{r.localStorage.setItem(d,"true")}catch{}}function u(){return typeof(o.modelContext||r.navigator?.modelContext)?.registerTool=="function"}function f(){if(r[n]||!u())return;let t=o.head||o.getElementsByTagName("head")[0];if(!t)return;let e=o.createElement("script");e.type="module",e.crossOrigin="anonymous",a&&(e.integrity=a),e.src=c,e.addEventListener("load",l,{once:!0}),e.addEventListener("error",()=>{r[n]=!1},{once:!0}),t.appendChild(e),r[n]=!0}function _(t){let e=o.getElementById("shopify-origin-trials");if(!e||r.__shopifyOriginTrialsDone){t();return}e.addEventListener("load",t,{once:!0}),e.addEventListener("error",t,{once:!0})}function i(){_(()=>r.setTimeout(f,0))}function m(){o.addEventListener("DOMContentLoaded",i,{once:!0})}p()?i():m()}s("\/\/retroshirts.ch\/cdn\/shopifycloud\/storefront\/assets\/storefront\/webmcp-c6b62ece.js","sha256-ke4DDuBjdvea3vxLWxHc9E9nq8zihuG4IfYEGbb77ys=");})();
</script>
<script id="shopify-cfh-end">window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<!-- BEGIN app block: shopify://apps/searchanise-search-filter/blocks/app-embed-v2/d8f24ada-02b1-458a-bbeb-5bf16d5c921e -->
<script async src="https://searchanise-ef84.kxcdn.com/widgets/shopify/init.js?a=5s7y5N3m0A"></script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/consentik-cookie/blocks/omega-cookies-notification/13cba824-a338-452e-9b8e-c83046a79f21 --><script>
window.otCKAppData = {};
var otCKRequestDataInfo = {};
var otCKRootLink = '';
var otCKSettings = {};
window.OCBCookies = []
window.OCBCategories = []
window['otkConsent'] = window['otkConsent'] || {};
</script>
<script>
function __remvoveCookie(name) {
document.cookie = name + '=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
}
__remvoveCookie('__cross_accepted');
</script>
<script>
let otCKEnableDebugger = 0;
</script>
<script>
window.otResetConsentData = {"oldKey":null,"current":"_consentik_cookie","consent":[]};
</script>
<script>
window.cstCookiesData = {"rootLink":"https://apps.consentik.com/consentik","cookies":[{"id":14490069,"cookie_status":true,"cookie_name":"_ab","cookie_description":"Used in connection with access to admin.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490070,"cookie_status":true,"cookie_name":"_secure_session_id","cookie_description":"Used in connection with navigation through a storefront.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490071,"cookie_status":true,"cookie_name":"Cart","cookie_description":"Used in connection with shopping cart.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490072,"cookie_status":true,"cookie_name":"cart_currency","cookie_description":"Used in connection with shopping cart.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490073,"cookie_status":true,"cookie_name":"cart_sig","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490074,"cookie_status":true,"cookie_name":"cart_ts","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490075,"cookie_status":true,"cookie_name":"cart_ver","cookie_description":"Used in connection with shopping cart.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490076,"cookie_status":true,"cookie_name":"checkout","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490077,"cookie_status":true,"cookie_name":"checkout_token","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490078,"cookie_status":true,"cookie_name":"cookietest","cookie_description":"Used in connection with navigation through a storefront.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490079,"cookie_status":true,"cookie_name":"master_device_id","cookie_description":"Used in connection with merchant login.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490080,"cookie_status":true,"cookie_name":"previous_checkout_token","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490081,"cookie_status":true,"cookie_name":"previous_step","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490082,"cookie_status":true,"cookie_name":"remember_me","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490083,"cookie_status":true,"cookie_name":"Secret","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490084,"cookie_status":true,"cookie_name":"Secure_customer_sig","cookie_description":"Used in connection with customer login.\n","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490085,"cookie_status":true,"cookie_name":"storefront_digest","cookie_description":"Used in connection with customer login.\n","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490086,"cookie_status":true,"cookie_name":"_shopify_country","cookie_description":"Used in connection with checkout.\n","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490087,"cookie_status":true,"cookie_name":"_shopify_m","cookie_description":"Used for managing customer privacy settings.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490088,"cookie_status":true,"cookie_name":"_shopify_tm","cookie_description":"Used for managing customer privacy settings.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490089,"cookie_status":true,"cookie_name":"_shopify_tw","cookie_description":"Used for managing customer privacy settings.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490090,"cookie_status":true,"cookie_name":"_storefront_u","cookie_description":"Used to facilitate updating customer account information.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490091,"cookie_status":true,"cookie_name":"_tracking_consent","cookie_description":"Tracking preferences.\n","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490092,"cookie_status":true,"cookie_name":"tracked_start_checkout","cookie_description":"Used in connection with checkout.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490093,"cookie_status":true,"cookie_name":"_Brochure_session","cookie_description":"Used in connection with browsing through site.","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490094,"cookie_status":true,"cookie_name":"identity_state","cookie_description":"Used in connection with customer authentication","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490095,"cookie_status":true,"cookie_name":"identity_state_<<id>>","cookie_description":"Used in connection with customer authentication","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490096,"cookie_status":true,"cookie_name":"identity_customer_account_number","cookie_description":"Used in connection with customer authentication","category_id":51882,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490097,"cookie_status":true,"cookie_name":"_consentik_cookie_*","cookie_description":"Used to save customer's consent","category_id":51883,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490098,"cookie_status":true,"cookie_name":"cookiesNotification","cookie_description":"Used to save customer's consent","category_id":51883,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490099,"cookie_status":true,"cookie_name":"_landing_page","cookie_description":"Track landing pages.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490100,"cookie_status":true,"cookie_name":"_orig_referrer","cookie_description":"Track landing pages.\n","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490101,"cookie_status":true,"cookie_name":"_s","cookie_description":"Shopify analytics.\n","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490102,"cookie_status":true,"cookie_name":"_shopify_d","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490103,"cookie_status":true,"cookie_name":"_shopify_fs","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490104,"cookie_status":true,"cookie_name":"_shopify_s","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490105,"cookie_status":true,"cookie_name":"_shopify_sa_p","cookie_description":"Shopify analytics relating to marketing & referrals.\n","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490106,"cookie_status":true,"cookie_name":"_shopify_sa_t","cookie_description":"Shopify analytics relating to marketing & referrals.\n","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490107,"cookie_status":true,"cookie_name":"_shopify_y","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490108,"cookie_status":true,"cookie_name":"_y","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490109,"cookie_status":true,"cookie_name":"_shopify_uniq","cookie_description":"Track landing pages.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490110,"cookie_status":true,"cookie_name":"ab_test_*","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490111,"cookie_status":true,"cookie_name":"ki_r","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490112,"cookie_status":true,"cookie_name":"ki_t","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490113,"cookie_status":true,"cookie_name":"customer_auth_provider","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null},{"id":14490114,"cookie_status":true,"cookie_name":"customer_auth_session_created_at","cookie_description":"Shopify analytics.","category_id":51885,"platform":null,"domain":null,"retention_period":null,"privacy_link":null,"wildcard":false,"expired_time":null,"type":null}],"category":[{"id":51882,"category_status":true,"category_name":"Necessary","category_description":"This website is using cookies to analyze our traffic, personalize content and/or ads, to provide video content. We also share information about your use of our site with our analytics and advertising partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.","is_necessary":true,"name_consent":"necessary"},{"id":51883,"category_status":true,"category_name":"Preferences","category_description":"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in.","is_necessary":false,"name_consent":"preferences"},{"id":51884,"category_status":true,"category_name":"Marketing","category_description":"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers.","is_necessary":false,"name_consent":"marketing"},{"id":51885,"category_status":true,"category_name":"Analytics","category_description":"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.","is_necessary":false,"name_consent":"analytics"}]};
</script>
<script>
window.cstMultipleLanguages = {"rootLink":"https://apps.consentik.com/consentik","config":{},"cookieInformation":[{"trigger":"Cookies detail","name":"Name","provider":"Provider","domain":"Domain","path":"Path","type":"Type","retention":"Retention","purpose":"Purpose","language":"en"}],"bannerText":[],"cookies":[],"categories":[],"privacyPopup":[]};
</script>
<script>
window.otCKAppData = {"uId":256704,"lowestId":258194,"terms":["gpc","cookie_banner","preference_popup","standard_categories","customize_appearance","data_sale_opt_out","policy_generator","auto_scan","show_preference_btn","custom_text_and_color","built_in_themes","custom_banner_width","show_cookie_icon","show_dismiss_btn","google_policy","customer_privacy","show_close_icon","setup_mode","allow_accept_all","preference_design","display_restriction","quick_cookie_selector","admin_mode","gcm_v2","no_brand_mark","multiple_language","auto_block_script","web_pixel","auto_fit_theme","delay_banner","auto_transfer_cookie","reopen_btn","preference_config","glass_effect","cookie_life_time","cookie_policy_generator","data_request","consent_log","add_link_footer","standard_cookies","show_homepage_only","show_dismiss_popup","margin_from_age","layout_side","sort_button","category_purpose","reopen_config","custom_cookie_info_text","multiple_center","upload_icon","leave_site"],"consentMode":{"have_gtm":true,"gtm":null,"security_storage":true,"functionality_storage":true,"personalization_storage":true,"ad_user_data":true,"ad_personalization":true,"ad_storage":true,"analytics_storage":true,"ads_data_redaction":true,"url_passthrough":true,"enable_gcm":true,"use_template":false,"keep_gtm_setup":false},"consentModeRegions":null,"smartGeo":{"enabled":false,"rulesetVersion":"2026-06-17","defaultMode":"opt-in","regionsByMode":{"opt-out":["SG","MX","US-AL","US-AK","US-AZ","US-AR","US-CA","US-CO","US-CT","US-DE","US-FL","US-GA","US-HI","US-ID","US-IL","US-IN","US-IA","US-KS","US-KY","US-LA","US-ME","US-MD","US-MA","US-MI","US-MN","US-MS","US-MO","US-MT","US-NE","US-NV","US-NH","US-NJ","US-NM","US-NY","US-NC","US-ND","US-OH","US-OK","US-OR","US-PA","US-RI","US-SC","US-SD","US-TN","US-TX","US-UT","US-VT","US-VA","US-WA","US-DC","US-WV","US-WI","US-WY"],"notice":["JP","AU","CX","CC","NZ","NF"]},"overriddenRegions":[]},"settings":{"id":40742,"shop":"retroshirtsch.myshopify.com","shop_id":"58542096407","message":"Dank Cookies können wir Webseite und Werbung optimieren. Dürfen wir bei dir Cookies speichern?","submit_text":"Ja klar","info_text":"Datenschutzerklärung ansenhen","privacy_link":"https://retroshirts.ch/pages/datenschutzerklarung","dismiss_text":"Nein danke","prefrences_text":"Custom","preferences_title":null,"accept_selected_text":"Speichern","accept_all_text":"Alle erlauben","title_popup":"Dürfen wir?","mess_popup":"Für einige Funktionalitäten, sowie die Nutzungsanalyse und Optimierung der Werbung benötigen wir deine Erlaubnis um Cookies zu speichern. Du kannst die Einstellngen jederzeit anpassen.","title":"","google_privacy_text":"Google's Privacy Policy","impressum_title":"Legal Disclosure (Imprint)","permission":"0","show_icon":"0","app_enable":"1","popup_layout":1,"fullwidth_position":2,"corner_position":2,"center_position":1,"show_homepage":"0","show_all":"1","show_all_eu":"1","eu_countries":"[]","cache_time":7,"popup_bgcolor":"#ffffff","popup_textcolor":"#000000","more_textcolor":"#000000","submit_bgcolor":"#333333","submit_textcolor":"#ffffff","custom_css":".cst-cookie-btn-text-wrapper {\r\n display: flex !important;\r\n justify-content: center !important;\r\n}\r\n\r\n.cst-reopener-wrapper {\r\n position: fixed !important;\r\n bottom: 20px !important;\r\n left: 50% !important;\r\n transform: translateX(-50%) !important;\r\n z-index: 9999 !important;\r\n}","show_dismiss":"1","show_dismiss_popup":"1","show_prefrences":"0","color_text_popup":"#FFFFFF","dismiss_textcolor":"#ffffff","dismiss_bgcolor":"#333333","text_size":14,"close_dismis":"0","prefrences_bgcolor":"#ffffff","prefrences_textcolor":"#333333","accept_selected_text_color":"#333333","accept_selected_bgcolor":"#e4e4e4","accept_all_text_color":"#ffffff","accept_all_bgcolor":"#333333","show_cookies":"1","title_color_popup":"#333333","bgcolor_popup":"#ffffff","show_specific_region":null,"style_request_page":"{\"info_bgcolor\":\"#ffffff\",\"show_bgcolor\":\"#2f87e4\",\"edit_bgcolor\":\"#ca2f2f\",\"delete_bgcolor\":\"#770e0e\",\"delete_textcolor\":\"#ffffff\",\"edit_textcolor\":\"#ffffff\",\"show_textcolor\":\"#ffffff\",\"info_textcolor\":\"#000000\",\"info_text_size\":\"13\"}","banner_position":"full","side_position":"left","show_cookies_btn":"1","upgrade_date":"2026-09-11T08:03:55.000Z","theme_name":"CUSTOM","unit_space":"px","popup_width":40,"position_top":0,"position_left":0,"position_right":0,"position_bottom":10,"enable_debugger":"0","regulation_template":null,"is_updated_cookies":"1","script_tagid":null,"google_privacy_link":"https://business.safety.google/privacy/","enable_google_privacy":"0","enable_impressum":"0","impressum_link":"","decline_behavior":"hide_banner","leave_site_url":null,"language_template":"en","text_align":"left","text_direction":"ltr","icon_size":25,"button_style":"solid","submit_border_color":"#333333","preferences_border_color":"#333333","dismiss_border_color":"#333333","plan_name":"PLUS_MONTHLY"},"unpublicCookies":[],"rootLink":"https://apps.consentik.com/consentik","shopId":"58542096407","privacyPopup":{"id":586,"popupTitle":"Your Privacy Information","popupMessage":"This is a summary of your privacy settings and consent choices on our website. You can review and modify these settings at any time.","visitorTitle":"Visitor ID","givenConsentTitle":"Consent given on","expiresTitle":"Expires at","withdrawButton":"Withdraw consent","changeSettingsButton":"Change settings","backgroundColor":"#FFFFFF","textColor":"#333333","highlightColor":"#0C5132","language":"en","isDefaultLanguage":true},"advancedSetting":{"icon_banner_url":"https://apps.consentik.com/consentik/admin/dist/images/cookies-logo/logo-0.png","button_icon_url":"https://apps.consentik.com/consentik/admin/dist/images/cookies-logo/logo-0.png","pages_locked":null,"show_close_icon":"0","app_lang":"de","check_list":{"show_decline_btn":false,"show_preferences_btn":false,"show_cookie_reopen":false,"show_cookie_datasale":false,"add_privacy_link":false,"enable_blocking":false,"data_request":false},"is_hide_checklist":0,"schedule_enable":"0","schedule_duration":null,"schedule_interval":"no","schedule_secret":"0","last_scanned_at":null,"banner_holiday":"0","admin_mode":false,"setup_mode":false,"banner_status":{"CHECKOUT_UI":false},"glass_effect":{"enable":true,"blur":50,"opacity":0.7},"quick_show_category":"0","delay_show":0,"gpc":"0","reopen_conf":{"btnBg":"#f9f9f9","btnText":"Cookies","behavior":"banner","btnColor":"#b3b1b1","position":"bottom-right","displayAs":"text","verticalMargin":10,"footerLinkEnable":false,"horizontalMargin":0},"scroll_collapse_conf":null,"data_sale_opts":{"active":false,"showOnBanner":true,"showOnPreference":false,"saleLabel":"Do not share/sale my personal data"},"preferences_opts":{"show_table":false,"show_count":false,"type":"custom","consent":["necessary","preferences","marketing","analytics"]},"buttons_position":{"desktop":{"submit":1,"dismiss":2,"prefrences":3},"mobile":{"submit":1,"dismiss":2,"prefrences":3}},"sklik_rtg_id":null,"microsoft_consent":{"hasClarity":false,"clarityId":"","hasUET":false,"uetId":""},"font_name":null,"border_style":"rounded","store_front_metafield_id":null,"block_interaction":{"enable":false,"blur":6,"opacity":0.3},"block_element":{"enable":false,"displayTrigger":false,"triggerText":"Update cookie settings","blockedMessage":"This element was blocked due to your marketing cookie settings."},"shop_locales":{"published":[],"unpublished":[]},"enable_uet":"0","cross_domains":null,"fullscreen_banner":"0","show_brand_mark":false,"schedule_secret_enc":"v1.key-2026-08.LaC7tQNmeb4ydy4l.8g==.Ql7rkAZqFTjQS5C1k65F4w==","enc_key_id":"key-2026-08"},"type":"PLUS","planId":48,"fromPlus":true,"fromAdvanced":false,"fromPremium":false,"isUnlimited":false,"isFree":false,"isPaid":true};
window.cstUseLiquid = window.otCKAppData.uId >= window.otCKAppData.lowestId;
if (typeof otCKAppData === 'object') {
otCKRootLink = otCKAppData.rootLink;
otCKSettings = otCKAppData.settings;
}
if (window.cstCookiesData != undefined) {
window.otCKAppData.cookies = window.cstCookiesData.cookies
window.otCKAppData.category = window.cstCookiesData.category
}
window.otCKRequestDataInfo = window.otCKRequestDataInfo ? window.otCKRequestDataInfo : {};
</script>
<!-- BEGIN app snippet: consent-mode --><script>
window.dataLayer = window.dataLayer || [];
const cstConsentMode = window.otCKAppData?.consentMode;
const canNextHandle = typeof window['otkConsent'] === 'undefined' || Object.values(window['otkConsent']).length === 0;
if (!!cstConsentMode && canNextHandle) {
const isEnable = cstConsentMode?.enable_gcm;
// gcm_v2 is a paid term. The API already writes enable_gcm=false here for shops without
// it; this keeps the default command and the gtag.js loads term-gated on their own too.
const hasGcmTerm = Array.isArray(window.otCKAppData?.terms) && window.otCKAppData.terms.includes('gcm_v2');
window['otkConsent'] = cstConsentMode;
const isUseTemplate = cstConsentMode.use_template && cstConsentMode.have_gtm
if (!isUseTemplate && isEnable && hasGcmTerm) {
_cst_gcm_initialize(cstConsentMode)
}
} else {
console.log('GCM ALREADY SET CUSTOM CUSTOM...');
}
// The 7 GCM storage types, all set to the same value. Used for the two
// Smart Geo defaults (global = Denied for an Opt-in world, region-scoped =
// Granted for the Opt-out/Notice exceptions).
function _cst_gcm_uniform_storage(value) {
return {
ad_user_data: value,
ad_personalization: value,
ad_storage: value,
analytics_storage: value,
functionality_storage: value,
personalization_storage: value,
security_storage: value
};
}
// Smart Geo owns the GCM default while it is on: the region's law decides,
// not the merchant's per-storage toggles (which the admin locks in that
// state). Returns null when Smart Geo is off so the merchant config is used.
function _cst_gcm_smart_geo_storage() {
const smartGeo = window.otCKAppData?.smartGeo;
if (smartGeo?.enabled !== true) return null;
const isGrantedByDefault = smartGeo.defaultMode === 'opt-out' || smartGeo.defaultMode === 'notice';
return _cst_gcm_uniform_storage(isGrantedByDefault ? "granted" : "denied");
}
function _cst_gcm_initialize(consentMode) {
const trackingIds = consentMode.gtm?.split(',');
window['otkConsent'] = window['otkConsent'] || consentMode;
/**
* @type {string[]}
*/
const regions = window.otCKAppData.consentModeRegions;
const isShowAll = window.otCKAppData?.settings?.show_all === '1';
const userRegion = isShowAll ? {} : { region: regions };
window.cstUserRegion = userRegion;
const merchantStorage = {
// Marketing
ad_user_data: !consentMode.ad_user_data ? "granted" : "denied",
ad_personalization: !consentMode.ad_personalization ? "granted" : "denied",
ad_storage: !consentMode.ad_storage ? "granted" : "denied",
// analytics
analytics_storage: !consentMode.analytics_storage ? "granted" : "denied",
// preferences
functionality_storage: !consentMode.functionality_storage ? "granted" : "denied",
personalization_storage: !consentMode.personalization_storage ? "granted" : "denied",
security_storage: !consentMode.security_storage ? "granted" : "denied"
};
const defaultStorage = _cst_gcm_smart_geo_storage() ?? merchantStorage;
window.otCookiesGCM = {
url_passthrough: false,
ads_data_redaction: false,
config: Object.assign({}, defaultStorage, {
cst_default: 'granted',
wait_for_update: 500
}, userRegion),
};
window.dataLayer.push = function (...items) {
items.forEach((item) => {
const isValidDefault = otValidateDefault(item);
if (isValidDefault) {
const firstIndex = item[0] ?? false;
const secondIndex = item[1] ?? false;
const thirdValue = item[2] ?? [];
if (firstIndex &&
firstIndex === "consent" &&
secondIndex &&
secondIndex === "update" && thirdValue && Object.keys(thirdValue).includes("cst_update")) {
const {cst_update, ...dataUpdate} = thirdValue;
item[2] = {...dataUpdate};
Array.prototype.push.call(this, item);
}
if (firstIndex &&
firstIndex === "consent" &&
secondIndex &&
secondIndex === "default" && thirdValue && Object.keys(thirdValue).includes("cst_default")) {
const {cst_default, ...dataDefault} = thirdValue;
item[2] = {...dataDefault};
Array.prototype.push.call(this, item);
} else {
Array.prototype.push.call(this, item);
}
}
});
};
function gtag() {
dataLayer.push(arguments);
}
function otValidateDefault(item) {
const firstIndex = item[0] ?? false;
const secondIndex = item[1] ?? false;
if (firstIndex && firstIndex === "consent" && secondIndex && secondIndex === "default") {
const thirdIndex = item[2] ?? {};
if (Object.values(thirdIndex).length) {
const listKeys = Object.keys(thirdIndex);
const listValue = Object.values(thirdIndex);
const isOneGranted = listValue.some((item) => item === "granted");
const isFromConsentik = listKeys.includes("cst_default");
return !isOneGranted || (isOneGranted && isFromConsentik);
} else {
return true;
}
} else if (
firstIndex &&
firstIndex === "consent" &&
secondIndex &&
secondIndex === "update"
) {
const listKeys = Object.keys(item[2]);
return listKeys.includes("cst_update");
} else {
return true;
}
}
gtag("consent", "default", window.otCookiesGCM.config);
gtag("set", "developer_id.dNjA1Yz", true);
// ── Smart Geo-targeting: region-scoped GCM default ──────────────────
// The global default above is Denied for all 7 storage types whenever
// Smart Geo is on (_cst_gcm_smart_geo_storage) — the law of the visitor's
// region decides, not the merchant's per-storage toggles. This second
// `consent default` grants the exception regions (opt-out ∪ notice) —
// GCM applies the most specific matching command per visitor, so this
// overrides the global default correctly without ever needing to
// list the ~180 opt-in regions. No-op when Smart Geo is off/undefined
// or there are no exception regions.
const smartGeo = window.otCKAppData?.smartGeo;
if (smartGeo?.enabled === true && smartGeo.defaultMode === 'opt-in') {
const exceptionRegions = []
.concat(smartGeo.regionsByMode?.['opt-out'] || [])
.concat(smartGeo.regionsByMode?.['notice'] || []);
if (exceptionRegions.length > 0) {
gtag("consent", "default", Object.assign(_cst_gcm_uniform_storage("granted"), {
cst_default: "granted",
wait_for_update: 500,
region: exceptionRegions
}));
}
}
addEventListener("DOMContentLoaded", function () {
let savedCookie = _getCookie(window.otCurrentCookieName);
let blockedMarketing = true;
if (savedCookie) {
savedCookie = JSON.parse(savedCookie);
const acceptedCat = savedCookie[0].categoriesSelected;
blockedMarketing = !acceptedCat.includes("marketing");
window.otCookiesGCM.config = {
ad_user_data: acceptedCat.includes("marketing")
? "granted"
: "denied",
ad_personalization: acceptedCat.includes("marketing")
? "granted"
: "denied",
ad_storage: acceptedCat.includes("marketing")
? "granted"
: "denied",
analytics_storage: acceptedCat.includes("analytics")
? "granted"
: "denied",
functionality_storage: acceptedCat.includes("necessary")
? "granted"
: "denied",
personalization_storage: acceptedCat.includes("preferences")
? "granted"
: "denied",
security_storage: acceptedCat.includes("necessary")
? "granted"
: "denied"
};
gtag("consent", "update", {...window.otCookiesGCM.config, cst_update: "granted"});
}
window.otCookiesGCM.ads_data_redaction =
window.otkConsent.ads_data_redaction && blockedMarketing;
window.otCookiesGCM.url_passthrough = window.otkConsent.url_passthrough;
window.otCookiesGCM.ads_data_redaction &&
gtag(
"set",
"ads_data_redaction",
window.otCookiesGCM.ads_data_redaction
);
window.otCookiesGCM.url_passthrough &&
gtag("set", "url_passthrough", window.otCookiesGCM.url_passthrough);
});
function _getCookie(prefix) {
if (!prefix) return null;
const cookies = document.cookie.split(";");
for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i].trim();
const eqIndex = cookie.indexOf("=");
const name = decodeURIComponent(cookie.substring(0, eqIndex));
const value = decodeURIComponent(cookie.substring(eqIndex + 1));
if (name.startsWith(prefix)) {
return value;
}
}
return null;
}
if (trackingIds?.length > 0) {
if (trackingIds.some(id => id.trim().startsWith('G-') || id.trim().startsWith('AW-'))) {
window.dataLayer = window.dataLayer || [];
window.gtag = window.gtag || function () {
dataLayer.push(arguments);
};
gtag('js', new Date());
}
trackingIds.forEach(key => {
const ID = key.trim();
if (!ID) return;
if (ID.startsWith('GTM-')) {
const script = document.createElement('script');
script.innerHTML = `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','${ID}');`;
document.head.append(script);
} else if (ID.startsWith('G-')) {
const script = document.createElement('script');
script.async = true;
script.src = `https://www.googletagmanager.com/gtag/js?id=${ID}`;
document.head.append(script);
gtag('config', ID);
} else if (ID.startsWith('ca-pub-')) {
const script = document.createElement("script");
script.async = true;
script.src = `https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=${ID}`;
script.setAttribute('crossorigin', 'anonymous');
document.head.append(script);
} else if (ID.startsWith('AW-')) {
const script = document.createElement("script");
script.async = true;
script.src = `https://www.googletagmanager.com/gtag/js?id=${ID}`;
document.head.append(script);
gtag('config', ID);
}
});
}
}
</script>
<!-- END app snippet -->
<!-- BEGIN app snippet: UET --><script>
const cstAdvanced = window.otCKAppData?.advancedSetting;
const cstUetEnabled = cstAdvanced?.enable_uet === '1';
const cstMicrosoftConsent = cstAdvanced?.microsoft_consent;
if (cstUetEnabled && window.cstUseLiquid && !!cstMicrosoftConsent) {
if (cstMicrosoftConsent.hasUET && !!cstMicrosoftConsent.uetId) {
!function (e, a, n, t, o) {
var c, r, d;
e[o] = e[o] || [], c = function () {
var a = {ti: Number(cstMicrosoftConsent.uetId), enableAutoSpaTracking: !0};
a.q = e[o], e[o] = new UET(a), e[o].push("pageLoad")
}, (r = a.createElement(n)).src = "//bat.bing.com/bat.js", r.async = 1, r.onload = r.onreadystatechange = function () {
var e = this.readyState;
e && "loaded" !== e && "complete" !== e || (c(), r.onload = r.onreadystatechange = null)
}, (d = a.getElementsByTagName(n)[0]).parentNode.insertBefore(r, d)
}(window, document, "script", 0, "uetq");
}
if (cstMicrosoftConsent.hasClarity && !!cstMicrosoftConsent.clarityId) {
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () {
(c[a].q = c[a].q || []).push(arguments)
};
t = l.createElement(r);
t.async = 1;
t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", `${cstMicrosoftConsent.clarityId}`);
}
/**
* UET Function
*/
window.uetq = window.uetq || [];
function __cstUetHasCookie(name, values) {
return document.cookie.split(";").some((cookie) => {
cookie = cookie.trim();
return (
cookie.startsWith(name) && values.some((v) => cookie.includes(v))
);
});
}
function __cstUetSetCookie(name, value, days) {
let expires = "";
if (typeof value !== "string") {
value = JSON.stringify(value);
}
let expiredDate = window.otCookiesExpiredDate;
if (days) {
expiredDate = days;
}
let date = new Date();
date.setTime(date.getTime() + expiredDate * 24 * 60 * 60 * 1000);
expires = "; expires=" + date.toUTCString();
document.cookie = name + "=" + value + expires + "; path=/";
}
// Smart Geo: Opt-out/Notice regions may run ads before consent — their
// law doesn't require prior permission, so Microsoft consent starts
// Granted there and only flips to Denied when the visitor opts out.
// Mode is undefined while Smart Geo is off (or before the region
// resolves), which keeps the previous denied-by-default behaviour.
function __cstUetDefaultGranted() {
const cstMode = window.cstConsentMode;
return cstMode === 'opt-out' || cstMode === 'notice';
}
// Both handlers run twice: once at DOMContentLoaded (fail-safe, before
// the region is known) and again once Smart Geo resolves. The consent
// default must only ever be declared once — the second pass upgrades it
// with an update instead.
let __cstUetDefaultSent = false;
let __cstClarityDefaultSent = false;
function _otkBingConsent() {
if (typeof window.uetq !== 'undefined') {
const isAccepted = __cstUetHasCookie(window.otCurrentCookieName, [
"marketing",
"analytics"
]);
const isGranted = isAccepted || __cstUetDefaultGranted();
__cstUetSetCookie("_uetmsdns", isGranted ? 0 : 1);
if (!__cstUetDefaultSent) {
__cstUetDefaultSent = true;
window.uetq.push("consent", "default", {
ad_storage: __cstUetDefaultGranted() ? "granted" : "denied"
});
}
if (isGranted) {
window.uetq.push("consent", "update", {
ad_storage: "granted"
});
}
}
}
function _otkClarityConsent() {
if (typeof window.clarity !== 'undefined') {
const isAccepted = __cstUetHasCookie(window.otCurrentCookieName, [
"marketing",
"analytics"
]);
const isGranted = isAccepted || __cstUetDefaultGranted();
__cstUetSetCookie("_claritymsdns", isGranted ? 0 : 1);
if (!__cstClarityDefaultSent) {
__cstClarityDefaultSent = true;
const cstClarityDefault = __cstUetDefaultGranted() ? "granted" : "denied";
window.clarity("consentv2", {
ad_Storage: cstClarityDefault,
analytics_Storage: cstClarityDefault
});
}
if (isGranted) {
window.clarity("consentv2", {
ad_Storage: "granted",
analytics_Storage: "granted"
});
}
}
}
function __cstApplyMicrosoftConsent() {
_otkBingConsent()
_otkClarityConsent()
}
document.addEventListener("DOMContentLoaded", () => {
// Apply the safe default immediately so nothing is measured with no
// consent state at all, then re-apply once Smart Geo knows the region.
__cstApplyMicrosoftConsent()
const cstSmartGeo = window.otCKAppData?.smartGeo;
if (cstSmartGeo?.enabled === true && typeof window._cstResolveConsentMode === 'function') {
window._cstResolveConsentMode().then(__cstApplyMicrosoftConsent, __cstApplyMicrosoftConsent);
}
})
}
</script><!-- END app snippet -->
<script>
window.otckBannerVersion = "new";
</script>
<div id="cst-shadow-host"></div>
<script src="https://cdn.shopify.com/extensions/01a0c754-953e-788b-869a-4ff98e7c7039/consentik-ex-202609221116/assets/cst-consent-engine.js" defer></script>
<script>
(function () {
var adv = window.otCKAppData && window.otCKAppData.advancedSetting;
if (adv && adv.block_element && adv.block_element.enable) {
// Injected async on purpose — load order doesn't matter: cst-block-element.js
// self-inits at the bottom of its IIFE AND cst-bridge.js calls
// _cstInitBlockElements() on load, both after cst-consent-engine.js has set
// window.otTerms. So no defer/async ordering is needed here.
var s = document.createElement('script');
s.src = "https://cdn.shopify.com/extensions/01a0c754-953e-788b-869a-4ff98e7c7039/consentik-ex-202609221116/assets/cst-block-element.js";
document.head.appendChild(s);
}
})();
</script>
<script src="https://cdn.shopify.com/extensions/01a0c754-953e-788b-869a-4ff98e7c7039/consentik-ex-202609221116/assets/cst-bridge.js" defer></script>
<script src="https://cdn.shopify.com/extensions/01a0c754-953e-788b-869a-4ff98e7c7039/consentik-ex-202609221116/assets/cst-bundle.js" defer></script>
<script>
window.otIsSetupMode = false
</script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/easy-tag-gtm-data-layer/blocks/datalayer-embed-block/be308f3f-c82d-4290-b187-8561d4a8782a --><script>(function(w, d) {var f = d.getElementsByTagName('script')[0];var s = d.createElement('script');s.async = true;s.src = "https:\/\/cdn.shopify.com\/extensions\/9d4b20e8-14f7-4a65-86dc-eaa196dcf826\/2.1.0\/assets\/tidl-2.1.0.min.js";s.onload = function() {window.TAGinstall.init({"data_layer": {"model": "legacy","item_id_selector": "sku|variant_id"},"events":{"device_data":true,"user_data":true,"cart_data":true,"collections":true,"product_click":true,"product":true,"add_to_cart":true,"remove_from_cart":true,"login":true,"register":true,"search":true},"currency":"CHF","gtm_container_id":"GTM-KCTJNTGZ",}, {
"_internal": {},"contextData": {"page": {"type":"index"}
},"cartData" : {"pageType":"index","items": [],"total":0.0,"currency":"CHF"}});
};
f.parentNode.insertBefore(s, f);
})(window, document);
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KCTJNTGZ');</script>
<!-- End Google Tag Manager -->
<!-- END app block --><!-- BEGIN app block: shopify://apps/seo-king/blocks/seo-king-jsonld-breadcrumb/4aa30173-495d-4e49-b377-c5ee4024262f -->
<!-- END app block --><!-- BEGIN app block: shopify://apps/geo-redirect/blocks/geolocation-popup/019b96c0-7d7c-7338-be9f-1147dd22a014 -->
<script>
window.__GEOLOCATION_CONFIG__ = {
shop: "retroshirtsch.myshopify.com",
proxyUrl: "/apps/geolocation/config",
analyticsUrl: "\/apps\/geolocation\/analytics?shop=retroshirtsch.myshopify.com",
visitorCountry: "CH",
marketHandle: "ch",
marketId: 10748657687
};
</script>
<script src="https://cdn.shopify.com/extensions/019fb2ac-6f08-7d19-8c74-8136bf71e895/geo-redirect-116/assets/geolocation.js" async></script>
<!-- END app block --><script src="https://cdn.shopify.com/extensions/01a0aa7a-f99f-7ab6-a36e-9673fd70d8d4/omnisend-57/assets/omnisend-in-shop.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/01a0d2a1-da53-7f62-9f48-924763df439f/discounty-3.1.7/assets/sdk.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 58542096407,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script>
window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script>(function(){var wpmLoader=function(){"use strict";var e=/Googlebot|Storebot-Google|bingbot|Baiduspider|YandexBot|DuckDuckBot|Slurp|facebookexternalhit|Twitterbot|LinkedInBot|Applebot|AdsBot-Google|Mediapartners-Google|APIs-Google|PetalBot|SemrushBot|AhrefsBot|MJ12bot|DotBot|Acunetix|PerplexityBot|Perplexity-User/i,t=/bytedance/i;function i(){try{var e=document.cookie;if(!e||"string"!=typeof e)return;for(var t=0,i=e.split(";");t<i.length;t++){var n=i[t],r=n.indexOf("=");if(-1!==r){var o=n.slice(0,r).trim();if(o){var a=void 0;try{a=decodeURIComponent(o)}catch(e){a=o}if("_shopify_s"===a){var d=n.slice(r+1).trim();try{return decodeURIComponent(d)}catch(e){return d}}}}}return}catch(e){return}}function n(e){try{"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn(e)}catch(e){}}function r(e,t){return"string"==typeof e&&e.length>0&&e.length<=t?e:void 0}function o(e){var t;switch(null==(t=null==e?void 0:e.navigation)?void 0:t.type){case 0:return"navigate";case 1:return"reload";case 2:return"back_forward";default:return}}function a(){var e,t,i;try{var n=null==(i=null==(t=null==(e=self.ShopifyAnalytics)?void 0:e.lib)?void 0:t.trekkie)?void 0:i.state;return"awaiting-consent"===n||"initialized"===n?n:void 0}catch(e){return}}return function(d,s,u,l){var c=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};try{var p=c.trekkieShim;!0!==p&&"true"!==p||null!=window.__TREKKIE_SHIM_QUEUE||(window.__TREKKIE_SHIM_QUEUE=[])}catch(e){}var f,v,h,y,g=(v=(f={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](14[89]|1[5-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(15\d|1[6-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(14[89]|1[5-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](14[89]|1[5-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(15\d|1[6-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(14[89]|1[5-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/}).modern,h=f.legacy,(y=navigator.userAgent).match(e)?"bot":y.match(v)?"modern":y.match(h)?"legacy":y.match(t)?"bot":"unknown"),m=function(e){var t,i,n=r(e,128);try{var a=window.performance,d=null==(t=null==a?void 0:a.getEntriesByType)?void 0:t.call(a,"navigation")[0];if(!d)return{requestId:n,navigationType:o(a)};var s="type"in d?r(d.type,64):void 0,u="serverTiming"in d&&Array.isArray(d.serverTiming)?d.serverTiming:[];return{requestId:null!=n?n:r(null==(i=u.find(function(e){return"requestID"===e.name}))?void 0:i.description,128),navigationType:s}}catch(e){return{requestId:n}}}(c.requestId),w=function(e){var t=e.version,r=e.browserTarget,o=e.surface,a=e.shopId,d=e.monorailEndpoint,s=window.location.href;return{emit:function(e){var u=e.status,l=e.errorMsg,c=e.failureReason,p=e.useKeepaliveFallback,f=void 0!==p&&p,v=e.navigationType,h=e.pagehidePersisted,y=e.requestId,g=e.trekkieState;if(d){var m,w;try{var b=(new Date).getTime();m=JSON.stringify({metadata:{event_sent_at_ms:b},events:[{schema_id:"web_pixels_manager_load/3.3",payload:{version:t,bundle_target:r,page_url:s,status:u,surface:o,error_msg:l,failure_reason:c,navigation_type:v,pagehide_persisted:h,request_id:y,trekkie_state:g,shop_id:a,visit_token:i()},metadata:{event_created_at_ms:b}}]})}catch(e){return}try{if("function"==typeof window.navigator.sendBeacon&&-1===(w=window.navigator.userAgent).indexOf("iPhone; CPU iPhone OS 12_")&&-1===w.indexOf("iPad; CPU OS 12_")&&-1===w.indexOf("iPod touch; CPU iPhone OS 12_")&&window.navigator.sendBeacon.bind(window.navigator)(d,m))return}catch(e){}if(f)try{"function"==typeof window.fetch&&window.fetch(d,{method:"POST",headers:{"Content-Type":"text/plain"},body:m,keepalive:!0}).catch(function(){})}catch(e){}else try{var _=new XMLHttpRequest;_.open("POST",d,!0),_.setRequestHeader("Content-Type","text/plain"),_.send(m)}catch(e){n("[Web Pixels Manager] Got an unhandled error while logging to Monorail.")}}else n("[Web Pixels Manager] No Monorail endpoint provided, skipping logging.")}}}({version:u,browserTarget:g,surface:d.surface,shopId:d.shopId,monorailEndpoint:d.monorailEndpoint});if(Boolean(null==(_=null==(b=window.Shopify)?void 0:b.analytics)?void 0:_.replayQueue))w.emit({status:"setup-skipped",errorMsg:"replay queue already initialized."});else{var b,_;w.emit({status:"setup-started"}),window.Shopify=window.Shopify||{};var S=window.Shopify;S.analytics=S.analytics||{};var P=S.analytics;P.replayQueue=[],P.publish=function(e,t,i){return P.replayQueue.push([e,t,i]),!0};try{self.performance.mark("wpm:start")}catch(e){}var k,C="modern"===g?"modern":"legacy",E=(null!=l?l:{modern:"",legacy:""})[C],I=[(k={baseUrl:s,hashVersion:u,buildTarget:C}).baseUrl,"/wpm","/b",k.hashVersion,"modern"===k.buildTarget?"m":"l",".js"].join(""),O=!1,T=!1;try{c.browserTarget=g,function(){O=!0;try{window.addEventListener("pagehide",M)}catch(e){O=!1}}(),R(function(){try{R(x)}catch(e){D(e)}}),w.emit({status:"loading",requestId:m.requestId,navigationType:m.navigationType,trekkieState:a()})}catch(e){D(e)}}function U(){var e;if(q(),!function(){var e,t;return Boolean(null==(t=null==(e=window.Shopify)?void 0:e.analytics)?void 0:t.initialized)}()){var t,i,n;try{if("function"!=typeof(null==(e=window.webPixelsManager)?void 0:e.init))return void A();if(!(null!==(n=i=t=window.webPixelsManager.init(d))&&"function"!=typeof n&&Object(n)===n&&"publish"in i&&"function"==typeof i.publish&&"publishCustomEvent"in i&&"function"==typeof i.publishCustomEvent&&"visitor"in i&&"function"==typeof i.visitor))return void A()}catch(e){return void A(e)}var r=window.Shopify.analytics;r.replayQueue.forEach(function(e){var i=e[0],n=e[1],r=e[2];t.publishCustomEvent(i,n,r)}),r.replayQueue=[],r.publish=t.publishCustomEvent,r.visitor=t.visitor,r.initialized=!0}}function A(e){B("manager_api_unavailable",void 0===e?void 0:Q(e))}function x(){B("script_load_failed","".concat(I," has failed to load"))}function B(e,t){T||(T=!0,q(),w.emit({status:"failed",errorMsg:t,failureReason:e,requestId:m.requestId,navigationType:m.navigationType,trekkieState:a()}))}function M(e){O&&(q(),w.emit({status:"pagehide-while-loading",useKeepaliveFallback:!0,pagehidePersisted:e.persisted,requestId:m.requestId,navigationType:m.navigationType,trekkieState:a()}))}function q(){O=!1;try{window.removeEventListener("pagehide",M)}catch(e){}}function R(e){var t;!function(e){var t=e.src,i=e.async,n=void 0===i||i,r=e.onload,o=e.onerror,a=e.sri,d=e.scriptDataAttributes,s=void 0===d?{}:d,u=document.createElement("script"),l=document.querySelector("head"),c=document.querySelector("body");if(u.async=n,u.src=t,a&&(u.integrity=a,u.crossOrigin="anonymous"),s)for(var p in s)if(Object.prototype.hasOwnProperty.call(s,p))try{u.dataset[p]=String(s[p])}catch(e){}if(r&&u.addEventListener("load",r),o&&u.addEventListener("error",o),l)l.appendChild(u);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(u)}}({src:I,async:!0,onload:U,onerror:e,sri:(t=E,"string"==typeof t&&/^sha384-[A-Za-z0-9+/=]+$/.test(t)?E:""),scriptDataAttributes:c})}function D(e){B("script_append_failed",Q(e))}function Q(e){return e instanceof Error?e.message:"Unknown error"}}}();wpmLoader({shopId: 58542096407,storefrontBaseUrl: "https://retroshirts.ch",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://retroshirts.ch/.well-known/shopify/monorail/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["16072cab","8450a54b","7ee89bf1"],webPixelsConfigList: [{"id":"4039541119","configuration":"{\"projectId\":\"o8m6n652nv\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"d8a2bb2ccbb513dc8e8b6937f4b8033e","type":"APP","apiClientId":240074326017,"privacyPurposes":[],"capabilities":["advanced_dom_events"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"3698557311","configuration":"{\"apiKey\":\"5s7y5N3m0A\",\"host\":\"searchserverapi1.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5559ea45e47b67d15b30b79e7c6719da","type":"APP","apiClientId":578825,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"2395046271","configuration":"{\"shopId\":\"227942\",\"env\":\"production\",\"metaData\":\"[]\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"36f244aeba196ca7e2f6b8a611f4e21b","type":"APP","apiClientId":2773553,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"1914503551","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"AW-11022357257\\\"],\\\"target_country\\\":\\\"CH\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/dG2zCIv4s4MdEImm74cp\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/aQ27CKX3s4MdEImm74cp\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/gZzJCIj4s4MdEImm74cp\\\"},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/OLRYCKL3s4MdEImm74cp\\\"},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/QmThCIX4s4MdEImm74cp\\\"},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/lHmYCI74s4MdEImm74cp\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"AW-11022357257\\\/JU3CCKj3s4MdEImm74cp\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"a3321ca85cf5aaf6b57585fcd8d67b3a","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"907805055","configuration":"{\"shopId\":\"retroshirtsch.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7093dff47f098f6de2afb75b62011ebe","type":"APP","apiClientId":2753413,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"281378839","configuration":"{\"pixelCode\":\"CGRRQNJC77U2LMCQ44RG\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"136445975","configuration":"{\"pixel_id\":\"2304383066394851\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"96420dbe9ea96c426a1b7f364f977719","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"75497495","configuration":"{\"apiURL\":\"https:\/\/api.omnisend.com\",\"appURL\":\"https:\/\/app.omnisend.com\",\"brandID\":\"63da3470c50e47b6cbcdaf67\",\"trackingURL\":\"https:\/\/wt.omnisendlink.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"1e2b45bbee5b360dff908f60423b89f8","type":"APP","apiClientId":186001,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"7733271","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"5","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Facebook Pixel"},{"id":"231276927","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"GTM"},{"id":"266928511","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["MARKETING","SALE_OF_DATA"],"name":"Reddit"},{"id":"345440639","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":[],"name":"rs-checkout-datalayer"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0530","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0530","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"RetroShirts.ch - Originale Fussballtrikots","paymentSettings":{"currencyCode":"CHF"},"myshopifyDomain":"retroshirtsch.myshopify.com","countryCode":"CH","storefrontUrl":"https:\/\/retroshirts.ch"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"products":[{"id":"15901193240959","handle":"fussballtrikot-frankreich-2000-heim-adidas-zidane-xl-101057","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486179922303","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901192716671","handle":"fussballtrikot-acmilan-1990-92-heim-adidas-l-100557","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486179037567","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901192290687","handle":"fussballtrikot-fcthun-2020-21-torhuter-macron-hirzel-l-101284","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486178611583","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901191963007","handle":"fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486177825151","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901191012735","handle":"fussballtrikot-servettefc-2024-25-torhuter-adidas-mall-xl-101277","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486174482815","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901190357375","handle":"fussballtrikot-1-fcnurnberg-2005-06-heim-adidas-l-101261","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486173892991","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901190029695","handle":"fussballtrikot-servettefc-1996-97-auswarts-umbro-xl-101048","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486173598079","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901189702015","handle":"fussballtrikot-england-2002-heim-umbro-owen-xl-101053","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486173303167","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901189407103","handle":"fussballtrikot-schweiz-1994-auswarts-lotto-xxl-101047","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486173008255","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901188817279","handle":"fussballtrikot-fclugano-2024-25-torhuter-errea-saipi-xxl-101285","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486172123519","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901188161919","handle":"fussballtrikot-fcbayernmunchen-2016-17-spezial-adidas-kidsxl-101182","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486171042175","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901187735935","handle":"fussballtrikot-england-2002-auswarts-umbro-scholes-xl-101054","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486170485119","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901186982271","handle":"fussballtrikot-fczurichfrauen-2016-17-training-nike-m-100900","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486168813951","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901186556287","handle":"fussballtrikot-fcbarcelona-1998-01-auswarts-nike-trashorras-l-101041","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486168289663","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901186195839","handle":"fussballtrikot-bscyoungboys-2001-02-heim-gems-tikva-l-101050","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486167830911","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901185835391","handle":"fussballtrikot-crflamengo-2023-auswarts-adidas-xl-101189","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486167273855","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901185540479","handle":"fussballtrikot-fcwinterthur-2019-21-torhuter-gpard-spiegel-xl-100906","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486166978943","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901185245567","handle":"fussballtrikot-bscyoungboys-2003-04-auswarts-gems-haberli-xl-101058","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486166421887","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901184819583","handle":"fussballtrikot-olympiquemarseille-1998-99-heim-adidas-xl-100977","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486165930367","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901184000383","handle":"fussballtrikot-fcarsenal-2012-13-drittes-nike-xl-101154","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486164750719","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901182689663","handle":"fussballtrikot-bscyoungboys-2012-13-torhuter-jako-s-100907","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486161244543","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901181870463","handle":"fussballtrikot-borussiamonchengladbach-2018-19-auswarts-puma-plea-s-101087","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486159704447","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901180658047","handle":"fussballtrikot-fcbasel-2016-17-auswarts-adidas-s-101184","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486157083007","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901180330367","handle":"fussballtrikot-galatasaray-2004-05-heim-umbro-xxl-101069","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486156689791","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901180002687","handle":"fussballtrikot-fortunadusseldorf-2020-21-spezial-uhlsport-xxxl-101140","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486156263807","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901179183487","handle":"fussballtrikot-neuchatelxamax-2011-12-training-umbro-s-100898","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486155379071","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901176103295","handle":"fussballtrikot-argentinien-2026-auswarts-adidas-messi-m-101123","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486151086463","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901175841151","handle":"fussballtrikot-fcst-pauli-2015-16-heim-hummel-m-100793","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486150529407","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901175546239","handle":"fussballtrikot-fcluzern-2005-06-heim-jako-zaccanti-l-101199","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486150168959","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901175251327","handle":"fussballtrikot-fcluzern-2024-25-training-errea-m-101314","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486149775743","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901174890879","handle":"fussballtrikot-fcst-gallen-2010-11-heim-jako-m-100905","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486149087615","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901174432127","handle":"fussballtrikot-gczurich-1995-96-heim-adidas-xl-100785","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486148432255","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901173416319","handle":"fussballtrikot-fczurich-2021-22-heim-nike-omeragic-m-101248","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486147055999","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901173285247","handle":"fussballtrikot-realmadrid-2016-17-spezial-adidas-kidsxl-101181","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486146728319","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901173055871","handle":"fussballtrikot-fcluzern-2024-25-torhuter-errea-loretz-l-101274","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486146498943","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891237142911","handle":"fussballtrikot-fcaarau-2014-16-heim-nike-rossini-m-100910","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436062871935","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891236553087","handle":"fussballtrikot-athleticbilbao-2008-09-heim-in-house-s-100973","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436060807551","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891235733887","handle":"fussballtrikot-vitessearnheim-2010-11-heim-klupp-l-100961","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436053991807","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891235275135","handle":"fussballtrikot-fcbayernmunchen-2009-10-drittes-adidas-robben-l-101134","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436051042687","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891234980223","handle":"fussballtrikot-belgien-2026-auswarts-adidas-doku-l-101138","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436047929727","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891234521471","handle":"fussballtrikot-bscyoungboys-2020-21-heim-nike-s-100913","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436045996415","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891233767807","handle":"fussballtrikot-deutschland-2026-auswarts-adidas-wirtz-xl-101124","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436041376127","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891233112447","handle":"fussballtrikot-argentinien-2026-auswarts-adidas-messi-l-101128","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436037509503","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891232358783","handle":"fussballtrikot-realmadrid-2024-25-heim-adidas-mbappe-l-101146","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58436030398847","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891229802879","handle":"fussballtrikot-juventus-2001-02-auswarts-lotto-s-100398","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435980624255","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891229376895","handle":"fussballtrikot-fcbarcelona-1998-00-auswarts-nike-l-101078","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435977118079","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891229016447","handle":"fussballtrikot-fcluzern-1978-80-heim-adidas-xs-100364","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435975348607","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891228655999","handle":"fussballtrikot-parissaint-germain-2017-18-training-nike-l-100457","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435971383679","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891228328319","handle":"fussballtrikot-fcbarcelona-2014-15-auswarts-nike-neymar-l-101142","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435968598399","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891227935103","handle":"fussballtrikot-manchesterunited-2015-16-heim-adidas-xl-101089","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435967877503","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258101907839","handle":"fussballtrikot-fcthun-2014-15-heim-nike-hediger-s-r5794","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959239164287","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15065453330815","handle":"fussballtrikot-gczurich-2011-12-heim-adidas-deridder-m-r3686","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55430558515583","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874579038591","handle":"fussballtrikot-gczurich-2013-14-heim-puma-f-feltscher-l-100850","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352273031551","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874579300735","handle":"fussballtrikot-neuchatelxamax-2006-07-torhuter-erima-zubi-xxl-101118","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352274112895","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861448704383","handle":"fussballtrikot-servettefc-2002-03-auswarts-errea-galvao-xl-100805","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279206519167","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861447000447","handle":"fussballtrikot-gczurich-2010-12-heim-adidas-smiljanic-l-100846","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279203307903","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849063285119","handle":"fussballtrikot-fczurich-2018-19-heim-nike-sertic-m-100843","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220710527359","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849062302079","handle":"fussballtrikot-gczurich-2012-13-heim-puma-lang-l-100854","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220708659583","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849062990207","handle":"fussballtrikot-fczurich-2018-19-auswarts-nike-andereggen-m-100849","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220710232447","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849062596991","handle":"fussballtrikot-gczurich-2012-13-drittes-puma-zuber-l-100856","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220709314943","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849061548415","handle":"fussballtrikot-servettefc-2002-03-auswarts-adidas-sanou-xl-100663","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220707545471","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15837984850303","handle":"fussballtrikot-gczurich-2012-13-drittes-puma-paiva-m-100778","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58172869968255","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15837984293247","handle":"fussballtrikot-fcaarau-2005-06-torhuter-jako-colomba-xl-100776","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58172869378431","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15837676306815","handle":"fussballtrikot-fcwinterthur-2024-25-auswarts-gpard-schneider-m-100632","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58172147138943","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15837676011903","handle":"fussballtrikot-atalantabergamo-2021-22-heim-joma-djimsiti-xl-100313","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58172144320895","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15640173314431","handle":"fussballtrikot-fcst-gallen-2013-14-drittes-jako-keita-s-r6429","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57349872320895","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15812054811007","handle":"fussballtrikot-venezuela-2011-heim-adidas-m-100644","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58069361131903","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15799850434943","handle":"fussballtrikot-fczurich-2021-22-heim-nike-aliti-m-100439","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58028209111423","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15790328873343","handle":"fussballtrikot-gczurich-2012-13-drittes-puma-adili-m-100411","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57986288615807","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15777331315071","handle":"fussballtrikot-fcsion-2020-21-heim-macron-grgic-l-100304","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57938375737727","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15754511155583","handle":"fussballtrikot-schweiz-2014-auswarts-puma-lang-m-r6840","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57871642132863","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15674219233663","handle":"fussballtrikot-gczurich-2025-26-heim-capelli-ullmann-m-r7461","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57503676105087","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15674218676607","handle":"fussballtrikot-werderbremen-2012-13-heim-nike-sokratis-xl-r5916","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57503674532223","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15484202746239","handle":"fussballtrikot-bscyoungboys-2015-16-heim-nike-yuya-s-r5925","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56703949504895","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15484202713471","handle":"fussballtrikot-fcvaduz-2021-22-torhuter-puma-chande-m-r5922","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56703949472127","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15484202779007","handle":"fussballtrikot-fclausanne-sport-2020-21-auswarts-lecoqsportif-loosli-l-r5924","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56703949537663","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15484202385791","handle":"fussballtrikot-fcaarau-2013-14-torhuter-nike-mall-m-r5833","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56703949144447","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15398080938367","handle":"fussballtrikot-1-fckaiserslautern-2024-25-heim-adidas-s-roberto-m-r6411","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56392767471999","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15397646762367","handle":"fussballtrikot-fcthun-2012-13-heim-erima-schneuwly-m-r6002","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56391661158783","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15397646172543","handle":"fussballtrikot-fcvaduz-2021-22-heim-puma-coulibaly-m-r5921","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56391658537343","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15368006631807","handle":"fussballtrikot-redbullsalzburg-2007-09-heim-adidas-zickler-l-r5999","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56306119606655","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15335452344703","handle":"fussballtrikot-fclugano-2021-22-drittes-acerbis-celar-m-r5835","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56219464991103","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15335452180863","handle":"fussballtrikot-fcthun-2012-13-heim-erima-hediger-m-r5827","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56219464794495","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15282702352767","handle":"fussballtrikot-borussiadortmund-2019-20-heim-puma-diallo-l-r5869","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56044081217919","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15282702123391","handle":"fussballtrikot-parmacalcio1913-2020-21-auswarts-errea-sohm-xl-r5847","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56044080759167","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15272860778879","handle":"fussballtrikot-fclugano-2021-22-heim-acerbis-ziegler-l-r5892","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56003819536767","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258102399359","handle":"fussballtrikot-fcsion-2019-20-auswarts-macron-nsakala-l-r5885","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959243096447","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258101940607","handle":"fussballtrikot-galatasaray-2014-15-heim-nike-xhemaili-s-r5841","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959242277247","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258101481855","handle":"fussballtrikot-fclausanne-sport-2020-22-auswarts-lecoqsportif-pollero-xl-r5789","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959234314623","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258101416319","handle":"fussballtrikot-fclugano-2022-23-heim-errea-o-doumbia-m-r5788","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959234249087","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15258101350783","handle":"fussballtrikot-fcst-gallen-2013-14-drittes-jako-rodriguez-m-r5787","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55959234183551","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15143151731071","handle":"fussballtrikot-gczurich-2011-12-torhuter-adidas-taini-xl-r4576","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55600825532799","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15077266456959","handle":"fussballtrikot-fcwinterthur-2023-24-torhuter-gpard-abaz-l-slim-r4751","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55456369705343","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15065453396351","handle":"fussballtrikot-gczurich-2012-13-torhuter-puma-spiegel-xl-r3687","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55430558581119","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"14933219311999","handle":"fussballtrikot-fclugano-2009-10-heim-errea-renfer-xl-r3679","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55076360061311","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891223609727","handle":"fussballtrikot-schottland-1992-heim-umbro-l-100625","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435937436031","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891220857215","handle":"fussballtrikot-laziorom-1993-95-heim-umbro-l-100981","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435922657663","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15891220169087","handle":"fussballtrikot-glasgowrangers-1999-01-heim-nike-xl-101115","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58435918004607","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884545425791","handle":"fussballtrikot-fcbarcelona-1995-97-heim-nike-giovanni-m-101212","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398596465023","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884545130879","handle":"fussballtrikot-acmilan-2014-15-heim-adidas-montolivo-l-100560","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398596039039","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884544344447","handle":"fussballtrikot-cruzeirobelohorizonte-2003-heim-topper-xl-101003","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398595023231","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884544278911","handle":"fussballtrikot-servettefc-1999-00-drittes-adidas-veiga-kidsxl-100802","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398594957695","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884543983999","handle":"fussballtrikot-vicenzacalcio-1996-97-heim-biemme-xl-100979","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398593352063","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884527174015","handle":"fussballtrikot-panathinaikosathen-2009-10-heim-adidas-xl-101211","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398494556543","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884526879103","handle":"fussballtrikot-chievoverona-1998-auswarts-biemme-l-101208","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398494065023","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15884526748031","handle":"fussballtrikot-argentinien-1997-heim-adidas-l-101207","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58398493868415","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874581561727","handle":"fussballtrikot-usa-1994-auswarts-adidas-s-100982","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352281256319","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874577334655","handle":"fussballtrikot-clubeatleticoparanaense-1997-heim-umbro-l-100991","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352255369599","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874571501951","handle":"fussballtrikot-chile-1997-heim-reebok-l-100735","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352222896511","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874567897471","handle":"fussballtrikot-bocajuniors-2001-02-heim-nike-xl-100976","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352217129343","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874560524671","handle":"fussballtrikot-svaustriasalzburg-2000-03-auswarts-adidas-xl-101031","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352206250367","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874559836543","handle":"fussballtrikot-besiktas-2002-03-spezial-puma-xl-100999","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352205136255","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861445460351","handle":"fussballtrikot-acmilan-1995-96-heim-lotto-xxl-100552","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279198589311","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861437301119","handle":"fussballtrikot-niederlande-1993-heim-lotto-s-100356","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279178043775","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849059877247","handle":"fussballtrikot-italien-2000-heim-kappa-totti-m-100818","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220700598655","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15849045197183","handle":"fussballtrikot-fcaarau-2002-03-heim-jako-wyss-xl-100739","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58220660457855","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901193011583","handle":"fussballjacket-celticglasgow-2011-12-training-nike-s-100510","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486179627391","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901188555135","handle":"fussballjacket-fccarlzeissjena-2006-07-winter-nike-s-101287","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486171468159","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901181477247","handle":"fussballjacket-fcbarcelona-2010-11-warm-up-nike-m-101083","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486158426495","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901179511167","handle":"fussballjacket-fcsion-2009-fan-kappa-xl-100869","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486155706751","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901177971071","handle":"fussballjacket-bscyoungboys-2019-20-training-nike-s-100871","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486153740671","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901177676159","handle":"fussballjacket-fczurich-2025-26-windbreaker-fczurich-s-101289","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486153314687","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901177348479","handle":"fussballjacket-fcluzern-2009-10-training-adidas-s-101290","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486152921471","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901177020799","handle":"fussballjacket-fcst-gallen-ca-1999-raincoat-adidas-m-101291","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486152200575","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901176693119","handle":"fussballjacket-fcbasel-2015-16-winter-adidas-xl-100870","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486151840127","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15901173940607","handle":"fussballjacket-fczurich-2010-windbreaker-nike-s-100637","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58486147776895","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874582348159","handle":"fussballjacket-frankreich-2012-anthem-nike-s-100377","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352284434815","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874579595647","handle":"fussballjacket-sienafc-ca-2007-09-training-umbro-l-100626","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352274866559","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874576515455","handle":"fussballjacket-frankreich-2012-training-nike-l-100875","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352243179903","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874572943743","handle":"fussballjacket-bscyoungboys-2019-20-training-nike-l-100884","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352224600447","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874564292991","handle":"fussballjacket-fcbasel-2024-25-anthem-macron-s-100889","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352212148607","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874553348479","handle":"fussballjacket-fczurich-2020-windbreaker-nike-s-100880","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352162931071","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15874553119103","handle":"fussballjacket-fczurich-2010-11-training-nike-kidsxl-100881","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58352162144639","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861444673919","handle":"fussballjacket-fczurich-2021-22-windbreaker-fczurich-s-101033","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279197409663","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15861439365503","handle":"fussballjacket-england-1990-anthem-umbro-l-100621","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"58279184105855","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15692871926143","handle":"fussballjacket-lagalaxy-2024-anthem-adidas-s-r7581","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57626987692415","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15674220315007","handle":"fussballjacket-riverplate-2021-training-adidas-s-r7527","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57503679644031","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15632278290815","handle":"fussballjacket-acmilan-1998-99-training-adidas-kidsxl-r7314","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57315406446975","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15632278126975","handle":"fussballjacket-fcturin-ca-2020-25-training-joma-m-r7310","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"57315405562239","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15558803423615","handle":"fussballjacket-italien-ca-2014-raincoat-puma-s-r6751","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56979233964415","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15453486383487","handle":"fussballjacket-fcbasel-2023-24-training-macron-l-l5714","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56587619893631","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15409478959487","handle":"fussballjacket-fcbaden-2018-19-training-adidas-m-l5660","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56439536222591","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15350029713791","handle":"fussballjacket-fcbarcelona-2000-01-training-nike-kidsm-l5418-1","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56265801204095","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15326033772927","handle":"fussballjacket-staderennes-fan-staderennes-m-r6224","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56184145838463","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15291705917823","handle":"fussballjacket-sportinglissabon-2019-20-training-macron-m-r6117","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"56072762982783","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"15055584723327","handle":"fussballjacket-trabzonspor-ca-2018-23-training-macron-xl-l5005","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"55406079607167","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]},{"id":"14921274622335","handle":"fussballjacket-meridaad-1995-2000-winterjacke-puma-l-r3455","isCollective":null,"title":null,"type":null,"untranslatedTitle":null,"url":null,"vendor":null,"remoteShopId":null,"variants":[{"id":"54978883617151","image":null,"price":null,"sku":null,"title":null,"untranslatedTitle":null}]}],"purchasingCompany":null},},"https://retroshirts.ch/cdn","c8540278we853e1abpb62b2c4amde256306",{"modern":"","legacy":""},{"trekkieShim":true,"agentContext":true,"apiClientId":"580111","facebookCapiEnabled":"true","themeId":"196418765183","themePublished":"true","eventMetadataId":"328822f6-e1c1-46c8-9181-c8cfa2740c32","pageType":"home","shopId":"58542096407","storefrontBaseUrl":"https:\/\/retroshirts.ch","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"16072cab\", \"8450a54b\", \"7ee89bf1\"]","isMerchantRequest":"false","hashVersion":"c8540278we853e1abpb62b2c4amde256306","publish":"custom","events":"[[\"page_viewed\",{}]]"});})();</script><script>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'CHF';
var meta = {"page":{"pageType":"home","requestId":"30cae968-3239-4b30-806f-2074f1b34b48-1790365376"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>
<script class="analytics">
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
window.ShopifyAnalytics.lib.trekkie = window.trekkie;
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
if (method == 'track' || method == 'page') {
var pageUrl;
try {
pageUrl = window.location.href;
} catch (e) {}
var pageReferrer;
try {
pageReferrer = document.referrer;
} catch (e) {}
try {
if (window.__TREKKIE_SHIM_QUEUE == null) {
window.__TREKKIE_SHIM_QUEUE = [];
}
window.__TREKKIE_SHIM_QUEUE.push({
from: 'trekkie-stub',
method: method,
args: args.slice(1),
pageContext: {
url: pageUrl,
referrer: pageReferrer
}
});
} catch (e) {
// no-op
}
}
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 58542096407,
theme_id: 196418765183,
app_name: "storefront",
context_url: window.location.href,
source_url: "//retroshirts.ch/cdn/s/trekkie.storefront.f1ba865b3fecd812ad617f74ac079261075e9edb.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//retroshirts.ch/cdn/s/trekkie.storefront.f1ba865b3fecd812ad617f74ac079261075e9edb.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//retroshirts.ch/cdn/s/trekkie.storefront.f1ba865b3fecd812ad617f74ac079261075e9edb.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":58542096407,"isMerchantRequest":null,"themeId":196418765183,"themeCityHash":"14913266168942070981","contentLanguage":"de","currency":"CHF","eventMetadataId":"328822f6-e1c1-46c8-9181-c8cfa2740c32"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["764d78cb","8450a54b","7ee89bf1"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"30cae968-3239-4b30-806f-2074f1b34b48-1790365376","shopifyEmitted":true});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//retroshirts.ch/cdn/shopifycloud/storefront/assets/shop_events_listener-4e26a9ce.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
defer
src="https://retroshirts.ch/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.9.4.min.js"
data-application="storefront-renderer"
data-shop-id="58542096407"
data-render-region="gcp-europe-west1"
data-page-type="index"
data-theme-instance-id="196418765183"
data-theme-name="Xtra"
data-theme-version="3.3.0"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
data-shs="true"
data-shs-beacon="true"
data-shs-export-with-fetch="true"
data-shs-logs-sample-rate="1"
data-shs-beacon-endpoint="https://retroshirts.ch/api/collect"
></script>
<meta name="shopify-y" content="00000000-0000-0000-5000-000000000000" data-expiration="1821922976000"><meta name="shopify-s" content="00000000-0000-0000-5000-000000000000" data-expiration="1790367176000"><meta name="new-cookie-storage-activated" content="t">
</head>
<body class="template-index">
<div id="root"><nav id="skip">
<ul>
<li><a href="/" accesskey="a" class="link-accessible">Zugänglichkeitsmodus umschalten (a)</a></li>
<li><a href="/" accesskey="h">Zur Startseite gehen (h)</a></li>
<li><a href="#nav" accesskey="n">Zur Navigation gehen (n)</a></li>
<li><a href="/search" aria-controls="search" accesskey="s">Weiter zur Suche (s)</a></li>
<li><a href="#content" accesskey="c">Weiter zum Inhalt (c)</a></li>
<li><a href="#shopify-section-footer" accesskey="f">Zur Fusszeile gehen (f)</a></li>
</ul>
</nav><!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--29305435259263__header" class="shopify-section shopify-section-group-header-group shopify-section-header">
<script>document.documentElement.classList.add('search-compact-is-centered');</script><nav id="nav-top"><ul class="l4us mobile-text-center no-arrows" data-autoplay=3000><li >
Nur geprüfte Originale
</li><li >
Schneller Versand
</li><li >
30 Tage Rückgaberecht
</li></ul><ul data-type="top-nav">
<li><a href="/pages/contact">Kontakt</a></li>
<li><a href="./" class="link-accessible" aria-label="Zugänglichkeitsmodus umschalten"><i aria-hidden="true" class="icon-text-size"></i> <span class="hidden">Zugänglichkeitsmodus umschalten</span></a></li>
</ul>
</nav><style>
/* RS: mobilen Header kompakter - Abstand unter Logo / ueber Suche reduzieren */
@media (max-width:1000px){
#header{ padding-top:6px!important; }
#header-inner #logo{ margin-bottom:4px!important; }
#header-inner > #search{ margin-top:0!important; margin-bottom:8px!important; }
}
</style>
<div id="header-outer">
<div id="header">
<div id="header-inner" class="no-sticky mobile-visible-search text-center-mobile"><p id="logo">
<a href="/"><picture><img
class="logo-img"
srcset=",//retroshirts.ch/cdn/shop/files/logo-dark-transparent.png?pad_color=fff&v=1693302479&width=165 165w,//retroshirts.ch/cdn/shop/files/logo-dark-transparent.png?pad_color=fff&v=1693302479&width=240 240w,//retroshirts.ch/cdn/shop/files/logo-dark-transparent.png?pad_color=fff&v=1693302479&width=375 375w,//retroshirts.ch/cdn/shop/files/logo-dark-transparent.png?pad_color=fff&v=1693302479&width=533 533w"
src="//retroshirts.ch/cdn/shop/files/logo-dark-transparent.png?v=1693302479&width=140"
sizes=" (min-width: 760px) 140 80 "
width="140"
height="36"
alt="RetroShirts.ch - Originale Fussballtrikots"
>
</picture></a><style data-shopify>
#logo {
--logo_w: 140px;
}
@media only screen and (max-width: 47.5em) {
#logo {
--logo_w: 80px;
}
}
</style>
</p>
<p class="link-btn">
<a href="/" aria-controls="nav">Trikot Katalog <i aria-hidden="true" class="icon-chevron-down"></i></a>
<a class="search-compact" href="#search" aria-controls="search"><i aria-hidden="true" class="icon-zoom"></i> <span class="hidden">Suche</span></a>
</p>
<form action="/search" method="get" id="search" class="text-center-sticky compact-handle">
<fieldset>
<legend>Suche</legend>
<p>
<label for="search_main">Suche</label>
<input type="search" id="search_main" name="q" placeholder="Team, Spieler oder Liga suchen…" autocomplete="off" required>
<button type="submit" class="override">Zoeken</button>
</p>
<div id="livesearch">
<div class="cols">
<p>Die Suchergebnisse</p>
</div>
</div>
</fieldset>
</form>
<nav id="nav-user">
<ul data-type="user-nav"><li class="mobile-only"><a href="/pages/contact">Kontakt</a></li><li class="sub user-login menu-hide"><a href="https://retroshirts.ch/customer_authentication/redirect?locale=de®ion_country=CH" class="toggle mobile-hide"><i aria-hidden="true" aria-label="Einloggen" class="icon-user"></i> <span class="desktop-hide">Einloggen</span></a>
<a href="https://retroshirts.ch/customer_authentication/redirect?locale=de®ion_country=CH" class="mobile-only" data-panel="login" aria-label="Einloggen"><i aria-hidden="true" class="icon-user"></i> <span class="desktop-hide">Einloggen</span></a><form method="post" action="/account/login" id="customer_login" accept-charset="UTF-8" data-login-with-shop-sign-in="true" class="f8vl"><input type="hidden" name="form_type" value="customer_login" /><input type="hidden" name="utf8" value="✓" /><fieldset>
<legend>Anmeldung</legend>
<p class="strong">Anmeldung</p>
<p>
<label for="login_email_address">E-Mail<span class="overlay-theme">*</span></label>
<input type="email" id="login_email_address" name="customer[email]" placeholder="E-Mail" required>
</p>
<p>
<label for="login_password">Password<span class="overlay-theme">*</span> <a href="./" class="show"><span>Toon</span> <span class="hidden">Hide</span></a></label>
<input type="password" id="login_password" name="customer[password]" placeholder="Password" required>
<a href="https://retroshirts.ch/customer_authentication/redirect?locale=de®ion_country=CH#recover" class="size-12">Haben Sie Ihr Passwort vergessen?</a>
</p>
<p class="submit">
<button type="submit">Anmelden</button>
Sie haben noch kein Konto?<br> <a href="https://account.retroshirts.ch?locale=de&buyer_flags=eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJyZXRyb3NoaXJ0c2NoLm15c2hvcGlmeS5jb20iLCJmbGFncyI6W10sImV4cCI6MTc5MDk3MDE3NywibmJmIjoxNzkwMzY1Mzc3fQ.dywiGtMgRE8uHbvDOUAerr6wrD8LfLhyFycuEf8uuns" class="overlay-content">Konto erstellen</a>
</p>
</fieldset></form></li>
<li class="cart">
<a href="/cart" aria-label="Winkelwagen"><i aria-hidden="true" class="icon-cart-bag-wide"><span id="cart-count">0</span></i> <span class="hidden">Warenkorb</span></a>
</li>
</ul>
</nav>
</div>
</div><nav id="nav-bar" aria-label="Back" class="text-center has-menu-bar">
<ul data-type="horizontal-nav">
<li class="" >
<a accesskey="1" href="/collections/neuste-chronologisch">Neueingänge
</a></li><li class="sub-static" >
<a accesskey="2" href="/collections/alle-produkte">Trikots
</a>
<a href="./" class="toggle">Alle Kategorien</a>
<em>(2)</em>
<ul><li>
<ul>
<li>
<a href="/collections/alle-clubs-schweiz">Clubs Schweiz
</a></li>
</li>
</ul><li>
<ul>
<li>
<a href="/collections/alle-clubs-international">Clubs International
</a></li>
</li>
</ul><li>
<ul>
<li>
<a href="/collections/nationalmannschaften">Nationalmannschaften
</a></li>
</li>
</ul><li>
<ul>
<li>
<a href="/collections/nationalteams-frauen">Nationalteams Frauen
</a></li>
</li>
</ul><li>
<ul>
<li>
<a href="/collections/gutscheine"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=60&v=1733547494&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="retroshirts.ch Geschenkgutscheine"
width="30"
height="30">Gutscheine
</a></li>
</li>
</ul></ul></li><li class="" >
<a accesskey="3" href="/pages/store-zuerich">Store Zürich
</a></li><li class="" >
<a accesskey="4" href="/pages/fussballtrikots-verkaufen">Trikots verkaufen
</a></li><li class="sub-static" >
<a accesskey="5" href="/pages/mission">Über uns
</a>
<a href="./" class="toggle">Alle Kategorien</a>
<em>(5)</em>
<ul><li>
<ul>
<li>
<a href="/pages/contact">Kontakt
</a></li>
</li>
</ul><li>
<ul>
<li>
<a href="/pages/impressum-retroshirts-ch">Impressum
</a></li>
</li>
</ul></ul></li><li class="" >
<a accesskey="6" href="/collections/gutscheine"><img
class=""
data-src="//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=60&v=1733547494&width=60"
data-srcset="//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=30&v=1733547494&width=30 1x,//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=60&v=1733547494&width=60 2x"
alt="retroshirts.ch Geschenkgutscheine"
width="30"
height="30">Gutscheine
</a></li><li class="show-all sub-static">
<a href="/" aria-controls="nav">Mehr</a>
</li></ul>
</nav><nav id="nav" aria-label="Menu" class="category-img text-center has-menu-bar">
<ul data-type="main-nav" class="category-img">
<li class="sub" >
<a accesskey="1" href="/collections/alle-clubs-schweiz">Clubs Schweiz
</a>
<em>(1)</em>
<a href="./" class="toggle">Alle Kategorien</a>
<ul>
<li>
<ul>
<li><a href="/collections/fc-zurich-fcz"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Zurich.svg?crop=center&height=60&v=1679001032&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Zürich"
width="30"
height="30">FC Zürich
</a></li>
<li><a href="/collections/fc-basel-1893"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/260px-FCB-Logo_2Stars2017.png?crop=center&height=60&v=1679000948&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Basel"
width="30"
height="30">FC Basel
</a></li>
<li><a href="/collections/gc-zurich"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/gc.jpg?crop=center&height=60&v=1679001093&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="GC Zürich"
width="30"
height="30">GC Zürich
</a></li>
<li><a href="/collections/fc-st-gallen-1879"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_St._Gallen_logo.svg_10103917-7880-46bc-b597-622a35544ee9.png?crop=center&height=60&v=1761353426&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC St. Gallen"
width="30"
height="30">FC St. Gallen
</a></li>
<li><a href="/collections/bsc-young-boys"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/BSC_Young_Boys_Logo.svg_58cb4815-ed1f-4ead-9c5e-78add89c8c01.png?crop=center&height=60&v=1761353370&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="BSC Young Boys"
width="30"
height="30">BSC Young Boys
</a></li>
<li><a href="/collections/fc-thun"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Thun_Logo_2011.png?crop=center&height=60&v=1733546195&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Thun"
width="30"
height="30">FC Thun
</a></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/football-club-de-sion"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Sion.png?crop=center&height=60&v=1733545425&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Sion"
width="30"
height="30">FC Sion
</a></li>
<li><a href="/collections/servette-genf"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/ServetteLogo.png?crop=center&height=60&v=1733546490&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Servette Genf"
width="30"
height="30">Servette FC
</a></li>
<li><a href="/collections/fussball-club-aarau"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Aarau.png?crop=center&height=60&v=1733545260&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Aarau"
width="30"
height="30">FC Aarau
</a></li>
<li><a href="/collections/fc-lugano"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/17_ab7fc158-c751-4438-b36c-49254f626899.png?crop=center&height=60&v=1761356465&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Lugano"
width="30"
height="30">FC Lugano
</a></li>
<li><a href="/collections/fc-luzern"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Luzern.svg?crop=center&height=60&v=1679000975&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Luzern"
width="30"
height="30">FC Luzern
</a></li>
<li><a href="/collections/fc-lausanne-sport"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Lausanne_Sport.png?crop=center&height=60&v=1733545994&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Lausanne–Sport"
width="30"
height="30">FC Lausanne–Sport
</a></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/weitere-ch-clubs">Weitere Schweizer Klubs
</a></li>
</li>
</ul>
</ul></li><li class="sub" >
<a accesskey="2" href="/collections/clubs-international">Clubs International
</a>
<em>(2)</em>
<a href="./" class="toggle">Alle Kategorien</a>
<ul>
<li>
<ul>
<li><a href="/collections/serie-a"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Serie_A.png?crop=center&height=60&v=1733545250&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Serie A"
width="30"
height="30">Serie A
</a>
<a href="/collections/serie-a" class="toggle">Untermenü umschalten Serie A</a>
<ul><li>
<a href="/collections/juventus-football-club"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Juventus.png?crop=center&height=60&v=1679001196&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Juventus"
width="30"
height="30">Juventus
</a>
</li><li>
<a href="/collections/associazione-calcio-milan"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/AC_Milan.png?crop=center&height=60&v=1733545239&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="AC Milan"
width="30"
height="30">AC Milan
</a>
</li><li>
<a href="/collections/football-club-internazionale-milano"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Inter_Mailand.svg?crop=center&height=60&v=1733545203&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Inter Mailand"
width="30"
height="30">Inter Mailand
</a>
</li><li>
<a href="/collections/as-roma"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/roma.png?crop=center&height=60&v=1679000674&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="AS Roma"
width="30"
height="30">AS Roma
</a>
</li><li>
<a href="/collections/lazio-rom"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Lazio_Rom.png?crop=center&height=60&v=1733545979&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Lazio Rom"
width="30"
height="30">Lazio Rom
</a>
</li><li>
<a href="/collections/ssc-neapel"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/SSC_Neapel_svg.png?crop=center&height=60&v=1679001542&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="SSC Napoli"
width="30"
height="30">SSC Napoli
</a>
</li><li>
<a href="/collections/acf-fiorentina"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/3_a18805a8-47ac-4b3e-9707-6256ea222c44.png?crop=center&height=60&v=1761356320&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="ACF Fiorentina"
width="30"
height="30">ACF Fiorentina
</a>
</li><li>
<a href="/collections/parma-calcio-1913"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/26.png?crop=center&height=60&v=1733546482&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Parma Calcio 1913"
width="30"
height="30">Parma Calcio 1913
</a>
</li><li>
<a href="/collections/fc-turin"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Turin.png?crop=center&height=60&v=1734755586&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Turin"
width="30"
height="30">FC Turin
</a>
</li><li>
<a href="/collections/cagliari-calcio"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Cagliari_Calcio.png?crop=center&height=60&v=1733547574&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Cagliari Calcio"
width="30"
height="30">Cagliari Calcio
</a>
</li><li>
<a href="/collections/us-lecce"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/US_Lecce.png?crop=center&height=60&v=1707983252&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="US Lecce"
width="30"
height="30">US Lecce
</a>
</li><li>
<a href="/collections/atalanta-bergamo"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Atalanta.png?crop=center&height=60&v=1733547549&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Atalanta Bergamo"
width="30"
height="30">Atalanta Bergamo
</a>
</li></ul></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/primera-division"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/laliga.png?crop=center&height=60&v=1679001400&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Primera Division"
width="30"
height="30">La Liga
</a>
<a href="/collections/primera-division" class="toggle">Untermenü umschalten La Liga</a>
<ul><li>
<a href="/collections/barcelona"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Barcelona.png?crop=center&height=60&v=1679000941&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Barcelona"
width="30"
height="30">FC Barcelona
</a>
</li><li>
<a href="/collections/real-madrid"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Real_Madrid.png?crop=center&height=60&v=1679001441&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Real Madrid"
width="30"
height="30">Real Madrid
</a>
</li><li>
<a href="/collections/fc-sevilla"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Sevilla_FC_logo.png?crop=center&height=60&v=1733546525&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Sevilla"
width="30"
height="30">FC Sevilla
</a>
</li><li>
<a href="/collections/athletic-bilbao"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Athletic_Bilbao.png?crop=center&height=60&v=1734755497&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Athletic Bilbao"
width="30"
height="30">Athletic Bilbao
</a>
</li><li>
<a href="/collections/espanyol-barcelona"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Rcd_espanyol_logo_09143f12-d86a-4647-9196-4899f67b5221.png?crop=center&height=60&v=1761356254&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Espanyol Barcelona"
width="30"
height="30">Espanyol Barcelona
</a>
</li><li>
<a href="/collections/valencia-cf"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Valencia_CF.png?crop=center&height=60&v=1733545486&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Valencia CF"
width="30"
height="30">Valencia CF
</a>
</li><li>
<a href="/collections/atletico-madrid"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Atletico_Madrid_2017_logo.png?crop=center&height=60&v=1733546257&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Atlético Madrid"
width="30"
height="30">Atlético Madrid
</a>
</li><li>
<a href="/collections/getafe-cf"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Getafe_CF.png?crop=center&height=60&v=1733547370&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Getafe CF"
width="30"
height="30">Getafe CF
</a>
</li><li>
<a href="/collections/villarreal-cf"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Villarreal_CF_logo-en_svg.png?crop=center&height=60&v=1733547203&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Villarreal CF"
width="30"
height="30">Villarreal CF
</a>
</li><li>
<a href="/collections/real-betis"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Real_betis.png?crop=center&height=60&v=1733547240&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Real Betis"
width="30"
height="30">Real Betis
</a>
</li><li>
<a href="/collections/celta-vigo"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/celta-vigo.png?crop=center&height=60&v=1734755553&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Celta Vigo"
width="30"
height="30">Celta Vigo
</a>
</li><li>
<a href="/collections/deportivo-alaves"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/collection-665751126399.png?crop=center&height=60&v=1779102434&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Deportivo Alavés"
width="30"
height="30">Deportivo Alavés
</a>
</li></ul></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/bundesliga"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?crop=center&height=60&v=1733544163&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Bundesliga"
width="30"
height="30">Bundesliga
</a>
<a href="/collections/bundesliga" class="toggle">Untermenü umschalten Bundesliga</a>
<ul><li>
<a href="/collections/fc-bayern-munchen"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Bayern_Munchen.svg?crop=center&height=60&v=1679000955&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Bayern München"
width="30"
height="30">FC Bayern München
</a>
</li><li>
<a href="/collections/borussia-dortmund"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Borussia_Dortmund_logo.svg?crop=center&height=60&v=1679000734&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Borussia Dortmund"
width="30"
height="30">Borussia Dortmund
</a>
</li><li>
<a href="/collections/hamburger-sv"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Hamburger_SV_logo.png?crop=center&height=60&v=1733546443&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Hamburger SV"
width="30"
height="30">Hamburger SV
</a>
</li><li>
<a href="/collections/sc-freiburg"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/13.png?crop=center&height=60&v=1733546687&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="SC Freiburg"
width="30"
height="30">SC Freiburg
</a>
</li><li>
<a href="/collections/vfb-stuttgart"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/VfB_Stuttgart_1893_Logo.jpg?crop=center&height=60&v=1733546329&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="VfB Stuttgart"
width="30"
height="30">VfB Stuttgart
</a>
</li><li>
<a href="/collections/werder-bremen"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/SV-Werder-Bremen-Logo.png?crop=center&height=60&v=1733546411&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Werder Bremen"
width="30"
height="30">Werder Bremen
</a>
</li><li>
<a href="/collections/eintracht-frankfurt-e-v"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Eintracht_Frankfurt.svg?crop=center&height=60&v=1733545374&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Eintracht Frankfurt"
width="30"
height="30">Eintracht Frankfurt
</a>
</li><li>
<a href="/collections/fc-schalke-04"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Schalke_04.svg?crop=center&height=60&v=1733545987&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Schalke 04"
width="30"
height="30">FC Schalke 04
</a>
</li><li>
<a href="/collections/borussia-monchengladbach"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Borussia_Monchengladbach_logo.png?crop=center&height=60&v=1733546248&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Borussia Mönchengladbach"
width="30"
height="30">Borussia Mönchengladbach
</a>
</li><li>
<a href="/collections/bayer-leverkusen"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Bayer_Leverkusen_Logo.png?crop=center&height=60&v=1733546276&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Bayer Leverkusen"
width="30"
height="30">Bayer Leverkusen
</a>
</li><li>
<a href="/collections/fc-augsburg"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/FC_Augsburg.png?crop=center&height=60&v=1733547289&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Augsburg"
width="30"
height="30">FC Augsburg
</a>
</li><li>
<a href="/collections/turn-und-sportgemeinschaft-1899-hoffenheim-e-v"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/TSG_Hoffenheim.png?crop=center&height=60&v=1733545400&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="TSG Hoffenheim"
width="30"
height="30">TSG Hoffenheim
</a>
</li></ul></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/premierleague"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?crop=center&height=60&v=1761353140&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Premier League"
width="30"
height="30">Premier League
</a>
<a href="/collections/premierleague" class="toggle">Untermenü umschalten Premier League</a>
<ul><li>
<a href="/collections/manchester-united-football-club"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Manchester_United.png?crop=center&height=60&v=1733545194&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Manchester United"
width="30"
height="30">Manchester United
</a>
</li><li>
<a href="/collections/fc-liverpool"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Liverpool_FC.png?crop=center&height=60&v=1679001242&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Liverpool FC"
width="30"
height="30">Liverpool FC
</a>
</li><li>
<a href="/collections/arsenal-football-club"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/arsenal.jpg?crop=center&height=60&v=1679000933&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="FC Arsenal"
width="30"
height="30">FC Arsenal
</a>
</li><li>
<a href="/collections/chelsea-football-club"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Chelsea_FC.png?crop=center&height=60&v=1733545357&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Chelsea FC"
width="30"
height="30">Chelsea FC
</a>
</li><li>
<a href="/collections/manchester-city-football-club"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Manchester_City.png?crop=center&height=60&v=1679001263&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Manchester City"
width="30"
height="30">Manchester City
</a>
</li><li>
<a href="/collections/tottenham"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Tottenham.png?crop=center&height=60&v=1733545509&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Tottenham"
width="30"
height="30">Tottenham
</a>
</li><li>
<a href="/collections/leeds-united"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Leeds_United_F.C._logo.png?crop=center&height=60&v=1733546416&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Leeds United"
width="30"
height="30">Leeds United
</a>
</li><li>
<a href="/collections/aston-villa"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/11_e7b0b6be-7e33-4929-a52d-b3e8ad456d73.png?crop=center&height=60&v=1761356415&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Aston Villa"
width="30"
height="30">Aston Villa
</a>
</li><li>
<a href="/collections/everton"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Everton.png?crop=center&height=60&v=1733545936&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Everton"
width="30"
height="30">Everton
</a>
</li><li>
<a href="/collections/fulham"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Fulham.png?crop=center&height=60&v=1733545901&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Fulham"
width="30"
height="30">Fulham
</a>
</li><li>
<a href="/collections/newcastle-united"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Newcastle_United.png?crop=center&height=60&v=1733545911&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Newcastle United"
width="30"
height="30">Newcastle United
</a>
</li><li>
<a href="/collections/nottingham-forest"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Nottingham_Forest.png?crop=center&height=60&v=1733545894&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Nottingham Forest"
width="30"
height="30">Nottingham Forest
</a>
</li></ul></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/internationale-clubs">Weitere Ligen & Teams
</a></li>
</li>
</ul>
</ul></li><li class="sub" >
<a accesskey="3" href="/collections/nationalmannschaften">Nationalteams
</a>
<em>(3)</em>
<a href="./" class="toggle">Alle Kategorien</a>
<ul>
<li>
<ul>
<li><a href="/collections/schweiz"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/switzerland-flag-printed-polyester-nylon-sportswear-mesh.jpg?crop=center&height=60&v=1733544193&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Schweiz"
width="30"
height="30">Schweiz
</a></li>
<li><a href="/collections/spanien"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Spanische_Fussballnationalmannschaft_Logo_2010_1star.svg_Kopie.jpg?crop=center&height=60&v=1733544627&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Spanien"
width="30"
height="30">Spanien
</a></li>
<li><a href="/collections/england"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/England_1.png?crop=center&height=60&v=1679000896&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="England"
width="30"
height="30">England
</a></li>
<li><a href="/collections/deutschland"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Deutschland.png?crop=center&height=60&v=1679000842&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Deutschland"
width="30"
height="30">Deutschland
</a></li>
<li><a href="/collections/italien"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Italien.png?crop=center&height=60&v=1733545127&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Italien"
width="30"
height="30">Italien
</a></li>
<li><a href="/collections/brasilien"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Brasilien.png?crop=center&height=60&v=1679000741&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Brasilien"
width="30"
height="30">Brasilien
</a></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/argentinien"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Argentinien.png?crop=center&height=60&v=1733545154&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Argentinien"
width="30"
height="30">Argentinien
</a></li>
<li><a href="/collections/nationalmannschaft-frankreich"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Frankreich.png?crop=center&height=60&v=1733544279&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Frankreich"
width="30"
height="30">Frankreich
</a></li>
<li><a href="/collections/kroatien"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Kroatien.png?crop=center&height=60&v=1733545416&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Kroatien"
width="30"
height="30">Kroatien
</a></li>
<li><a href="/collections/niederlande"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Image_1_e957e589-18b8-4136-b503-3be4b38e944a.png?crop=center&height=60&v=1761354369&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Niederlande"
width="30"
height="30">Niederlande
</a></li>
<li><a href="/collections/turkei"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Turkey.png?crop=center&height=60&v=1733547406&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Türkei"
width="30"
height="30">Türkei
</a></li>
<li><a href="/collections/osterreich"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Osterreich.png?crop=center&height=60&v=1734755405&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Österreich"
width="30"
height="30">Österreich
</a></li>
</li>
</ul>
<li>
<ul>
<li><a href="/collections/weitere-nationalmannschaften"><img
class=""
data-src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-srcset="//retroshirts.ch/cdn/shop/collections/Image_1_2f8daa68-cb41-4b08-b566-31867398261e.png?crop=center&height=60&v=1761353486&width=60 30w"
sizes=" (min-width: 1000px) 30px 0 "
alt="Weitere Nationalmannschaften"
width="30"
height="30">Weitere Nationen
</a></li>
</li>
</ul>
</ul></li><li class="" >
<a accesskey="4" href="/collections/alle-produkte">Alle Artikel
</a>
<em>(4)</em></li><li class="" >
<a accesskey="5" href="/collections/raritaten">Raritäten
</a>
<em>(5)</em></li><li class="" >
<a accesskey="6" href="/collections/neuste-chronologisch">Neu im Shop
</a>
<em>(6)</em></li><li class="" >
<a accesskey="7" href="/collections/frauen-trikots">Frauentrikots
</a>
<em>(7)</em></li><li class="" >
<a accesskey="8" href="/collections/sale"><img
class=""
data-src="//retroshirts.ch/cdn/shop/collections/winter_sale.png?crop=center&height=60&v=1769823394&width=60"
data-srcset="//retroshirts.ch/cdn/shop/collections/winter_sale.png?crop=center&height=30&v=1769823394&width=30 1x,//retroshirts.ch/cdn/shop/collections/winter_sale.png?crop=center&height=60&v=1769823394&width=60 2x"
alt="SALE - Trikots bis 50% reduziert"
width="30"
height="30"><span class="s1bx overlay-sale">SALE</span></a>
<em>(8)</em></li><li class="" >
<a accesskey="9" href="/collections/gutscheine"><img
class=""
data-src="//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=60&v=1733547494&width=60"
data-srcset="//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=30&v=1733547494&width=30 1x,//retroshirts.ch/cdn/shop/collections/geschenk.png?crop=center&height=60&v=1733547494&width=60 2x"
alt="retroshirts.ch Geschenkgutscheine"
width="30"
height="30">Geschenkgutscheine
</a>
<em>(9)</em></li></ul>
</nav></div><style data-shopify>:root {
--ghw: 1280px;
--custom_top_up_bg: var(--accent_bg);
--custom_top_up_fg: var(--accent_fg);
--custom_top_up_fg_hover: var(--accent_btn_bg);
--custom_top_main_bg: var(--light_bg);
--custom_top_main_fg: var(--light_fg);--custom_top_main_link_bg: var(--accent_bg);
--custom_top_main_link_dark: var(--accent_bg_dark);
--custom_top_main_link_text: var(--accent_fg);
--custom_top_nav_bg: var(--light_bg);
--custom_top_nav_bd: var(--light_bg);
--custom_top_nav_fg: var(--light_fg);
--custom_top_nav_fg_hover: var(--light_btn_bg);
--custom_drop_nav_bg: var(--white_bg);
--custom_drop_nav_fg: var(--white_fg);
--custom_drop_nav_fg_text: var(--white_fg);
--custom_drop_nav_fg_hover: var(--white_btn_bg);
--custom_drop_nav_head_bg: var(--white_bg);
--custom_drop_nav_head_fg: var(--white_fg);
--custom_top_search_bd: transparent;--custom_top_search_bg: var(--white_bg);
--custom_top_search_fg: var(--white_fg);
--custom_top_search_pl: var(--white_pl);
}
@media only screen and (max-width: 62.5em ) {
#root #header .f8vl *, #root .m6pn.f8vl * {
--secondary_btn_text: var(--white_btn_fg);
--secondary_bg_btn: var(--white_btn_bg);
--secondary_bg_btn_dark: var(--white_btn_bg_dark);
--secondary_bg_btn_fade: var(--white_btn_bg_dark);
--white: var(--white_btn_fg);
}
}
#root #header .f8vl .submit, #root .m6pn.f8vl .submit {
--secondary_btn_text: var(--white_btn_fg);
--secondary_bg_btn: var(--white_btn_bg);
--secondary_bg_btn_dark: var(--white_btn_bg_dark);
--secondary_bg_btn_fade: var(--white_btn_bg_dark);
--secondary_bg_fade: var(--secondary_bg_btn_fade);
}
#root .icon-cart:before { content: "\e965"; }
.cart {
--custom_top_main_link_bg: var(--accent_bg);
--custom_top_main_link_dark: var(--accent_bg_dark);
--custom_top_main_link_text: var(--accent_fg);
}
#shopify-section-sections--29305435259263__header #nav {
--custom_drop_nav_head_bg: var(--white_bg_var);
}</style>
</div>
<!-- END sections: header-group --><main id="content">
<section id="shopify-section-template--29305436307839__hero_rs_intro" class="shopify-section"><link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap"><style>
.hero-rs {
--rs-burgundy:#640b22; --rs-burgundy-dark:#540f21; --rs-black:#1a1a1a; --rs-gold:#f0b429;
position:relative; overflow:hidden;
min-height:420px; display:flex; align-items:flex-end;
background:var(--rs-black);
font-family:'Anonymous Pro', ui-monospace, SFMono-Regular, Menlo, monospace;
}
.hero-rs *{ box-sizing:border-box; }
.hero-rs__imgwrap {
position:absolute; inset:0; z-index:0; background-color:var(--rs-black);
background-size:cover; background-position:var(--rs-focal,50% 50%); background-repeat:no-repeat;
}
/* Mobile: dunkle Textzone unten/mitte, Foto oben bunt sichtbar (Richtungs-Verlauf) */
.hero-rs__scrim {
position:absolute; inset:0; z-index:1; pointer-events:none;
background:linear-gradient(to top,
rgba(0,0,0,0.85) 0%,
rgba(0,0,0,0.6) 52%,
rgba(0,0,0,0.341) 80%,
rgba(0,0,0,0.11) 100%);
}
.hero-rs__inner {
position:relative; z-index:2;
width:100%; max-width:820px; margin:0 auto; padding:34px 22px 32px; color:#fff;
}
.hero-rs__overline {
display:inline-block; background:var(--rs-burgundy); color:#fff;
font-family:'Oswald',sans-serif; font-weight:600; font-size:11.5px; letter-spacing:2px;
text-transform:uppercase; padding:5px 14px; margin-bottom:12px;
}
.hero-rs__title {
color:#fff!important;
font-family:'Oswald',sans-serif; font-weight:700; text-transform:uppercase;
font-size:clamp(26px,6.4vw,50px); line-height:1.06; letter-spacing:.5px; margin:0 0 10px;
text-shadow:0 2px 24px rgba(0,0,0,.72), 0 1px 3px rgba(0,0,0,.6); text-wrap:balance;
hyphens:none!important; overflow-wrap:normal; word-break:normal;
}
.hero-rs__sub {
font-size:15px; line-height:1.55; max-width:540px; margin:0 0 16px;
color:#fff!important; text-shadow:0 1px 2px rgba(0,0,0,.95), 0 2px 16px rgba(0,0,0,.92);
}
.hero-rs__stats { display:flex; gap:12px; margin:0 0 16px; }
.hero-rs__stat {
flex:1 1 0; background:rgba(20,20,20,.42); border:1px solid rgba(255,255,255,.14);
border-top:2px solid var(--rs-burgundy); padding:12px 12px; backdrop-filter:blur(2px);
}
.hero-rs__stat b {
display:block; font-family:'Oswald',sans-serif; font-weight:700; font-size:24px;
line-height:1.05; color:#fff;
}
.hero-rs__stat span { display:block; font-size:12px; color:#e6ddd5; margin-top:3px; }
.hero-rs__cta {
display:inline-block; background:var(--rs-burgundy); color:#fff;
font-family:'Oswald',sans-serif; font-weight:600; text-transform:uppercase; letter-spacing:1.2px;
font-size:15px; text-decoration:none; padding:15px 30px; border:0; cursor:pointer;
transition:background .15s ease;
}
.hero-rs__cta, .hero-rs__cta:hover, .hero-rs__cta:focus { color:#fff!important; text-decoration:none!important; }
.hero-rs__cta:hover { background:var(--rs-burgundy-dark); }
.hero-rs__proof {
display:flex; flex-wrap:wrap; align-items:center; gap:10px 16px; margin-top:14px;
font-size:13.5px; color:#efe9e3;
}
.hero-rs__rating { display:inline-flex; align-items:center; gap:8px; }
.hero-rs__stars { color:var(--rs-gold); letter-spacing:1px; font-size:15px; line-height:1; }
.hero-rs__rating b { font-family:'Oswald',sans-serif; font-weight:600; color:#fff; }
.hero-rs__chip {
display:inline-flex; align-items:center; gap:6px;
color:#fff; text-decoration:none; cursor:pointer;
border:1px solid rgba(255,255,255,.45); padding:5px 13px; border-radius:100px; font-size:12.5px;
transition:background .15s ease, border-color .15s ease;
}
.hero-rs__chip:hover { background:rgba(255,255,255,.16); border-color:#fff; }
.hero-rs__chip svg { width:13px; height:13px; fill:none; stroke:var(--rs-gold); stroke-width:2; }
.hero-rs__links { display:block; margin-top:10px; }
.hero-rs__ghost {
color:#fff; font-size:13.5px; text-decoration:underline; text-underline-offset:3px;
opacity:.9;
}
.hero-rs__ghost:hover { opacity:1; }
@media (min-width:750px){
.hero-rs { align-items:center; }
.hero-rs__inner { margin:0 auto 0 0; max-width:780px; padding:54px 40px 54px clamp(24px,4vw,56px); }
.hero-rs__stats { max-width:440px; }
.hero-rs__sub { font-size:16.5px; }
/* Desktop: dunkle Textzone links, buntes Foto rechts kraeftig sichtbar */
.hero-rs__scrim {
background:linear-gradient(to right,
rgba(0,0,0,0.83) 0%,
rgba(0,0,0,0.385) 42%,
rgba(0,0,0,0.099) 70%,
rgba(0,0,0,0) 92%);
}
}
</style>
<section class="hero-rs" style="--rs-focal:45.8535% 31.8183%" aria-label="ORIGINAL · SECONDHAND · EINZELSTÜCK"><link rel="preload" as="image" href="//retroshirts.ch/cdn/shop/files/IMG_1503_2.jpg?v=1773231514&width=2000" fetchpriority="high">
<div class="hero-rs__imgwrap" role="img" aria-label="Original-Fussballtrikots im RetroShirts-Store an der Badenerstrasse in Zürich" style="background-image:url('//retroshirts.ch/cdn/shop/files/IMG_1503_2.jpg?v=1773231514&width=2000');"></div><div class="hero-rs__scrim"></div>
<div class="hero-rs__inner"><span class="hero-rs__overline">ORIGINAL · SECONDHAND · EINZELSTÜCK</span><h1 class="hero-rs__title">FUSSBALLTRIKOTS MIT GESCHICHTE</h1><p class="hero-rs__sub">Über 800 originale Secondhand- und Vintage-Trikots. Jedes Stück wird geprüft, einzeln beschrieben und ist genau einmal verfügbar.</p><div class="hero-rs__stats"><div class="hero-rs__stat"><b>8'500+</b><span>verkaufte Trikots</span></div><div class="hero-rs__stat"><b>800+</b><span>Trikots online</span></div></div><a class="hero-rs__cta" href="/collections/all">TRIKOTS ENTDECKEN</a>
<div class="hero-rs__proof"><span class="hero-rs__rating">
<span class="hero-rs__stars" aria-hidden="true">★★★★★</span>
<b>4.9</b><span>· 115+ Google-Bewertungen</span></span><a class="hero-rs__chip" href="/blogs/news/vintage-trikot-shop-zurich">
<svg viewbox="0 0 24 24" aria-hidden="true"><path d="M12 21s-7-6.3-7-11a7 7 0 0 1 14 0c0 4.7-7 11-7 11Z"/><circle cx="12" cy="10" r="2.5"/></svg>
Laden in Zürich →
</a></div><span class="hero-rs__links"><a class="hero-rs__ghost" href="/pages/editionen">Wie wir Echtheit prüfen →</a></span></div>
</section>
</section><div id="shopify-section-template--29305436307839__section_spacer_wnjQ43" class="shopify-section"><div class="module-spacer desktop-only" style="margin-bottom:20px;"></div>
<div class="module-spacer desktop-hide" style="margin-bottom:20px;"></div>
</div><article id="shopify-section-template--29305436307839__16602912025c583cc8" class="shopify-section"><header class="size-18 mobile-size-14 cols align-middle">
<h1 class="w720 size-50 text-center align-center mobile-size-22">Neuste Trikots</h1>
</header><ul class="l4cl w25 mobile-compact mobile-scroll w50-mobile">
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-frankreich-2000-heim-adidas-zidane-xl-101057">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101057-1.jpg?height=645&pad_color=fff&v=1790069446&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101057-2.jpg?height=645&pad_color=fff&v=1790069446&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-frankreich-2000-heim-adidas-zidane-xl-101057" >Frankreich 2000 Trikot heim Europameister - Final Edition - ZIDANE #10 - 8/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 329
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-acmilan-1990-92-heim-adidas-l-100557">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100557-1.jpg?height=645&pad_color=fff&v=1790069391&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100557-2.jpg?height=645&pad_color=fff&v=1790069391&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-acmilan-1990-92-heim-adidas-l-100557" >AC Milan 1990-92 Trikot heim Meistersaison - #8 - 8/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 269
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-fcthun-2020-21-torhuter-macron-hirzel-l-101284">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101284-1.jpg?height=645&pad_color=fff&v=1790069493&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101284-2.jpg?height=645&pad_color=fff&v=1790069493&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-fcthun-2020-21-torhuter-macron-hirzel-l-101284" >FC Thun 2020-21 Trikot torhüter Player Issue - HIRZEL #30 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 129
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101272-1.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101272-2.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272" >Österreich 2012 Trikot torhüter Player Issue signiert - L/S - LINDNER #12 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 139
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-servettefc-2024-25-torhuter-adidas-mall-xl-101277">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101277-1.jpg?height=645&pad_color=fff&v=1790069491&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101277-2.jpg?height=645&pad_color=fff&v=1790069491&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-servettefc-2024-25-torhuter-adidas-mall-xl-101277" >Servette FC 2024-25 Trikot torhüter Player Specs - MALL #1 - 9/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 119
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-1-fcnurnberg-2005-06-heim-adidas-l-101261">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101261-1.jpg?height=645&pad_color=fff&v=1790069484&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101261-2.jpg?height=645&pad_color=fff&v=1790069484&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-1-fcnurnberg-2005-06-heim-adidas-l-101261" >1. FC Nürnberg 2005-06 Trikot heim signiert vom Team - 7/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 109
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-servettefc-1996-97-auswarts-umbro-xl-101048">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101048-1.jpg?height=645&pad_color=fff&v=1790069435&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101048-2.jpg?height=645&pad_color=fff&v=1790069435&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-servettefc-1996-97-auswarts-umbro-xl-101048" >Servette FC 1996-97 Trikot auswärts - L/S - #19 - 9/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 279
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-england-2002-heim-umbro-owen-xl-101053">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101053-1.jpg?height=645&pad_color=fff&v=1790069442&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101053-2.jpg?height=645&pad_color=fff&v=1790069442&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-england-2002-heim-umbro-owen-xl-101053" >England 2002 Trikot heim - OWEN #10 - 8/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 249
</p>
</div>
</li>
</ul><p class="m0 text-center link-btn button-palette-accent"><a href="/collections/neuste-chronologisch" >Alle neuen Trikots</a></p>
<style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__16602912025c583cc8 { margin-bottom: 50px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__16602912025c583cc8 { margin-bottom: 30px; }
}
</style>
</article><article id="shopify-section-template--29305436307839__section_featured_collection_Lpi9nw" class="shopify-section"><header class="size-18 mobile-size-14 cols align-middle">
<div class="w720 text-center align-center">
<h1 class="w720 size-50 text-center align-center mobile-size-22">Spieler- / Match Trikots</h1><p>Trikots aus der Kabine</p>
</div>
</header><ul class="l4cl w25 mobile-compact mobile-scroll w50-mobile">
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-fcthun-2014-15-heim-nike-hediger-s-r5794">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/r5794-fc-thun-2014-15-trikot-heim-player-issue-hediger-17-8-10-s-587.jpg?height=645&pad_color=fff&v=1756451307&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/r5794-fc-thun-2014-15-trikot-heim-player-issue-hediger-17-8-10-s-352.jpg?height=645&pad_color=fff&v=1756451311&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-fcthun-2014-15-heim-nike-hediger-s-r5794" >FC Thun 2014-15 Trikot heim Player Issue - HEDIGER #17 - 8/10 - [S]</a></h3></div><div class="static">
<p class="price">CHF 149
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-gczurich-2011-12-heim-adidas-deridder-m-r3686">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/r3686-gc-zuerich-2011-12-trikot-heim-match-prepared-coa-signiert-de-ridder-16-4-10-m-698.jpg?height=645&pad_color=fff&v=1746775281&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/r3686-gc-zuerich-2011-12-trikot-heim-match-prepared-coa-signiert-de-ridder-16-4-10-m-646.jpg?height=645&pad_color=fff&v=1746775281&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-gczurich-2011-12-heim-adidas-deridder-m-r3686" >GC Zürich 2011-12 Trikot heim Match Prepared mit COA signiert - De Ridder #16 - 4/10 - [M]</a></h3></div><div class="static">
<p class="price">CHF 199
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101272-1.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101272-2.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272" >Österreich 2012 Trikot torhüter Player Issue signiert - L/S - LINDNER #12 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 139
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-fcthun-2020-21-torhuter-macron-hirzel-l-101284">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101284-1.jpg?height=645&pad_color=fff&v=1790069493&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101284-2.jpg?height=645&pad_color=fff&v=1790069493&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-fcthun-2020-21-torhuter-macron-hirzel-l-101284" >FC Thun 2020-21 Trikot torhüter Player Issue - HIRZEL #30 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 129
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-fcbarcelona-1998-01-auswarts-nike-trashorras-l-101041">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101041-1.jpg?height=645&pad_color=fff&v=1790069432&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101041-2.jpg?height=645&pad_color=fff&v=1790069431&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-fcbarcelona-1998-01-auswarts-nike-trashorras-l-101041" >FC Barcelona 1998-01 Trikot auswärts Player Issue Meistersaison - TRASHORRAS #31 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 349
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-gczurich-2013-14-heim-puma-f-feltscher-l-100850">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100850-1.jpg?height=645&pad_color=fff&v=1788437478&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100850-2.jpg?height=645&pad_color=fff&v=1788437479&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-gczurich-2013-14-heim-puma-f-feltscher-l-100850" >GC Zürich 2013-14 Trikot heim Player Issue - F.FELTSCHER #11 - 7/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 149
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-neuchatelxamax-2006-07-torhuter-erima-zubi-xxl-101118">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101118-1.jpg?height=645&pad_color=fff&v=1788437596&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101118-2.jpg?height=645&pad_color=fff&v=1788437596&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-neuchatelxamax-2006-07-torhuter-erima-zubi-xxl-101118" >Neuchâtel Xamax 2006-07 Trikot torhüter Player Issue Aufstiegssaison - L/S - ZUBI #28 - 5/10 - [XXL]</a></h3></div><div class="static">
<p class="price">CHF 299
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-servettefc-2002-03-auswarts-errea-galvao-xl-100805">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100805-1.jpg?height=645&pad_color=fff&v=1787829180&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100805-2.jpg?height=645&pad_color=fff&v=1787829180&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-servettefc-2002-03-auswarts-errea-galvao-xl-100805" >Servette FC 2002-03 Trikot auswärts Player Issue - GALVAO #15 - 6/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 269
</p>
</div>
</li>
</ul><p class="m0 text-center link-btn button-palette-accent"><a href="/collections/matchtrikots" >Alle Match Trikots</a></p>
<style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__section_featured_collection_Lpi9nw { margin-bottom: 50px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__section_featured_collection_Lpi9nw { margin-bottom: 30px; }
}
</style>
</article><article id="shopify-section-template--29305436307839__section_featured_collection_baULdD" class="shopify-section"><header class="size-18 mobile-size-14 cols align-middle">
<h1 class="w720 size-50 text-center align-center mobile-size-22">Raritäten</h1>
</header><ul class="l4cl w25 mobile-compact mobile-scroll w50-mobile">
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-frankreich-2000-heim-adidas-zidane-xl-101057">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101057-1.jpg?height=645&pad_color=fff&v=1790069446&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101057-2.jpg?height=645&pad_color=fff&v=1790069446&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-frankreich-2000-heim-adidas-zidane-xl-101057" >Frankreich 2000 Trikot heim Europameister - Final Edition - ZIDANE #10 - 8/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 329
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-acmilan-1990-92-heim-adidas-l-100557">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100557-1.jpg?height=645&pad_color=fff&v=1790069391&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100557-2.jpg?height=645&pad_color=fff&v=1790069391&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-acmilan-1990-92-heim-adidas-l-100557" >AC Milan 1990-92 Trikot heim Meistersaison - #8 - 8/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 269
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101272-1.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101272-2.jpg?height=645&pad_color=fff&v=1790069487&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-osterreich-2012-torhuter-puma-lindner-l-101272" >Österreich 2012 Trikot torhüter Player Issue signiert - L/S - LINDNER #12 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 139
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-servettefc-1996-97-auswarts-umbro-xl-101048">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101048-1.jpg?height=645&pad_color=fff&v=1790069435&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101048-2.jpg?height=645&pad_color=fff&v=1790069435&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-servettefc-1996-97-auswarts-umbro-xl-101048" >Servette FC 1996-97 Trikot auswärts - L/S - #19 - 9/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 279
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-england-2002-heim-umbro-owen-xl-101053">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101053-1.jpg?height=645&pad_color=fff&v=1790069442&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101053-2.jpg?height=645&pad_color=fff&v=1790069442&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-england-2002-heim-umbro-owen-xl-101053" >England 2002 Trikot heim - OWEN #10 - 8/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 249
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-schweiz-1994-auswarts-lotto-xxl-101047">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101047-1.jpg?height=645&pad_color=fff&v=1790069433&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101047-2.jpg?height=645&pad_color=fff&v=1790069434&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-schweiz-1994-auswarts-lotto-xxl-101047" >Schweiz 1994 Trikot auswärts - L/S - #11 - 7/10 - [XXL]</a></h3></div><div class="static">
<p class="price">CHF 249
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-england-2002-auswarts-umbro-scholes-xl-101054">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101054-1.jpg?height=645&pad_color=fff&v=1790069444&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101054-2.jpg?height=645&pad_color=fff&v=1790069445&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-england-2002-auswarts-umbro-scholes-xl-101054" >England 2002 Trikot auswärts - SCHOLES #8 - 9/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 249
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballtrikot-fcbarcelona-1998-01-auswarts-nike-trashorras-l-101041">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101041-1.jpg?height=645&pad_color=fff&v=1790069432&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101041-2.jpg?height=645&pad_color=fff&v=1790069431&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballtrikot-fcbarcelona-1998-01-auswarts-nike-trashorras-l-101041" >FC Barcelona 1998-01 Trikot auswärts Player Issue Meistersaison - TRASHORRAS #31 - 9/10 - [L]</a></h3></div><div class="static">
<p class="price">CHF 349
</p>
</div>
</li>
</ul><p class="m0 text-center link-btn button-palette-accent"><a href="/collections/raritaten" >Alle Raritäten</a></p>
<style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__section_featured_collection_baULdD { margin-bottom: 50px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__section_featured_collection_baULdD { margin-bottom: 30px; }
}
</style>
</article><article id="shopify-section-template--29305436307839__1660291177d9f45101" class="shopify-section section">
<header class="cols"><h1 class="w720 size-50 text-center align-center mobile-size-22">Ligen</h1></header><ul class="l4cl category orientation-square w12 mobile-compact">
<li>
<h3 ><a href="/collections/schweizer-super-league"><span>Super League</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?crop=center&height=240&v=1766954455&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=165 165w,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=240 240w,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=375 375w,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=533 533w,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=720 720w,//retroshirts.ch/cdn/shop/collections/Brack_Super_League.png?pad_color=fff&v=1766954455&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Super League"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/bundesliga"><span>Bundesliga</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?crop=center&height=240&v=1733544163&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=165 165w,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=240 240w,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=375 375w,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=533 533w,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=720 720w,//retroshirts.ch/cdn/shop/collections/logo_square_bundesliga.jpg?pad_color=fff&v=1733544163&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Bundesliga"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/premierleague"><span>Premier League</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?crop=center&height=240&v=1761353140&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?pad_color=fff&v=1761353140&width=165 165w,//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?pad_color=fff&v=1761353140&width=240 240w,//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?pad_color=fff&v=1761353140&width=375 375w,//retroshirts.ch/cdn/shop/collections/Premier_League_Logo.svg_8cfae18c-571a-480c-ace8-d75ada895035.png?pad_color=fff&v=1761353140&width=533 533w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Premier League"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/serie-a"><span>Serie A</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Serie_A.png?crop=center&height=240&v=1733545250&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=165 165w,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=240 240w,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=375 375w,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=533 533w,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=720 720w,//retroshirts.ch/cdn/shop/collections/Serie_A.png?pad_color=fff&v=1733545250&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Serie A"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/ligue-1"><span>Ligue 1</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Ligue_1.png?crop=center&height=240&v=1733545632&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=165 165w,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=240 240w,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=375 375w,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=533 533w,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=720 720w,//retroshirts.ch/cdn/shop/collections/Ligue_1.png?pad_color=fff&v=1733545632&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Ligue 1"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/primera-division"><span>La Liga</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/laliga.png?crop=center&height=240&v=1679001400&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/laliga.png?pad_color=fff&v=1679001400&width=165 165w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Primera Division"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/challengue-league"><span>Challenge League</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Challengue_League.png?crop=center&height=240&v=1733545293&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=165 165w,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=240 240w,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=375 375w,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=533 533w,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=720 720w,//retroshirts.ch/cdn/shop/collections/Challengue_League.png?pad_color=fff&v=1733545293&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Challengue League"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/primeira-liga-portugal"><span>Primeira Liga</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?crop=center&height=240&v=1733545349&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=165 165w,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=240 240w,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=375 375w,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=533 533w,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=720 720w,//retroshirts.ch/cdn/shop/collections/Primeira_Liga_Portugal.png?pad_color=fff&v=1733545349&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Primeira Liga (Portugal)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/ligue-2"><span>Ligue 2</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Rertro.png?crop=center&height=240&v=1733546552&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Rertro.png?pad_color=fff&v=1733546552&width=165 165w,//retroshirts.ch/cdn/shop/collections/Rertro.png?pad_color=fff&v=1733546552&width=240 240w,//retroshirts.ch/cdn/shop/collections/Rertro.png?pad_color=fff&v=1733546552&width=375 375w,//retroshirts.ch/cdn/shop/collections/Rertro.png?pad_color=fff&v=1733546552&width=533 533w,//retroshirts.ch/cdn/shop/collections/Rertro.png?pad_color=fff&v=1733546552&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Ligue 2"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/serie-b"><span>Serie B</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?crop=center&height=240&v=1733546478&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?pad_color=fff&v=1733546478&width=165 165w,//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?pad_color=fff&v=1733546478&width=240 240w,//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?pad_color=fff&v=1733546478&width=375 375w,//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?pad_color=fff&v=1733546478&width=533 533w,//retroshirts.ch/cdn/shop/collections/Serie_BKT_logo.png?pad_color=fff&v=1733546478&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Serie B"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/bundesliga-osterreich"><span>Bundesliga (Österreich)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?crop=center&height=240&v=1733545718&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=165 165w,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=240 240w,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=375 375w,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=533 533w,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=720 720w,//retroshirts.ch/cdn/shop/collections/Bundesliga_Osterreich.png?pad_color=fff&v=1733545718&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Bundesliga (Österreich)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/eredivisie"><span>Eredivisie</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Eredivisie_nieuw_logo_2017.png?crop=center&height=240&v=1733546170&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Eredivisie_nieuw_logo_2017.png?pad_color=fff&v=1733546170&width=165 165w,//retroshirts.ch/cdn/shop/collections/Eredivisie_nieuw_logo_2017.png?pad_color=fff&v=1733546170&width=240 240w,//retroshirts.ch/cdn/shop/collections/Eredivisie_nieuw_logo_2017.png?pad_color=fff&v=1733546170&width=375 375w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Eredivisie"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/fortuna-liga"><span>Fortuna:Liga</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?crop=center&height=240&v=1733547436&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?pad_color=fff&v=1733547436&width=165 165w,//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?pad_color=fff&v=1733547436&width=240 240w,//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?pad_color=fff&v=1733547436&width=375 375w,//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?pad_color=fff&v=1733547436&width=533 533w,//retroshirts.ch/cdn/shop/collections/fortuna-liga.png?pad_color=fff&v=1733547436&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Fortuna:Liga"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/major-league-soccer"><span>Major League Soccer</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?crop=center&height=240&v=1733546660&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?pad_color=fff&v=1733546660&width=165 165w,//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?pad_color=fff&v=1733546660&width=240 240w,//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?pad_color=fff&v=1733546660&width=375 375w,//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?pad_color=fff&v=1733546660&width=533 533w,//retroshirts.ch/cdn/shop/collections/MLS_crest_logo_RG.png?pad_color=fff&v=1733546660&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Major League Soccer"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/premijer-liga-bosnien-und-herzegowina"><span>Premijer Liga (Bosnien und Herzegowina)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?crop=center&height=240&v=1733547077&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?pad_color=fff&v=1733547077&width=165 165w,//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?pad_color=fff&v=1733547077&width=240 240w,//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?pad_color=fff&v=1733547077&width=375 375w,//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?pad_color=fff&v=1733547077&width=533 533w,//retroshirts.ch/cdn/shop/collections/Premijer_Liga_Bosnien_und_Herzegowina.png?pad_color=fff&v=1733547077&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Premijer Liga (Bosnien und Herzegowina)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/premjer-liha"><span>Premjer-Liha</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Rertro_9.png?crop=center&height=240&v=1733546732&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Rertro_9.png?pad_color=fff&v=1733546732&width=165 165w,//retroshirts.ch/cdn/shop/collections/Rertro_9.png?pad_color=fff&v=1733546732&width=240 240w,//retroshirts.ch/cdn/shop/collections/Rertro_9.png?pad_color=fff&v=1733546732&width=375 375w,//retroshirts.ch/cdn/shop/collections/Rertro_9.png?pad_color=fff&v=1733546732&width=533 533w,//retroshirts.ch/cdn/shop/collections/Rertro_9.png?pad_color=fff&v=1733546732&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Premjer-Liha"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/primera-division-chile"><span>Primera Division (Chile)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?crop=center&height=240&v=1733546486&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?pad_color=fff&v=1733546486&width=165 165w,//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?pad_color=fff&v=1733546486&width=240 240w,//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?pad_color=fff&v=1733546486&width=375 375w,//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?pad_color=fff&v=1733546486&width=533 533w,//retroshirts.ch/cdn/shop/collections/Campeonato_AFP_Plan_Vital.png?pad_color=fff&v=1733546486&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Primera Division (Chile)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/primera-division-argentinien"><span>Primera División (Argentinien)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Logo_de_la_Liga_Profesional_de_Futbol_de_Argentina.png?crop=center&height=240&v=1733546385&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Logo_de_la_Liga_Profesional_de_Futbol_de_Argentina.png?pad_color=fff&v=1733546385&width=165 165w,//retroshirts.ch/cdn/shop/collections/Logo_de_la_Liga_Profesional_de_Futbol_de_Argentina.png?pad_color=fff&v=1733546385&width=240 240w,//retroshirts.ch/cdn/shop/collections/Logo_de_la_Liga_Profesional_de_Futbol_de_Argentina.png?pad_color=fff&v=1733546385&width=375 375w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Primera División (Argentinien)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/primera-federacion"><span>Primera Federación</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/primera.png?crop=center&height=240&v=1733547212&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/primera.png?pad_color=fff&v=1733547212&width=165 165w,//retroshirts.ch/cdn/shop/collections/primera.png?pad_color=fff&v=1733547212&width=240 240w,//retroshirts.ch/cdn/shop/collections/primera.png?pad_color=fff&v=1733547212&width=375 375w,//retroshirts.ch/cdn/shop/collections/primera.png?pad_color=fff&v=1733547212&width=533 533w,//retroshirts.ch/cdn/shop/collections/primera.png?pad_color=fff&v=1733547212&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Primera Federación"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/scottish-premiership"><span>Scottish Premiership</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Cinch_premiership.jpg?crop=center&height=240&v=1733545728&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Cinch_premiership.jpg?pad_color=fff&v=1733545728&width=165 165w,//retroshirts.ch/cdn/shop/collections/Cinch_premiership.jpg?pad_color=fff&v=1733545728&width=240 240w,//retroshirts.ch/cdn/shop/collections/Cinch_premiership.jpg?pad_color=fff&v=1733545728&width=375 375w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Scottish Premiership"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/segunda-division"><span>Segunda División</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/10.png?crop=center&height=240&v=1733546790&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/10.png?pad_color=fff&v=1733546790&width=165 165w,//retroshirts.ch/cdn/shop/collections/10.png?pad_color=fff&v=1733546790&width=240 240w,//retroshirts.ch/cdn/shop/collections/10.png?pad_color=fff&v=1733546790&width=375 375w,//retroshirts.ch/cdn/shop/collections/10.png?pad_color=fff&v=1733546790&width=533 533w,//retroshirts.ch/cdn/shop/collections/10.png?pad_color=fff&v=1733546790&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Segunda División"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/south-african-premier-division"><span>South African Premier Division</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/dstv.png?crop=center&height=240&v=1733547330&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/dstv.png?pad_color=fff&v=1733547330&width=165 165w,//retroshirts.ch/cdn/shop/collections/dstv.png?pad_color=fff&v=1733547330&width=240 240w,//retroshirts.ch/cdn/shop/collections/dstv.png?pad_color=fff&v=1733547330&width=375 375w,//retroshirts.ch/cdn/shop/collections/dstv.png?pad_color=fff&v=1733547330&width=533 533w,//retroshirts.ch/cdn/shop/collections/dstv.png?pad_color=fff&v=1733547330&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="South African Premier Division"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/super-league-griechenland"><span>Super League (Griechenland)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?crop=center&height=240&v=1761356365&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?pad_color=fff&v=1761356365&width=165 165w,//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?pad_color=fff&v=1761356365&width=240 240w,//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?pad_color=fff&v=1761356365&width=375 375w,//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?pad_color=fff&v=1761356365&width=533 533w,//retroshirts.ch/cdn/shop/collections/3_f9460f0a-88ac-4507-a3d8-1778b676b741.png?pad_color=fff&v=1761356365&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Super League (Griechenland)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/superliga-danemark"><span>Superliga (Dänemark)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/superliga-d.png?crop=center&height=240&v=1733547194&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/superliga-d.png?pad_color=fff&v=1733547194&width=165 165w,//retroshirts.ch/cdn/shop/collections/superliga-d.png?pad_color=fff&v=1733547194&width=240 240w,//retroshirts.ch/cdn/shop/collections/superliga-d.png?pad_color=fff&v=1733547194&width=375 375w,//retroshirts.ch/cdn/shop/collections/superliga-d.png?pad_color=fff&v=1733547194&width=533 533w,//retroshirts.ch/cdn/shop/collections/superliga-d.png?pad_color=fff&v=1733547194&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Superliga (Dänemark)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/superliga-serbien"><span>SuperLiga (Serbien)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Image_1_8dbf8e74-5e1d-4f51-a36d-b07718ed5513.png?crop=center&height=240&v=1761354736&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Image_1_8dbf8e74-5e1d-4f51-a36d-b07718ed5513.png?pad_color=fff&v=1761354736&width=165 165w,//retroshirts.ch/cdn/shop/collections/Image_1_8dbf8e74-5e1d-4f51-a36d-b07718ed5513.png?pad_color=fff&v=1761354736&width=240 240w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="SuperLiga (Serbien)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/serie-a-brasilien"><span>Série A (Brasilien)</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?crop=center&height=240&v=1733546588&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?pad_color=fff&v=1733546588&width=165 165w,//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?pad_color=fff&v=1733546588&width=240 240w,//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?pad_color=fff&v=1733546588&width=375 375w,//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?pad_color=fff&v=1733546588&width=533 533w,//retroshirts.ch/cdn/shop/collections/Campeonato_Brasileiro_Serie.png?pad_color=fff&v=1733546588&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Série A (Brasilien)"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/super-lig"><span>Süper Lig</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/Super_Lig.png?crop=center&height=240&v=1733545827&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=165 165w,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=240 240w,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=375 375w,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=533 533w,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=720 720w,//retroshirts.ch/cdn/shop/collections/Super_Lig.png?pad_color=fff&v=1733545827&width=940 940w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Süper Lig"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/thai-league-1"><span>Thai League 1</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?crop=center&height=240&v=1761356120&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?pad_color=fff&v=1761356120&width=165 165w,//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?pad_color=fff&v=1761356120&width=240 240w,//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?pad_color=fff&v=1761356120&width=375 375w,//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?pad_color=fff&v=1761356120&width=533 533w,//retroshirts.ch/cdn/shop/collections/6_1fab0f4d-8c7b-4379-ab1e-babc386778a0.png?pad_color=fff&v=1761356120&width=720 720w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Thai League 1"
>
</picture>
</figure></a></h3>
</li><li>
<h3 ><a href="/collections/womens-super-league"><span>Women's Super League</span><i aria-hidden="true" class="icon-chevron-right mobile-hide"></i>
<figure class="">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/collections/AWSL_Logo.png?crop=center&height=240&v=1733546178&width=240"
data-srcset=" ,//retroshirts.ch/cdn/shop/collections/AWSL_Logo.png?pad_color=fff&v=1733546178&width=165 165w,//retroshirts.ch/cdn/shop/collections/AWSL_Logo.png?pad_color=fff&v=1733546178&width=240 240w "
sizes=" (min-width: 1300px) calc(1280px * 0.12), (min-width: 760px) calc(100vw * 0.12), 141px "
width="240"
height="240"
alt="Women’s Super League"
>
</picture>
</figure></a></h3>
</li></ul><style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__1660291177d9f45101 .l4cl { margin-bottom: 28px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__1660291177d9f45101 .l4cl { margin-bottom: 22px; }
}
</style>
</article><div id="shopify-section-template--29305436307839__1750624276c41ea558" class="shopify-section">
<div id="shopify-block-AVy82QmowSEJqUkZQc__google_reviews_widgets_plus_review_list_widget_HjmWwm" class="shopify-block shopify-app-block">
<div style="margin:0 0px">
<h2></h2>
</div>
<div data-flash-reviews data-block-id="AVy82QmowSEJqUkZQc__google_reviews_widgets_plus_review_list_widget_HjmWwm"></div>
<!-- BEGIN app snippet: widget_script -->
<script src="https://app.flash.reviews/api/render/widget.js?shop=retroshirtsch.myshopify.com&blockId=AVy82QmowSEJqUkZQc__google_reviews_widgets_plus_review_list_widget_HjmWwm&widgetType=carousel&widgetCode=&widgetTheme=light&reviewLimit=10&sortBy=review-date&minimumStars=0&resourceType=index" async></script>
<!-- END app snippet -->
</div>
</div><article id="shopify-section-template--29305436307839__f27bde73-e87c-4f0a-b1d1-beb8ffc7cab1" class="shopify-section"><header class="size-18 mobile-size-14 cols align-middle">
<h1 class="w720 size-50 text-center align-center mobile-size-22">Jackets</h1>
</header><ul class="l4cl w25 mobile-compact mobile-scroll w50-mobile">
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballjacket-celticglasgow-2011-12-training-nike-s-100510">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100510-1.jpg?height=645&pad_color=fff&v=1790069387&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100510-2.jpg?height=645&pad_color=fff&v=1790069387&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballjacket-celticglasgow-2011-12-training-nike-s-100510" >Celtic Glasgow 2011-12 Jacket training Meistersaison - L/S - 8/10 - [S]</a></h3></div><div class="static">
<p class="price">CHF 79
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballjacket-fccarlzeissjena-2006-07-winter-nike-s-101287">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101287-1.jpg?height=645&pad_color=fff&v=1790069497&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101287-2.jpg?height=645&pad_color=fff&v=1790069497&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballjacket-fccarlzeissjena-2006-07-winter-nike-s-101287" >FC Carl Zeiss Jena 2006-07 Jacket winter - 8/10 - [S]</a></h3></div><div class="static">
<p class="price">CHF 99
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballjacket-fcbarcelona-2010-11-warm-up-nike-m-101083">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/101083-1.jpg?height=645&pad_color=fff&v=1790069451&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/101083-2.jpg?height=645&pad_color=fff&v=1790069452&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballjacket-fcbarcelona-2010-11-warm-up-nike-m-101083" >FC Barcelona 2010-11 Jacket warm-up Meistersaison - L/S - 9/10 - [M]</a></h3></div><div class="static">
<p class="price">CHF 79
</p>
</div>
</li>
<li class="has-form text-center second-img-hover"
><figure >
<span class="s1lb label">
</span>
<a href="/products/fussballjacket-fcsion-2009-fan-kappa-xl-100869">
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/files/100869-1.jpg?height=645&pad_color=fff&v=1790069403&width=645">
</picture><picture>
<img
src="//retroshirts.ch/cdn/shop/files/100869-2.jpg?height=645&pad_color=fff&v=1790069403&width=645">
</picture></a>
</figure><div>
<h3 class="p0"><a href="/products/fussballjacket-fcsion-2009-fan-kappa-xl-100869" >FC Sion 2009 Jacket fan - L/S - 7/10 - [XL]</a></h3></div><div class="static">
<p class="price">CHF 79
</p>
</div>
</li>
</ul><p class="m0 text-center link-btn button-palette-accent"><a href="/collections/neue-jackets" >Alle Jackets</a></p>
<style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__f27bde73-e87c-4f0a-b1d1-beb8ffc7cab1 { margin-bottom: 50px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__f27bde73-e87c-4f0a-b1d1-beb8ffc7cab1 { margin-bottom: 30px; }
}
</style>
</article><div id="shopify-section-template--29305436307839__1776682771b22fa10f" class="shopify-section">
</div><article id="shopify-section-template--29305436307839__166029123538307d80" class="shopify-section"><header class="cols align-middle"><h1 class="w720 size-50 text-center align-center mobile-size-22">News</h1></header><ul class="l4ne landscape w33">
<li>
<figure>
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?v=1781626974"
data-srcset=",//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=165 165w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=240 240w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=375 375w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=533 533w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=720 720w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=940 940w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=1066 1066w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=1280 1280w,//retroshirts.ch/cdn/shop/articles/IMG_2662_c4af3325-1fb5-458d-8814-635d8a71182b.jpg?pad_color=fff&v=1781626974&width=1400 1400w"
sizes=" (min-width: 1300px) calc(1280px * 0.5) (min-width: 760px) calc(100vw * 0.5) 100vw "
width="410"
height="310"
alt="PopUp Store HB Zürich"
>
</picture>
</figure>
<h3>
PopUp Store HB Zürich
</h3>
<p class="button-palette-accent"><a href="/blogs/news/popup-store-hb-zurich" class="strong">Weiterlesen <i aria-hidden="true" class="icon-chevron-right"></i></a></p>
</li>
<li>
<figure>
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/articles/atlas.jpg?v=1781097136"
data-srcset=",//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=165 165w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=240 240w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=375 375w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=533 533w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=720 720w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=940 940w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=1066 1066w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=1280 1280w,//retroshirts.ch/cdn/shop/articles/atlas.jpg?pad_color=fff&v=1781097136&width=1400 1400w"
sizes=" (min-width: 1300px) calc(1280px * 0.5) (min-width: 760px) calc(100vw * 0.5) 100vw "
width="410"
height="310"
alt="Welches Trikot trägt dein Kanton? Der Trikot Atlas der Schweiz"
>
</picture>
</figure>
<h3>
Welches Trikot trägt dein Kanton? Der Trikot Atlas der Schweiz
</h3>
<p class="button-palette-accent"><a href="/blogs/news/welches-trikot-tragt-dein-kanton-der-trikot-atlas-der-schweiz" class="strong">Weiterlesen <i aria-hidden="true" class="icon-chevron-right"></i></a></p>
</li>
<li>
<figure>
<picture>
<img
src="//retroshirts.ch/cdn/shop/t/60/assets/placeholder-pixel_small.png?v=33125877389226915141782384562"
data-src="//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?v=1766487442"
data-srcset=",//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=165 165w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=240 240w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=375 375w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=533 533w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=720 720w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=940 940w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=1066 1066w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=1280 1280w,//retroshirts.ch/cdn/shop/articles/img-7173_51562779-07e5-4b4d-9885-15eb6d8520f0.webp?pad_color=fff&v=1766487442&width=1400 1400w"
sizes=" (min-width: 1300px) calc(1280px * 0.5) (min-width: 760px) calc(100vw * 0.5) 100vw "
width="410"
height="310"
alt="Öffnungs- und Lieferzeiten Festtage 2025"
>
</picture>
</figure>
<h3>
Öffnungs- und Lieferzeiten Festtage 2025
</h3>
<p class="button-palette-accent"><a href="/blogs/news/offnungs-und-lieferzeiten-festtage-2025" class="strong">Weiterlesen <i aria-hidden="true" class="icon-chevron-right"></i></a></p>
</li>
</ul><p class="m0 text-center link-btn button-palette-accent"><a href="/blogs/news" >Zu allen Newsartikeln</a></p>
<style>
@media only screen and (min-width: 47.5em) {
#shopify-section-template--29305436307839__166029123538307d80 { margin-bottom: 50px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__166029123538307d80 { margin-bottom: 30px; }
}
</style>
</article><div id="shopify-section-template--29305436307839__1660291186859914cb" class="shopify-section"><ul class="palette-light module-color-palette l4us wide no-nav"
><li >
Online seit 2022
</li><li >
Über 5000 Trikots verkauft
</li><li >
Zufriedenheit garantiert
</li></ul>
<style>
#shopify-section-template--29305436307839__1660291186859914cb .l4us { margin-bottom: 50px; }
@media only screen and (max-width: 47.5em) {
#shopify-section-template--29305436307839__1660291186859914cb .l4us { margin-bottom: 30px; }
}
</style>
</div>
<!-- BEGIN sections: footer-group -->
<footer id="shopify-section-sections--29305435226495__footer" class="shopify-section shopify-section-group-footer-group shopify-section-footer">
<nav id="shopify-section-footer"><div class="m6cn mobile-no-img" ><h3>Können wir helfen?</h3><p>Gern unterstützen wir dich bei Fragen oder Unklarheiten. </p>
<ul class="l4cn">
<li><a href="tel:+41766511219"><i aria-hidden="true" class="icon-phone"></i> +41766511219</a></li>
<li><a href="mailto:shop@retroshirts.ch" class="email"><i aria-hidden="true" class="icon-envelope"></i> shop@retroshirts.ch</a></li>
<li><a href="https://wa.me/41766511219"><i aria-hidden="true" class="icon-whatsapp-overlay"></i> Schreib uns auf <span class='strong'>WhatsApp</span></a></li>
</ul></div>
<div class="strong" ><h3>Rechtliches</h3><ul><li><a href="/pages/contact" title="Kontakt">Kontakt</a></li><li><a href="/pages/versandrichtlinien" title="Versandrichtlinien">Versandrichtlinien</a></li><li><a href="/policies/terms-of-service" title="Terms of Service">Allgemeine Geschäftsbedingungen</a></li><li><a href="/pages/impressum-retroshirts-ch" title="Impressum retroshirts.ch">Impressum</a></li><li><a href="/policies/refund-policy" title="Refund Policy">Widerrufsbelehrung</a></li><li><a href="/pages/datenschutzerklarung" title="Datenschutzerklärung">Datenschutzerklärung</a></li><li><a href="/pages/quellen-bildnachweis" title="Quellen / Bildnachweise">Bildquellen / Bildnachweise</a></li></ul>
</div><div class="strong" >
<h3>Unsere Social Media Channels</h3><ul class="l4sc"><li><a aria-label="Instagram" href="https://www.instagram.com/retroshirtsvintage/" rel="external noopener" target="external"><i aria-hidden="true" class="icon-instagram"></i><span>Instagram</span></a></li><li><a aria-label="facebook" href="https://www.facebook.com/retroshirtsvintage" rel="external noopener" target="external"><i aria-hidden="true" class="icon-facebook"></i><span>facebook</span></a></li><li><a aria-label="TikTok" href="https://www.tiktok.com/@vintagefussballtrikots" rel="external noopener" target="external"><i aria-hidden="true" class="icon-tiktok"></i><span>TikTok</span></a></li></ul></div></nav><div><p>© <span class="date">2026</span> <a href="https://retrocommerce.gmbh">retrocommerce.gmbh</a></p>
<ul class="l4dr"></ul><ul class="l4pm box">
<li><img src="//retroshirts.ch/cdn/shopifycloud/storefront/assets/payment_icons/twint-ac00d207.svg" width="38" height="24" /></li><li><svg xmlns="http://www.w3.org/2000/svg" role="img" viewbox="0 0 38 24" width="38" height="24" fill="none" aria-labelledby="pi-american_express"><title id="pi-american_express">American Express</title><rect x=".5" y=".5" width="37" height="23" rx="2.5" stroke="#000" stroke-opacity=".07" fill="none"/><path d="M35 0H3C1.3 0 0 1.3 0 3V21C0 22.7 1.4 24 3 24H35C36.7 24 38 22.7 38 21V3C38 1.3 36.6 0 35 0Z" fill="#0071CE" style="fill:#0071CE;fill:color(display-p3 0.0000 0.4431 0.8078);fill-opacity:1;"/><path d="M3 0.5H35C36.3348 0.5 37.5 1.58692 37.5 3V21C37.5 22.4239 36.4239 23.5 35 23.5H3C1.66524 23.5 0.5 22.4131 0.5 21V3C0.5 1.57614 1.57614 0.5 3 0.5Z" stroke="black" stroke-opacity="0.07" style="stroke:black;stroke-opacity:0.07;"/><path d="M25.8662 6.33203V3H31L31.8662 5.5332L32.7334 3H37V14.2002H36.7998L34.8672 16.2656L36.7998 18.3594H37V21.2666H33.5996L31.9336 19.3994L30.2002 21.2666H19.4668V12.666H16L20.2666 3H24.4004L25.8662 6.33203ZM20.5996 20.2656H27V18.5322H22.666V17.3994H26.8662V15.666H22.666V14.5322H27V12.7988H20.5996V20.2656ZM30.5332 16.5322L27 20.2656H29.5996L31.8662 17.8662L34.0664 20.2656H36.7324L33.1992 16.4658L36.7324 12.7988H34.1328L31.8662 15.1992L29.7324 12.7988H27L30.5332 16.5322ZM17.666 11.7324H19.9326L20.5332 10.1992H23.999L24.666 11.7324H26.999L23.666 4.19922H20.999L17.666 11.7324ZM33.5996 4.19922L31.9326 8.86621L30.1992 4.19922H27V11.666H29.0664V6.39941L31 11.666H32.7998L34.7324 6.39941V11.666H36.7324V4.13281L33.5996 4.19922ZM23.2656 8.46582H21.2656L22.2656 5.99902L23.2656 8.46582Z" fill="white" style="fill:white;fill-opacity:1;"/></svg>
</li><li><svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewbox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
</li><li><svg xmlns="http://www.w3.org/2000/svg" role="img" viewbox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
</li><li><svg xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" viewbox="0 0 38 24" aria-labelledby="pi-klarna" fill="none"><title id="pi-klarna">Klarna</title><rect width="38" height="24" rx="2" fill="#FFA8CD"/><rect x=".5" y=".5" width="37" height="23" rx="1.5" stroke="#000" stroke-opacity=".07"/><path d="M30.62 14.755c-.662 0-1.179-.554-1.179-1.226 0-.673.517-1.226 1.18-1.226.663 0 1.18.553 1.18 1.226 0 .672-.517 1.226-1.18 1.226zm-.33 1.295c.565 0 1.286-.217 1.686-1.068l.04.02c-.176.465-.176.742-.176.81v.11h1.423v-4.786H31.84v.109c0 .069 0 .346.175.81l-.039.02c-.4-.85-1.121-1.068-1.687-1.068-1.355 0-2.31 1.088-2.31 2.522 0 1.433.955 2.521 2.31 2.521zm-4.788-5.043c-.643 0-1.15.228-1.56 1.068l-.039-.02c.175-.464.175-.741.175-.81v-.11h-1.423v4.787h1.462V13.4c0-.662.38-1.078.995-1.078.614 0 .917.356.917 1.068v2.532h1.462v-3.046c0-1.088-.838-1.869-1.989-1.869zm-4.963 1.068l-.039-.02c.176-.464.176-.741.176-.81v-.11h-1.424v4.787h1.463l.01-2.304c0-.673.35-1.078.926-1.078.156 0 .282.02.429.06v-1.464c-.644-.139-1.22.109-1.54.94zm-4.65 2.68c-.664 0-1.18-.554-1.18-1.226 0-.673.516-1.226 1.18-1.226.662 0 1.179.553 1.179 1.226 0 .672-.517 1.226-1.18 1.226zm-.332 1.295c.565 0 1.287-.217 1.687-1.068l.038.02c-.175.465-.175.742-.175.81v.11h1.424v-4.786h-1.424v.109c0 .069 0 .346.175.81l-.038.02c-.4-.85-1.122-1.068-1.687-1.068-1.356 0-2.311 1.088-2.311 2.522 0 1.433.955 2.521 2.31 2.521zm-4.349-.128h1.463V9h-1.463v6.922zM10.136 9H8.644c0 1.236-.751 2.343-1.892 3.134l-.448.317V9h-1.55v6.922h1.55V12.49l2.564 3.43h1.892L8.293 12.64c1.121-.82 1.852-2.096 1.843-3.639z" fill="#0B051D"/></svg></li><li><svg xmlns="http://www.w3.org/2000/svg" role="img" viewbox="0 0 38 24" width="38" height="24" fill="none" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><rect x=".5" y=".5" width="37" height="23" rx="2.5" stroke="#000" stroke-opacity=".07" fill="none"/><path d="M35 0H3C1.3 0 0 1.3 0 3V21C0 22.7 1.4 24 3 24H35C36.7 24 38 22.7 38 21V3C38 1.3 36.6 0 35 0Z" fill="#1C1C1C" style="fill:#1C1C1C;fill:color(display-p3 0.1098 0.1098 0.1098);fill-opacity:1;"/><path d="M35 1C36.1 1 37 1.9 37 3V21C37 22.1 36.1 23 35 23H3C1.9 23 1 22.1 1 21V3C1 1.9 1.9 1 3 1H35Z" fill="#232323" style="fill:#232323;fill:color(display-p3 0.1373 0.1373 0.1373);fill-opacity:1;"/><path d="M14.6364 19.2727C18.8538 19.2727 22.2727 15.8538 22.2727 11.6364C22.2727 7.41892 18.8538 4 14.6364 4C10.4189 4 7 7.41892 7 11.6364C7 15.8538 10.4189 19.2727 14.6364 19.2727Z" fill="#EB001B" style="fill:#EB001B;fill:color(display-p3 0.9216 0.0000 0.1059);fill-opacity:1;"/><path d="M23.3637 19.2727C27.5811 19.2727 31 15.8538 31 11.6364C31 7.41892 27.5811 4 23.3637 4C19.1462 4 15.7273 7.41892 15.7273 11.6364C15.7273 15.8538 19.1462 19.2727 23.3637 19.2727Z" fill="#F79E1B" style="fill:#F79E1B;fill:color(display-p3 0.9686 0.6196 0.1059);fill-opacity:1;"/><path d="M22.2727 11.6362C22.2727 9.01797 20.9637 6.72706 19 5.41797C17.0364 6.83615 15.7273 9.12706 15.7273 11.6362C15.7273 14.1452 17.0364 16.5452 19 17.8543C20.9637 16.5452 22.2727 14.2543 22.2727 11.6362Z" fill="#FF5F00" style="fill:#FF5F00;fill:color(display-p3 1.0000 0.3725 0.0000);fill-opacity:1;"/></svg>
</li><li><svg viewbox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg></li><li><svg xmlns="http://www.w3.org/2000/svg" role="img" viewbox="0 0 38 24" width="38" height="24" fill="none" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><rect x=".5" y=".5" width="37" height="23" rx="2.5" stroke="#000" stroke-opacity=".07" fill="none"/><path d="M35 0H3C1.3 0 0 1.3 0 3V21C0 22.7 1.4 24 3 24H35C36.7 24 38 22.7 38 21V3C38 1.3 36.6 0 35 0Z" fill="#142FBD" style="fill:#142FBD;fill:color(display-p3 0.0784 0.1843 0.7412);fill-opacity:1;"/><path d="M35 1C36.1 1 37 1.9 37 3V21C37 22.1 36.1 23 35 23H3C1.9 23 1 22.1 1 21V3C1 1.9 1.9 1 3 1H35Z" fill="#1532CB" style="fill:#1532CB;fill:color(display-p3 0.0824 0.1961 0.7961);fill-opacity:1;"/><path d="M29.5944 10.2167H29.2778C28.8556 11.2722 28.5389 11.8 28.2222 13.3833H30.2278C29.9111 11.8 29.9111 11.0611 29.5944 10.2167V10.2167ZM32.6556 16.4444H30.8611C30.7556 16.4444 30.7556 16.4444 30.65 16.3389L30.4389 15.3889L30.3333 15.1778H27.8C27.6944 15.1778 27.5889 15.1778 27.5889 15.3889L27.2722 16.3389C27.2722 16.4444 27.1667 16.4444 27.1667 16.4444H24.95L25.1611 15.9167L28.2222 8.73889C28.2222 8.21111 28.5389 8 29.0667 8H30.65C30.7556 8 30.8611 8 30.8611 8.21111L32.3389 15.0722C32.4444 15.4944 32.55 15.8111 32.55 16.2333C32.6556 16.3389 32.6556 16.3389 32.6556 16.4444V16.4444ZM18.5111 16.1278L18.9333 14.2278C19.0389 14.2278 19.1444 14.3333 19.1444 14.3333C19.8833 14.65 20.6222 14.8611 21.3611 14.7556C21.5722 14.7556 21.8889 14.65 22.1 14.5444C22.6278 14.3333 22.6278 13.8056 22.2056 13.3833C21.9944 13.1722 21.6778 13.0667 21.3611 12.8556C20.9389 12.6444 20.5167 12.4333 20.2 12.1167C18.9333 11.0611 19.3556 9.58333 20.0944 8.84444C20.7278 8.42222 21.0444 8 21.8889 8C23.1556 8 24.5278 8 25.1611 8.21111H25.2667C25.1611 8.84444 25.0556 9.37222 24.8444 10.0056C24.3167 9.79444 23.7889 9.58333 23.2611 9.58333C22.9444 9.58333 22.6278 9.58333 22.3111 9.68889C22.1 9.68889 21.9944 9.79444 21.8889 9.9C21.6778 10.1111 21.6778 10.4278 21.8889 10.6389L22.4167 11.0611C22.8389 11.2722 23.2611 11.4833 23.5778 11.6944C24.1056 12.0111 24.6333 12.5389 24.7389 13.1722C24.95 14.1222 24.6333 14.9667 23.7889 15.6C23.2611 16.0222 23.05 16.2333 22.3111 16.2333C20.8333 16.2333 19.6722 16.3389 18.7222 16.0222C18.6167 16.2333 18.6167 16.2333 18.5111 16.1278V16.1278ZM14.8167 16.4444C14.9222 15.7056 14.9222 15.7056 15.0278 15.3889C15.5556 13.0667 16.0833 10.6389 16.5056 8.31667C16.6111 8.10556 16.6111 8 16.8222 8H18.7222C18.5111 9.26667 18.3 10.2167 17.9833 11.3778C17.6667 12.9611 17.35 14.5444 16.9278 16.1278C16.9278 16.3389 16.8222 16.3389 16.6111 16.3389L14.8167 16.4444ZM5 8.21111C5 8.10556 5.21111 8 5.31667 8H8.90556C9.43333 8 9.85556 8.31667 9.96111 8.84444L10.9111 13.4889C10.9111 13.5944 10.9111 13.5944 11.0167 13.7C11.0167 13.5944 11.1222 13.5944 11.1222 13.5944L13.3389 8.21111C13.2333 8.10556 13.3389 8 13.4444 8H15.6611C15.6611 8.10556 15.6611 8.10556 15.5556 8.21111L12.2833 15.9167C12.1778 16.1278 12.1778 16.2333 12.0722 16.3389C11.9667 16.4444 11.7556 16.3389 11.5444 16.3389H9.96111C9.85556 16.3389 9.75 16.3389 9.75 16.1278L8.06111 9.58333C7.85 9.37222 7.53333 9.05556 7.11111 8.95C6.47778 8.63333 5.31667 8.42222 5.10556 8.42222L5 8.21111Z" fill="white" style="fill:white;fill-opacity:1;"/></svg>
</li></ul></div>
<style data-shopify>
#shopify-section-sections--29305435226495__footer {
--custom_footer_bg: var(--white_bg);
--custom_footer_fg: var(--white_fg);
--custom_footer_fg_hover: var(--white_btn_bg);
--custom_footer_link_bg: var(--accent_bg);
--custom_footer_link_dark: var(--accent_bg_dark);
--custom_footer_link_text: var(--accent_fg);
--custom_footer_bg_bottom: var(--light_bg);
--custom_footer_fg_bottom: var(--light_fg);
--custom_footer_fg_bottom_hover: var(--light_btn_bg);
}
@media only screen and (min-width: 47.5em) {
#shopify-section-sections--29305435226495__footer nav .m6cn figure {
bottom: calc(0px - 27px);
}
}
@media only screen and (min-width: 62.5em) {
html[dir="ltr"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
right: calc(30px - 74px);
}
html[dir="rtl"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
left: calc(30px - 74px);
}
}
@media only screen and (min-width: 1100px) and (max-width: 1200px) {
html[dir="ltr"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
right: calc(30px - 55px);
}
html[dir="rtl"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
left: calc(30px - 55px);
}
}
@media only screen and (max-width: 47.5em) {
#shopify-section-sections--29305435226495__footer nav .m6cn figure {
bottom: calc(0px + 1px);
}
html[dir="ltr"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
right: calc(0px - 20px);
}
html[dir="rtl"] #shopify-section-sections--29305435226495__footer nav .m6cn figure {
left: calc(0px - 20px);
}
}
@media only screen and (min-width: 47.5em) {
#shopify-section-sections--29305435226495__footer { margin-bottom: 0px; }
}
@media only screen and (max-width: 47.5em) {
#shopify-section-sections--29305435226495__footer { margin-bottom: 0px; }
}
</style>
</footer>
<!-- END sections: footer-group --></main>
<form method="post" action="/account/login" id="login" accept-charset="UTF-8" data-login-with-shop-sign-in="true" class="m6pn m6pl f8vl"><input type="hidden" name="form_type" value="customer_login" /><input type="hidden" name="utf8" value="✓" /><header>
<h2>Anmeldung</h2>
</header>
<p>
<label for="login_email_address_mobile">E-Mail<span class="overlay-theme">*</span></label>
<input type="email" id="login_email_address_mobile" name="customer[email]" placeholder="E-Mail" required>
</p>
<p>
<label for="login_password_mobile">Password<span class="overlay-theme">*</span> <a href="./" class="show"><span>Toon</span> <span class="hidden">Hide</span></a></label>
<input type="password" id="login_password_mobile" name="customer[password]" placeholder="Password" required>
<a href="https://retroshirts.ch/customer_authentication/redirect?locale=de®ion_country=CH#recover" class="size-12">Haben Sie Ihr Passwort vergessen?</a>
</p>
<p class="submit">
<button type="submit">Anmelden</button>
Sie haben noch kein Konto?<br> <a href="https://account.retroshirts.ch?locale=de&buyer_flags=eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJyZXRyb3NoaXJ0c2NoLm15c2hvcGlmeS5jb20iLCJmbGFncyI6W10sImV4cCI6MTc5MDk3MDE3NywibmJmIjoxNzkwMzY1Mzc3fQ.dywiGtMgRE8uHbvDOUAerr6wrD8LfLhyFycuEf8uuns" class="overlay-content">Konto erstellen</a>
</p></form><aside class="m6pn" id="cart" aria-hidden="true"></aside>
<div class="m6pn" id="quickshop" aria-hidden="true"></div>
<aside class="m6pn" id="pickup-availability" aria-hidden="true"></aside>
</div><script>
window.routes = {
predictive_search_url: '/search/suggest',
cart_url: '/cart',
cart_add_url: '/cart/add',
cart_change_url: '/cart/change',
cart_update_url: '/cart/update',
product_recommendations_url: '/recommendations/products'
};
window.general = {
template: 'index',
enable_accessibility_default: false,
show_accessibility: true,
enable_cart_drawer: false,
cookiebanner_testmode: false,
age_verify_popup_testmode: false,
newsletter_popup_testmode: false,
language: 'de'
};
window.datepicker_path_global = '//retroshirts.ch/cdn/shop/t/60/assets/datepicker-lang-de.js?v=159620031353149044901782384558';
window.translations = {
readmore_text: "Weiterlesen",
unavailable_text: "Nicht verfügbar",
view_options_text: "Optionen anzeigen",
view_text: "Optionen"
};
</script>
<style></style>
<script defer src="//retroshirts.ch/cdn/shop/t/60/assets/scripts.js?v=178884087113216081301783934485"></script>
<script defer src="//retroshirts.ch/cdn/shop/t/60/assets/custom.js?v=151143200501793745821790350823"></script>
<!-- Start-MakeAnOffer version: 7 -->
<script>
var makeAnOfferData = (function() {
var data = {
product: null,
cartProducts: [],
currency_iso_code: "",
settings: {"error":"json not allowed for this object"},
customer_email: ""
};
return data;
})();
</script>
<!-- End-MakeAnOffer -->
<style> .template-product .f8pr .price {font-size: 30px !important; font-weight: bold !important;} </style>
<div id="shopify-block-AYkpjcWFINkF3RWlJV__1513253815146976218" class="shopify-block shopify-app-block">
</div><div id="shopify-block-ASFd4aGtkL1V1dGtKa__13655089695959051254" class="shopify-block shopify-app-block"><script id="wkThemeCode" type="application/json">
{
"customIconsUrl": null,
"addToCartJsUrl": null,
"productCardJsUrl": null,
"wishlistPageJsUrl": null,
"eventSubscribersJsUrl": null,
"localeJsonUrl": "https:\/\/cdn.appmate.io\/themecode\/retroshirtsch\/main\/locale-de.json?generation=1755767685738246",
"customCssUrl": "https:\/\/cdn.appmate.io\/themecode\/retroshirtsch\/main\/custom.css?generation=1750722042478043",
"collectionButtonsJsUrl": "https:\/\/cdn.appmate.io\/themecode\/retroshirtsch\/main\/collection-buttons.js?generation=1750797868491358",
"productPageButtonsJsUrl": "https:\/\/cdn.appmate.io\/themecode\/retroshirtsch\/main\/product-page-buttons.js?generation=1750709828514492",
"headerLinkJsUrl": "https:\/\/cdn.appmate.io\/themecode\/retroshirtsch\/main\/header-link.js?generation=1750709531733324",
"wishlistLinkHeadlessJsUrl": null,
"wishlistButtonHeadlessJsUrl": null,
"saveForLaterJsUrl": null,
"customDataUrl": null,
"addWishlistToCartJsUrl": null,
"accountDialogUrl": null
}
</script>
<script type="module" src="https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/block-code-access.js"></script>
</div><div id="shopify-block-AeFdPRzBIWENYemtpT__11514386062636703173" class="shopify-block shopify-app-block"></div><div id="shopify-block-ANE4wZWpEQU9nQkpJY__6680288666557934739" class="shopify-block shopify-app-block"><script id="wkWishlistPage" type="application/json">
{
"showVendor": false,
"showProductTitle": true,
"showPrice": true,
"showShareButton": true,
"showBuyAllButton": false,
"showClearButton": false,
"moveToCart": false,
"ctaButton": "add-to-cart",
"productOptions": "dropdowns",
"wishlistEmptyLink": "\/collections\/all",
"removeButtonStyle": "icon"
}
</script>
<script type="module" src="https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/block-wishlist-page.js"></script>
<style>
wishlist-page {
--text-color: var(--wk-color-text);
--page-max-width: 1200px;
--page-padding-top: 30px;
--page-padding-bottom: 80px;
--button-min-height: var(--wk-button-min-height);
--button-border-width: var(--wk-button-border-width);
--button-border-radius: var(--wk-button-border-radius);
--input-min-height: var(--wk-input-min-height);
--input-border-width: var(--wk-input-border-width);
--input-border-radius: var(--wk-input-border-radius);
--grid-columns-xs: 1;
--grid-columns-sm: 2;
--grid-columns-md: 2;
--grid-columns-lg: 3;
--grid-columns-xl: 4;
--cta-button-background: rgb(var(--wk-color-accent-1));
--cta-button-border: solid var(--button-border-width) rgb(var(--wk-color-accent-1));
--cta-button-color: rgb(var(--wk-color-solid-button-label));
--variant-input-background: rgb(var(--wk-color-background-1));
--variant-input-border: solid var(--input-border-width) rgba(var(--wk-color-text));
--variant-input-color: rgb(var(--wk-color-text));
--variant-input-selected-background: var(--variant-input-background);
--variant-input-selected-border: solid var(--input-border-width) rgba(var(--wk-color-text));
--variant-input-selected-color: var(--variant-input-color);
--variant-input-selected-shadow: 0 0 0 var(--input-border-width) rgb(var(--wk-color-text));
--price-justify-content: center;
--option-select-label-display: none;
--image-aspect-ratio: 1/1;
--image-object-fit: cover;
--meta-text-align: center;
}
</style>
</div><div id="shopify-block-AYUlraVkxNys5bytlS__4139971114690857691" class="shopify-block shopify-app-block">
<script id="wkCollectionButtons" type="application/json">
{
"injectMethod": "insertAfter",
"buttonPlacement": "top-end",
"productLinkSelector": "",
"injectReferenceJs": "(target, app) => target",
"floatingReferenceJs": "(target, app) => target",
"productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
"productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)",
"integration": {
"productLinkSelector": ".boost-pfs-filter-product-item-image-link[href*=\"\/products\/\"],.boost-sd__product-link-image[href*=\"\/products\/\"],.bc-sf-filter-product-item-image-link[href*=\"\/products\/\"],.boost-sd__product-link.boost-sd__product-image[href*=\"\/products\/\"],.boost-sd__suggestion-queries-item-link[href*=\"\/products\/\"]",
"injectReferenceJs": "(target, app) => target",
"floatingReferenceJs": "(target, app) => target",
"productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
"productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)"
}
}
</script>
<script type="module" src="https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/block-wishlist-button-collection.js"></script>
<style>
wishlist-button-collection {
--icon-size: 18px;
--icon-stroke-width: 1px;
--button-offset-vertical: 0px;
--button-offset-horizontal: 0px;
--button-background-size: 34px;
--button-background-border-radius: 24px;
--button-border-width: 1px;
--button-background-opacity: 85%;
--button-background: none;
--button-border: none;
--icon-stroke: rgb(var(--wk-color-accent-1));
}
</style>
</div><div id="shopify-block-Ad3BsTFFLOTdHUW5IT__14197025361042770389" class="shopify-block shopify-app-block">
<script>
window.WishlistKingAppLoaderURL = "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/app-loader.js";
</script>
<script id="wkAppSettings" type="application/json">
{
"assets": {
"themeCssFile": null,
"localeJsonFile": "locale-de.json",
"appBaseCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/app-base.css",
"componentWishlistButtonBlockJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-button-block.js",
"componentWishlistLinkJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-link.js",
"componentWishlistLinkCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-link.css",
"componentWishlistLinkBlockJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-link-block.js",
"componentWishlistPageBundleJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-page-bundle.js",
"componentWishlistPageBundleCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-page-bundle.css",
"componentWishlistLinkFloatingJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-link-floating.js",
"componentWishlistLinkFloatingCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-link-floating.css",
"componentWishlistButtonCollectionJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-button-collection.js",
"componentWishlistButtonCollectionCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-button-collection.css",
"componentWishlistButtonProductJs": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-button-product.js",
"componentWishlistButtonProductCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-wishlist-button-product.css",
"componentSaveForLaterCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-save-for-later.css",
"componentAccountDialogCss": "https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/component-account-dialog.css"
},
"config": {
"apiHost": "https:\/\/api.appmate.io\/v2",
"customerId": null,
"customerEmail": null,
"customerTags": null,
"customerName": null,
"shopName": "RetroShirts.ch - Originale Fussballtrikots",
"shopDomain": "retroshirts.ch",
"shopPermanentDomain": "retroshirtsch.myshopify.com",
"shopMoneyFormat": "CHF {{amount_no_decimals}}",
"shopMoneyFormatWithCurrency": "CHF {{amount_no_decimals}}",
"shopCustomerAccountsEnabled": true,
"fileUrl": "\/\/retroshirts.ch\/cdn\/shop\/files\/?v=4743",
"storefrontAccessToken": "62dd0d44ae608208775d55156aa4b1de",
"storefrontVersion": "2024-10",
"localeIsoCode": "de",
"token": "aed0e6f04c4c5c6fb2bb1885ca8e472e88c6e95e4cf5263d32fe2d71608b47eb"
},
"settings": {
"general": {
"appLoading": "LAZY",
"wishlistPath": "\/apps\/wishlist",
"wishlistAccessMode": "UNRESTRICTED",
"wishlistMode": "PRODUCT"
},
"money": {
"withCurrency": true
},
"integrations": {
"wishlistAnalytics": {
"enabled": true
},
"klaviyo": {
"enabled": false
},
"metaPixel": {
"enabled": true
},
"googleAnalytics": {
"enabled": true
}
}
},
"collectionButtons": {
"productLinkSelector": "#collection figure \u003e a[href*=\"\/products\/\"]",
"injectMethod": "insertAfter",
"injectReferenceJs": "(target, app) => target",
"floatingReferenceJs": "(target, app) => target",
"productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
"productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)"
}
}
</script>
<script type="module" src="https://cdn.shopify.com/extensions/01a0c883-5978-77d7-860e-64c369ece6ec/swish-wishlist-king-258/assets/block-app-settings.js"></script>
<style>
:root {
--wk-color-solid-button-label: 255, 255, 255;
--wk-color-accent-1: 84, 15, 33;
--wk-color-accent-2: 0, 0, 0;
--wk-color-outline-button-label: 0, 0, 0;
--wk-color-background-1: 255, 255, 255;
--wk-color-background-2: 255, 255, 255;
--wk-color-text: 0, 0, 0;
--wk-button-min-height: 45px;
--wk-button-border-width: 1px;
--wk-button-border-radius: 0px;
--wk-input-min-height: 45px;
--wk-input-border-width: 1px;
--wk-input-border-radius: 0px;
--wk-shadow-opacity: 15%;
--wk-shadow-horizontal-offset: 0px;
--wk-shadow-vertical-offset: 2px;
--wk-shadow-blur: 4px;
--wk-font-text-scale: 1.0;
}
</style>
</div><div id="shopify-block-AYVRjem9WQzYvSFEya__14826766009936288847" class="shopify-block shopify-app-block">
<script id="Discounty-config">
function discountyExtractTextFromHtml(htmlString) {
if (!htmlString) return '';
return new DOMParser().parseFromString(htmlString, 'text/html').body.textContent || '';
}
var $Discounty = {shopData: {"shopConfig":{"shopId":67252,"cart":{"isActive":true,"styles":"{}","config":{},"injectionInfo":[],"contents":[{"locale":"","totalText":"Total","savingText":"Saving"}]},"globalConfig":{"appEnabled":true,"considerCurrencyExchangeRate":true,"customVariantListener":{"element":"","isDatasetProperty":false,"property":""},"developerModeVariantListener":false,"globalCss":"","setTemplateCurrencyFormatAsDefault":false},"volumeDiscount":{"config":{"tierDisplayFormat":"RANGE"},"injectionInfo":[],"isActive":true,"styles":"{}","contents":[{"locale":"","title":"Buy more, Save more","buyColumnLabel":"Buy","getColumnLabel":"Get","discountText":"{{Discount}} Off","eachItemText":"on each","newPriceText":"each item {{new-price}}"}]},"miniVolumeDiscount":{"config":{"displayMode":"MAX_DISCOUNT"},"injectionInfo":[],"isActive":false,"styles":"{}","contents":[{"locale":"","maxDiscountText":"Up to {discount}% off","lowestPriceText":"From {price}"}]},"startCountDown":{"config":{"ctaLink":null},"productPageInjectionInfo":[],"homepageInjectionInfo":[],"isActive":true,"styles":"{}","contents":[{"locale":"","title":"Sale starts in","daysLabel":"Day","hoursLabel":"Hr","minutesLabel":"Min","secondsLabel":"Sec","ctaText":"Click here"}]},"endCountDown":{"config":{"ctaLink":null},"productPageInjectionInfo":[],"homepageInjectionInfo":[],"isActive":true,"styles":"{}","contents":[{"locale":"","title":"Sale ends in","daysLabel":"Day","hoursLabel":"Hr","minutesLabel":"Min","secondsLabel":"Sec","ctaText":"Click here"}]},"bxgyPopup":{"config":{"hideContinueBtn":false,"badgeShowFreeGift":false,"badgeType":"PERCENTAGE","dismissType":"TRIGGER","autoOpenDrawerEnabled":true},"injectionInfo":[],"isActive":true,"styles":"{}","contents":[{"locale":"","title":"Your current cart qualifies for these rewards","subtitle":"Now you are able to choose between them. Add before checking out!","availableRewardsLabel":"You can add {{count}} product(s)","btnSelectLabel":"Select","btnAddLabel":"Add to Cart","btnContinueLabel":"Continue Shopping"}]},"bxgyFab":{"config":{"hideCloseBtn":false,"isFabLeft":true},"injectionInfo":[],"isActive":true,"styles":"{}"},"shipping":{"progressbar":{"config":{"activeOnProductPage":true,"activeOnCartPage":true},"productPageInjectionInfo":[],"cartPageInjectionInfo":[],"cartDrawerInjectionInfo":[],"isActive":true,"styles":"{}","contents":[{"locale":"","thresholdInitialText":"Add {{amount}} more to unlock {{discount}} off shipping","thresholdProgressText":"You're {{amount}} away from {{discount}} off shipping","thresholdReachedText":"You've unlocked {{discount}} off shipping!"}]},"progressBarDiscount":null}},"expiresAt":"2026-09-26T19:41:55.646549+00:00"},shopDomain: "retroshirtsch.myshopify.com",
customerId: null,
isHomePage: true,
isProductPage: false,
currencyFormat: discountyExtractTextFromHtml(`CHF 0`)
.replace(
discountyExtractTextFromHtml(`0`),"{{money}}"),
initialSelectedVariant: null,
initialCart: [] || [],
preloadedProducts: [
],
products: [
],
};
</script>
<div id="discounty-bxgy-discount-widgets-container"></div>
</div><div id="shopify-block-AQkpodzBoVE1ydkk2V__1603754999335736578" class="shopify-block shopify-app-block"><div data-flash-reviews data-block-id="AQkpodzBoVE1ydkk2V__1603754999335736578"></div>
<!-- BEGIN app snippet: widget_script -->
<script src="https://app.flash.reviews/api/render/widget.js?shop=retroshirtsch.myshopify.com&blockId=AQkpodzBoVE1ydkk2V__1603754999335736578&widgetType=badge&widgetCode=&widgetTheme=light&widgetPosition=bottom-left&resourceType=index" async></script>
<!-- END app snippet -->
</div><script src="https://cdn.shopify.com/storefront/standard-actions.js" type="module" data-source-attribution="shopify.standard_actions"></script>
</body>
</html>