Die Inhaltsanalyse zeigt, ob Seitentitel, Beschreibungen, Überschriften, Bilder und Textstruktur Suchmaschinen und Besuchern klare Signale geben.
Seitentitel
noglass - der unzerstörbare Displayschutz
Länge : 41
Der Seitentitel von noglass.kaufen ist mit 41 Zeichen gut dimensioniert und liegt im empfohlenen Bereich von 10 bis 70 Zeichen. Damit bekommen Suchmaschinen und Besucher schon in der Ergebnisliste einen klaren ersten Hinweis auf den Inhalt.
Seitenbeschreibung
Länge : 0
noglass.kaufen hat aktuell keine Seitenbeschreibung. Eine individuelle Description sollte den wichtigsten Inhalt der Seite kurz zusammenfassen und kann die Darstellung in Suchergebnissen verbessern. Mit diesem kostenlosen Werkzeug lässt sich eine passende Beschreibung vorbereiten.
Suchbegriffe
noglass.kaufen nutzt keine META-Suchbegriffe. Der wichtigste SEO-Faktor bleibt der sichtbare Inhalt, aber ergänzende Keywords können bei der Pflege und Dokumentation der Seite hilfreich sein. Bei Bedarf können Sie dieses kostenlose Werkzeug verwenden.
Og META Eigenschaften
noglass.kaufen verwendet Open-Graph-Angaben. Dadurch können soziale Netzwerke und Messenger Titel, Beschreibung, URL und Vorschaubild kontrollierter anzeigen.
[H2] Tausende haben gewechselt – und würden’s jederzeit wieder tun.
[H2] noglass – der unzerbrechliche Displayschutz
[H3] Deine Variante, dein Style.
[H3] Abholung & Installation in Herford möglich
[H3] MEHR ALS NUR GEFÜHLT SAFE...
[H3] Bricht nicht. Splittert nicht. Punkt.
[H3] Nur Besser.
[H3] So einfach geht’s – Josch zeigt’s dir.
[H3] Perfekt – oder kostenlos ersetzt.
[H3] Einmal noglass Nie wieder Panzergläser.
[H3] Kein Glas. Kein Bruch. Keine Kompromisse.
[H3] Federleicht und kristallklar
[H3] Kinderleichtes Aufbringen – ganz ohne Blasen
[H3] Nachhaltig und langlebig
[H3] Fazit: noglass ist der Gamechanger im Displayschutz
[H3] DAYS:HRS:MINS:SECS
// Function to create and show the loading screen
const createLoadingScreen = () => {
const loadingBackground = document.createElement("div");
loadingBackground.id = "loading-background";
loadingBackground.style.position = "fixed";
loadingBackground.style.top = "0";
loadingBackground.style.left = "0";
loadingBackground.style.width = "100%";
loadingBackground.style.height = "100%";
loadingBackground.style.background = "rgba(0, 0, 0, 0.6)";
loadingBackground.style.color = "white";
loadingBackground.style.display = "flex";
loadingBackground.style.justifyContent = "center";
loadingBackground.style.alignItems = "center";
loadingBackground.style.fontSize = "24px";
loadingBackground.style.zIndex = "9999";
loadingBackground.innerText = "Opening...";
document.body.appendChild(loadingBackground);
};
// Function to remove the loading screen
const removeLoadingScreen = () => {
const loadingBackground = document.getElementById("loading-background");
if (loadingBackground) {
loadingBackground.remove();
}
};
// Check if the URL contains the query parameter ?makeareview=true
const hasMakeAReviewQuery = () => {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get("makeareview") === "true";
};
// Recursive checker
const tryClickReviewButton = (startTime) => {
const now = Date.now();
const elapsed = now - startTime;
const reviewButton = document.querySelector(".Ryviu-Write-Button");
if (reviewButton) {
reviewButton.click();
removeLoadingScreen();
} else if (elapsed < 6000) {
setTimeout(() => tryClickReviewButton(startTime), 300);
} else {
removeLoadingScreen();
}
};
// Main logic
if (hasMakeAReviewQuery()) {
createLoadingScreen();
window.onload = () => {
setTimeout(() => {
tryClickReviewButton(Date.now());
}, 300); // slight delay to let DOM settle
};
}
(() => {
const r = document.querySelector('#prvw__bundle_container');
if (!r) return;
const checked = r.querySelector('input[name="cb"]:checked');
const idx = checked ? (Number(checked.id.replace('cb','')) - 1) : 0;
const m = r.querySelector(`select.prvw_selector_${idx}[name$="Dein Modell"]`)?.value;
const v = r.querySelector(`select.prvw_selector_${idx}[name$="Variante"]`)?.value;
[0,1,2].forEach(i => {
const a = r.querySelector(`select.prvw_selector_${i}[name$="Dein Modell"]`);
const b = r.querySelector(`select.prvw_selector_${i}[name$="Variante"]`);
if (a && m != null) { a.value = m; a.dispatchEvent(new Event('change', { bubbles: true })); }
if (b && v != null) { b.value = v; b.dispatchEvent(new Event('change', { bubbles: true })); }
});
})();
(() => {
const ROOT_SEL = '#prvw__bundle_container';
const NAME_MODEL = 'Dein Modell';
const NAME_VARIANT = 'Variante';
const $ = (r,s) => r.querySelector(s);
const $$ = (r,s) => Array.from(r.querySelectorAll(s));
function getRoot(){ return document.querySelector(ROOT_SEL); }
function getActiveIdx(root){
const checked = $(root, 'input[name="cb"]:checked');
const m = checked && checked.id && checked.id.match(/^cb(\d)$/);
return m ? (Number(m[1]) - 1) : 0; // 0=cb1,1=cb2,2=cb3
}
function blockSelects(root, i){
return {
models: $$(root, `select.prvw_selector_${i}[name*="${NAME_MODEL}"]`),
variants: $$(root, `select.prvw_selector_${i}[name*="${NAME_VARIANT}"]`)
};
}
function readVals(root, i){
const s = blockSelects(root, i);
return {
model: s.models[0] ? s.models[0].value : null,
variant: s.variants[0] ? s.variants[0].value : null
};
}
function setSelectValue(sel, value, trigger){
if (!sel || value == null) return false;
if (sel.value === value) return false;
const opt = Array.from(sel.options).find(o => o.value === value || o.text.trim() === String(value).trim());
if (!opt) return false;
opt.selected = true;
sel.value = opt.value;
if (trigger) {
// Nur wenn ausdrücklich gewünscht (siehe Radio-Wechsel)
sel.dispatchEvent(new Event('input', { bubbles: true }));
sel.dispatchEvent(new Event('change', { bubbles: true }));
}
return true;
}
function setBlockVals(root, i, vals, triggerEvents){
const s = blockSelects(root, i);
let any = false;
s.models.forEach(sel => { any = setSelectValue(sel, vals.model, triggerEvents) || any; });
s.variants.forEach(sel => { any = setSelectValue(sel, vals.variant, triggerEvents) || any; });
return any;
}
function init(){
const root = getRoot();
if (!root) return false;
// Warten bis die ersten Selects da sind
if (!$(root, `select[name*="${NAME_MODEL}"]`) || !$(root, `select[name*="${NAME_VARIANT}"]`)) return false;
if (root.__seBundleMirrorInit) return true;
root.__seBundleMirrorInit = true;
let isSyncing = false; // Re-Entrancy-Sperre
let lastVals = readVals(root, getActiveIdx(root));
// (1) Initial: Werte in ALLE Blöcke spiegeln – ohne Events
[0,1,2].forEach(i => setBlockVals(root, i, lastVals, false));
// (2) Select-Änderung irgendwo: diesen Block als Quelle nehmen,
// und nur die ANDEREN Blöcke still (ohne Events) angleichen
root.addEventListener('change', (ev) => {
const t = ev.target;
if (!t || t.tagName !== 'SELECT') return;
if (isSyncing) return;
const cls = Array.from(t.classList).find(c => /^prvw_selector_\d$/.test(c));
const idx = cls ? Number(cls.split('_')[2]) : getActiveIdx(root);
lastVals = readVals(root, idx);
isSyncing = true;
try {
[0,1,2].forEach(i => { if (i !== idx) setBlockVals(root, i, lastVals, false); });
} finally {
isSyncing = false;
}
}, false); // bubbling (kein capture), um Konflikte zu minimieren
// (3) Radio-Wechsel (1×/2×/3×): neuen aktiven Block auf lastVals setzen
// und NUR DORT Events feuern, damit die App neu rechnet
$$(root, 'input[name="cb"]').forEach(rad => {
rad.addEventListener('change', () => {
const idx = getActiveIdx(root);
isSyncing = true;
try {
setBlockVals(root, idx, lastVals, true); // nur aktiver Block mit Events
} finally {
isSyncing = false;
}
}, { passive: true });
});
return true;
}
// Lazy-Init für asynchrones Rendern
function boot(){
if (init()) return;
const mo = new MutationObserver(() => { if (init()) mo.disconnect(); });
mo.observe(document.documentElement, { childList: true, subtree: true });
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', boot);
} else {
boot();
}
})();
.Ryviu-Head-Featured,
.Ryviu-Write-Button { display: none; }
var retry = 320;
var loadedCount = 0;
var waitForBar = function(callback) {
if (retry > 0) {
if (typeof $ != "undefined") {
if ($(".aph_bar_bar").length > 0) {
callback();
}
else {
retry = retry - 1;
setTimeout(function() {
waitForBar(callback);
},100);
}
}
else {
retry = retry - 1;
setTimeout(function() {
waitForBar(callback);
},100);
}
}
};
waitForBar(function() {
$(".aph_bar_bar").each(function(i) {
var temp = $(this);
temp.prependTo("body");
});
});
window.SEBOT_API_BASE = '/apps/se-bot';
.product-item-meta__price-list-container .price.price--large,.product-meta__price-list-container .price.price--large {font-size: 27px !important;} .product-bundle-products-selection .product-bundle-add-product-img .img {width: 100%; max-height: 95% !important;} .product-bundle-products-selection .product-bundle-add-product-img {border: 1px solid rgba(39, 39, 39, 0.2); background-color: #fff !important;} .product-bundle-products-selection {display: grid; grid-template-columns: 1fr 1fr 1fr !important; grid-gap: 15px; position: relative; width: 100%;} .button-wrapper {background: none !important; border: none !important; display: center !important;} #AddToCart {display: none;} .drawer {z-index: 9999;} .product-meta__title {font-size: 25px !important; text-transform: none !important;} .qbk-bundle__actions .qbk-bundle__action-btn {height: 55px; font-size: 18px !important;} .qbk-volume__action-btn {height: 55px; font-size: 18px !important;} .qbk-bundle__total-value {font-size: 25px !important;}
// place the app at the bottom of body
const newApp = document.createElement('div');
newApp.setAttribute('id', 'qikify-boosterkit');
document.body.appendChild(newApp);
// 0 means absence of data
_BK = {
entries: [{"badge_label":"Vorbestellen!","title":"Jetzt vorbestellen und Deal sichern.","description":"","trigger_type":"products","enable_trigger_data_collection_excludes":false,"enable_discount":true,"discount_type":"percentage","tiers_fixed":[{"title":"Buy {quantity} save {discount_amount}","min_quantity":2,"value":0,"badge_label":"","badge_background_color":"","badge_text_color":"","is_default_selected":true}],"tiers_percentage":[{"title":"Beim Kauf einer se® SNAPSTATION erhälst du eine weitere Gratis dazu.","min_quantity":"2","value":"50","is_default_selected":true,"badge_label":"2 für 1 - Deal","badge_background_color":"#009fe3"},{"title":"1 x se® SNAPSTATION","min_quantity":1,"value":0,"is_default_selected":false}],"discount_method":"code","allow_changing_tier_item_variant":false,"enable_display_conditions":false,"enable_discount_usage_limit":false,"discount_usage_limit":null,"badge_background_color":"#e00000","badge_text_color":"#ffffff","starts_at":"2024-08-26T06:49:15Z","ends_at":null,"discount_customer_selection":{"allCustomers":true},"trigger_data_products":[{"id":"9546435789064","title":"se® SNAPSTATION 3-in-1 Deal","image":{"url":"https://cdn.shopify.com/s/files/1/2462/4049/files/1-herov2jpg_10cafb45-4579-470d-a592-041782bd6969.jpg?v=1731076407"},"totalVariants":1,"variants":"ALL","handle":"se®-snapstation-3-in-1-deal"}],"enable_combinations_products":true,"enable_ends_at":false,"async_usage_count":65,"enable_combinations_orders":true,"trigger_action":"add-to-cart","discount_code":"QIKIFY-ILKOLN","discount_id":"1629390405896","id":419505,"type":"volume","created_at":"2024-10-24 12:01:32","updated_at":"2024-12-18 12:40:28"}],
subscriptions: {"name":"boosterkit-premium","kind":"subscription","conversion_revenue_expires_at":"2025-07-09T10:39:42.000000Z","over_capacity":false,"applied_shopify_plans":null},
instanceConfig: {"boosterkit_settings":{"hide_watermark":true,"template":"default","popup_background_color":"#FFFFFF","popup_text_primary_color":"#000000","highlight_color":"#00a0db","button_primary_bg_color":"#f9ca4f","button_primary_text_color":"#000000","button_secondary_bg_color":"#f9ca4f","button_secondary_text_color":"#000000","enable_empty_cart_reward_bar":false,"reward_bar_priority":"order-goal,gift-goal,shipping-goal","enable_recommendation_box":false,"recommended_rules":"nearest-price","popup_limit_offers":5,"popup_offer_priority_type":"random","repeater_value":30,"embed_bundle_layout":"vertical","reward_bar_measurement_unit":"quantity","enable_promotion_badge":false,"enable_today_offers":false},"updated_at":"2025-05-22 12:07:54","config":null},
version: 3,
storeFrontAccessToken: "e8130960c47c3d1a03775d62f4490963",
generalTranslation: {"default":{"remove_button_text":"Entfernen","sold_out_button_text":"Ausverkauft","pick_button_text":"hinzufügen","upgrade_button_text":"Update","continue_shopping":"weiter einkaufen.","checkout_button_text":"Zur Kasse","total_text":"Gesamt:","item_text":"Artikel","selected_items_text":"{selected_items} gewählte Artikel","common_error":"Irgendetwas ist schief gelaufen","not_enough_quantity_error":"Kaufe {quantity} und bekomme ein kostenloses Produkt","free_offer_text":"Kostenlos","grab_offer_button_text":"Weiter","bundle_button_text":"Auswahl in den Warenkorb","volume_button_text":"Jetzt vorbestellen","upsurge_button_text":"Upgrade jetzt","out_of_stock_button_text":"Ausverkauft","add_more_button_text":"Füge {quantity} hinzu.","cart_widget_subtotal_original_text":"Subtotal (original)","cart_widget_subtotal_text":"Subtotal","cart_widget_discount_text":"Discount","cart_widget_info_text":"Taxes and shipping calculated at checkout","package_deal_reward_message":"Du bist {amount} entfernt vom Rabatt {discount}","package_deal_reward_label":"Bundle Angebot","package_deal_reward_done_message":"Congratulation! You unlock a discount. Checkout now!","buy_more_to_get_gift_text":"Dir fehlen {amount} für ein Geschenk","promotion_badge_label":"Angebot","free_gift_promotion_badge_label":"Kostenlos","discount_toast_label":"Rabatt aktiviert!","today_offer_label":"🔥 Aktuelle Angebote","today_offer_description":"Limitiertes Angebot. Nicht verpassen!","claim_button_text":"Hinzufügen","today_offer_item_description":"{offer_title} spare {discount}","today_offer_free_gift_description":"{offer_title} für FREE with {trigger_title}","day_label":"days","hour_label":"hrs","minute_label":"mins","second_label":"secs","continue_shopping_button_text":"Weiter einkaufen"},"en":{"volume_button_text":"Jetzt vorbestellen"}},
bogoTranslation: 0,
bundleTranslation: 0,
orderGoalTranslation: 0,
cartUpsellTranslation: 0,
volumeTranslation: {"en":[{"id":394772,"data":{"tiers":[],"badge_label":"Angebot"}}]},
freeGiftTranslation: 0,
upsurgeTranslation: 0,
shippingGoalTranslation: 0,
giftGoalTranslation: 0,
shop: {"plan_name":"unlimited","plan_updated_at":"2025-06-30 19:47:11"}
}
qbkStore = {
productData: {},
page: "product",
currency: "EUR",
moneyFormat: "{{amount_with_comma_separator}}€",
market: "1087111252",
country: "DE",
shop: "smart-engineered.myshopify.com",
shopId: "24624049",
designMode: false,
shopLocale: {
iso_code: "de",
primary: true,
root_url: "/",
}
}
qbkAtx = {};
qbkAtx["10057764733192"] = {
}
window.qbkStore.handle = "noglass-der-unzerstoerbare-displayschutz";
window.qbkStore.productId = "10057764733192";
window.qbkStore.selectedId = "50942302781704";
window.qbkStore.productData["10057764733192"] = {
id: "10057764733192",
handle: "noglass-der-unzerstoerbare-displayschutz",
collections: [512665649416,521099739400,480174211336,481159577864,172706201684,553973219592],
tags: ["klar","matt","noglass","privacy","smartphone"],
available: true,
variants: [
{
id: 50942302781704,
price: 1999,
available: true,
}
,
{
id: 50942303600904,
price: 2299,
available: true,
}
,
{
id: 50942303633672,
price: 2499,
available: true,
}
,
{
id: 50942302814472,
price: 1999,
available: true,
}
,
{
id: 50942303666440,
price: 2299,
available: true,
}
,
{
id: 50942303699208,
price: 2499,
available: true,
}
,
{
id: 52858098352392,
price: 1999,
available: true,
}
,
{
id: 52858101661960,
price: 2299,
available: true,
}
,
{
id: 52858101694728,
price: 2499,
available: true,
}
,
{
id: 52858098549000,
price: 1999,
available: true,
}
,
{
id: 52858101727496,
price: 2299,
available: true,
}
,
{
id: 52858101760264,
price: 2499,
available: true,
}
,
{
id: 52858101530888,
price: 1999,
available: true,
}
,
{
id: 52858098123016,
price: 2299,
available: true,
}
,
{
id: 52858101793032,
price: 2499,
available: true,
}
,
{
id: 50942302880008,
price: 1999,
available: true,
}
,
{
id: 50942303731976,
price: 2299,
available: true,
}
,
{
id: 50942303797512,
price: 2499,
available: true,
}
,
{
id: 50942302912776,
price: 1999,
available: true,
}
,
{
id: 50942303830280,
price: 2299,
available: true,
}
,
{
id: 50942303863048,
price: 2499,
available: true,
}
,
{
id: 52858101563656,
price: 1999,
available: true,
}
,
{
id: 52858101825800,
price: 2299,
available: true,
}
,
{
id: 52858101858568,
price: 2499,
available: true,
}
,
{
id: 50942302945544,
price: 1999,
available: true,
}
,
{
id: 50942303895816,
price: 2299,
available: true,
}
,
{
id: 50942303928584,
price: 2499,
available: true,
}
,
{
id: 50942302978312,
price: 1999,
available: true,
}
,
{
id: 50942303994120,
price: 2299,
available: true,
}
,
{
id: 50942304026888,
price: 2499,
available: true,
}
,
{
id: 52858141147400,
price: 1999,
available: true,
}
,
{
id: 52858101891336,
price: 2299,
available: true,
}
,
{
id: 52858101989640,
price: 2499,
available: true,
}
,
{
id: 50942303011080,
price: 1999,
available: true,
}
,
{
id: 50942304059656,
price: 2299,
available: true,
}
,
{
id: 50942304125192,
price: 2499,
available: true,
}
,
{
id: 50942303076616,
price: 1999,
available: true,
}
,
{
id: 50942304157960,
price: 2299,
available: true,
}
,
{
id: 50942305206536,
price: 2499,
available: true,
}
,
{
id: 50942303109384,
price: 1999,
available: true,
}
,
{
id: 50942305272072,
price: 2299,
available: true,
}
,
{
id: 50942305304840,
price: 2499,
available: true,
}
,
{
id: 50942303142152,
price: 1999,
available: true,
}
,
{
id: 50942305534216,
price: 2299,
available: true,
}
,
{
id: 50942305566984,
price: 2499,
available: true,
}
,
{
id: 50942303174920,
price: 1999,
available: true,
}
,
{
id: 50942305632520,
price: 2299,
available: true,
}
,
{
id: 50942305665288,
price: 2499,
available: true,
}
,
{
id: 50942303207688,
price: 1999,
available: true,
}
,
{
id: 50942305698056,
price: 2299,
available: true,
}
,
{
id: 50942305763592,
price: 2499,
available: true,
}
,
{
id: 50942303273224,
price: 1999,
available: true,
}
,
{
id: 50942305829128,
price: 2299,
available: true,
}
,
{
id: 50942305894664,
price: 2499,
available: true,
}
,
{
id: 50942303305992,
price: 1999,
available: true,
}
,
{
id: 50942305960200,
price: 2299,
available: true,
}
,
{
id: 50942305992968,
price: 2499,
available: true,
}
,
{
id: 50942303338760,
price: 1999,
available: true,
}
,
{
id: 50942306025736,
price: 2299,
available: true,
}
,
{
id: 50942306058504,
price: 2499,
available: true,
}
,
{
id: 50942303371528,
price: 1999,
available: true,
}
,
{
id: 50942306091272,
price: 2299,
available: true,
}
,
{
id: 50942306124040,
price: 2499,
available: true,
}
,
{
id: 50942303404296,
price: 1999,
available: true,
}
,
{
id: 50942306189576,
price: 2299,
available: true,
}
,
{
id: 50942306255112,
price: 2499,
available: true,
}
,
{
id: 50942303502600,
price: 1999,
available: true,
}
,
{
id: 50942306287880,
price: 2299,
available: true,
}
,
{
id: 50942306320648,
price: 2499,
available: true,
}
,
{
id: 50942303535368,
price: 1999,
available: true,
}
,
{
id: 50942306353416,
price: 2299,
available: true,
}
,
{
id: 50942306386184,
price: 2499,
available: true,
}
,
{
id: 52292213342472,
price: 1999,
available: true,
}
,
{
id: 52291993960712,
price: 2299,
available: true,
}
,
{
id: 52292247388424,
price: 2499,
available: true,
}
,
{
id: 52307343180040,
price: 1999,
available: true,
}
,
{
id: 52307358908680,
price: 2299,
available: true,
}
,
{
id: 52307359006984,
price: 2499,
available: true,
}
,
{
id: 52307343311112,
price: 1999,
available: true,
}
,
{
id: 52307359072520,
price: 2299,
available: true,
}
,
{
id: 52307359564040,
price: 2499,
available: true,
}
,
{
id: 52307343376648,
price: 1999,
available: true,
}
,
{
id: 52307359760648,
price: 2299,
available: true,
}
,
{
id: 52307359793416,
price: 2499,
available: true,
}
,
{
id: 52307357958408,
price: 1999,
available: true,
}
,
{
id: 52307359957256,
price: 2299,
available: true,
}
,
{
id: 52307360055560,
price: 2499,
available: true,
}
,
{
id: 52296456700168,
price: 1999,
available: true,
}
,
{
id: 52296457748744,
price: 2299,
available: true,
}
,
{
id: 52296457814280,
price: 2499,
available: true,
}
,
{
id: 52296457879816,
price: 1999,
available: true,
}
,
{
id: 52296458567944,
price: 2299,
available: true,
}
,
{
id: 52296458633480,
price: 2499,
available: true,
}
,
{
id: 52296458699016,
price: 1999,
available: true,
}
,
{
id: 52296477049096,
price: 2299,
available: true,
}
,
{
id: 52296477114632,
price: 2499,
available: true,
}
,
{
id: 52296477147400,
price: 1999,
available: true,
}
,
{
id: 52296479113480,
price: 2299,
available: true,
}
,
{
id: 52296479146248,
price: 2499,
available: true,
}
,
{
id: 52296479244552,
price: 1999,
available: true,
}
,
{
id: 52296481014024,
price: 2299,
available: true,
}
,
{
id: 52296481046792,
price: 2499,
available: true,
}
,
{
id: 52296481079560,
price: 1999,
available: true,
}
,
{
id: 52296528953608,
price: 2299,
available: true,
}
,
{
id: 52296528986376,
price: 2499,
available: true,
}
,
{
id: 52883518062856,
price: 1999,
available: true,
}
,
{
id: 52883518259464,
price: 2299,
available: true,
}
,
{
id: 52883517899016,
price: 2499,
available: true,
}
,
{
id: 52883518292232,
price: 1999,
available: true,
}
,
{
id: 52883518554376,
price: 2299,
available: true,
}
,
{
id: 52883518587144,
price: 2499,
available: true,
}
,
{
id: 52883518685448,
price: 1999,
available: true,
}
,
{
id: 52883536740616,
price: 2299,
available: true,
}
,
{
id: 52883536806152,
price: 2499,
available: true,
}
,
{
id: 52883536871688,
price: 1999,
available: true,
}
,
{
id: 52883658375432,
price: 2299,
available: true,
}
,
{
id: 52883537789192,
price: 2499,
available: true,
}
],
};
.qbk-order-goal,
.shopify-app-block:has(.qbk-free-gift__offers) {
display: none;
}
QikifyBoosterKit = {
...window.QikifyBoosterKit,
checkoutSubmitSelector: 'button[name="checkout"][type="submit"]',
isRewardBarAlwaysInit: true,
disableToast: true,
bundleStayOnPage: true,
debounceCartChangeTimeout: 300,
renderCartContents: () => {
fetch(`${window.themeVariables.routes.cartUrl}.js`)
.then(res => res.json())
.then(cartData => {
fetch(window.location.pathname + "?sections=mini-cart")
.then(res => res.json())
.then(cartContent => {
document.documentElement.dispatchEvent(new CustomEvent("cart:refresh", {
detail: {
cart: {...cartContent, ...cartData}
}
}));
})
})
if (window.themeVariables.settings.cartType === "drawer" && !document.querySelector((".drawer")).open) {
setTimeout(() => {
document.querySelector('a[aria-controls="mini-cart"]').click();
},300)
}
}
}
window.kachingBundlesEnabled = true;
window.kachingBundlesInitialized = false;
// Allow calling kachingBundlesInitialize before the script is loaded
(() => {
let shouldInitialize = false;
let realInitialize = null;
window.kachingBundlesInitialize = () => {
if (realInitialize) {
realInitialize();
} else {
shouldInitialize = true;
}
};
Object.defineProperty(window, '__kachingBundlesInitializeInternal', {
set(fn) {
realInitialize = fn;
if (shouldInitialize) {
shouldInitialize = false;
fn();
}
},
get() {
return realInitialize;
}
});
})();
{
"shopifyDomain": "smart-engineered.myshopify.com",
"moneyFormat": "{{amount_with_comma_separator}}€",
"locale": "de",
"liquidLocale": "de",
"country": "DE",
"currencyRate": 1,
"marketId": 1087111252,
"productId": 10057764733192,
"storefrontAccessToken": "c3a767a24808687e6dac7cd82c484886",
"accessScopes": ["unauthenticated_read_product_inventory","unauthenticated_read_product_listings","unauthenticated_read_selling_plans"],
"customApiHost": null,
"keepQuantityInput": false,
"ignoreDeselect": false,
"ignoreUnitPrice": false,
"abTestsRunning": true,
"webPixel": true,
"b2bCustomer": false,
"preview": false,
"defaultTranslations": {
"system.out_of_stock": "Wir haben nicht genügend Artikel auf Lager, bitte wähle ein kleineres Paket.",
"system.invalid_variant": "Dies ist derzeit leider nicht verfügbar.",
"system.unavailable_option_value": "nicht verfügbar"
},
"customSelectors": {
"quantity": null,
"addToCartButton": null,
"variantPicker": null,
"price": null,
"priceCompare": null
},
"shopCustomStyles": "",
"featureFlags": {"native_swatches_disabled":false,"remove_variant_change_delay":false,"legacy_saved_percentage":false,"initialize_with_form_variant":false,"disable_variant_option_sync":false,"observe_form_selling_plan":false,"price_rounding_v2":false,"variant_images":false,"form_items_array":false,"hide_missing_variants":false}
}
[{"locale":"en","translations":{"system":{},"dealBlocks":{"4aeb6dbc-6c9b-45a6-8761-62c5a4393978":{"Herbst Deal Week 🍂":"Autumn Deal Week 🍂"},"45734137-c713-4195-898b-135f2628429e":{"2for1":"2for1","Herbst Deal Week 🍂":"Autumn Deal Week 🍂","1 x se® SNAPBANK":"1 x se® SNAPBANK","2 x se® SNAPBANK":"2 x se® SNAPBANK","Beim kauf einer se® SNAPBANK erhälst du eine weitere Gratis dazu.":"When you buy a se® SNAPBANK you get another one for free.","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}","2 für 1 Deal":"2 for 1 deal"},"92b0124c-8c9a-481d-9bfa-a2146c0bfe17":{"MOTO":"MOTO","1 x se® 3D Schutzfolie":"1 x se® 3D protective film","2 x se® 3D Schutzfolie":"2 x se® 3D protective film","Spare {{saved_total}}":"Spare {{saved_total}}"},"a11d4a18-1b70-4ecc-abd4-95a2a329f939":{"{{product}}":"{{product}}","Variante wählen":"Choose variant","1 x se® 3D Schutzfolie Set":"1 x se® 3D protective film set","Beliebt":"Popular","2 x se® 3D Schutzfolie Set":"2 x se® 3D protective film set","Kostenloser DHL Versand":"Free DHL shipping","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}"},"91fdf122-2717-4c87-854f-19454c97aaac":{"slimcharge":"slimcharge","1 x se® SLIMCHARGE":"1 x se® SLIM CHARGE","Beliebt":"Popular","2 x se® SLIMCHARGE":"2 x se® SLIM CHARGE","Spare {{saved_percentage}}":"Spare {{saved_percentage}}"},"98ca0737-3875-4d8a-9084-02900bef70cc":{"2for1 Magnetic":"2for1 Magnetic","1 x se® MAGNETIC":"1 x se® MAGNETIC","Beliebt":"Popular","2 x se® MAGNETIC":"2 x se® MAGNETIC","Kostenloser DHL Versand":"Free DHL shipping","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}"},"50b5fd40-feb7-4fbf-acde-1148e42d082d":{"Herbst Deal Week 🍂":"Autumn Deal Week 🍂","1 x se® CARCHARGER":"1 x se® CARCHARGER","Beliebt":"Popular","2 x se® CARCHARGER":"2 x se® CARCHARGER","kostenloser DHL Versand":"free DHL shipping","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}"},"e2920faf-b0ef-49bc-943d-5c52b2f2694d":{"snapmount-deal":"snapmount-deal","Herbst Deal Week 🍂":"Autumn Deal Week 🍂","1 x se® SNAPMOUNT":"1 x se® SNAPMOUNT","2 x se® SNAPMOUNT":"2 x se® SNAPMOUNT","Beim kauf eines se® SNAPMOUNT erhälst du einen weiteren Gratis dazu.":"When you buy a se® SNAPMOUNT you get another one for free.","2 für 1 - Deal":"2 for 1 deal"},"9f87e37a-91e8-4094-9f2d-6ac05bf63b90":{"2for1":"2for1","Herbst Deal Week 🍂":"Autumn Deal Week 🍂","1 x se® SNAPBANK":"1 x se® SNAPBANK","2 x se® SNAPBANK":"2 x se® SNAPBANK","Beim kauf einer se® SNAPBANK erhälst du eine weitere Gratis dazu.":"When you buy a se® SNAPBANK you get another one for free.","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}","2 für 1 Deal":"2 for 1 deal"},"ce526911-65d5-4e0d-b2cc-148e8f5e5254":{"{{product}}":"{{product}}","Variante wählen":"Choose variant","1 x se® 3D Schutzfolie Set":"1 x se® 3D protective film set","Beliebt":"Popular","2 x se® 3D Schutzfolie Set":"2 x se® 3D protective film set","Kostenloser DHL Versand":"Free DHL shipping","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}"},"1dbd5f66-1729-4385-9375-ed6943f53e3b":{"Herbst Deal Week 🍂":"Autumn Deal Week 🍂","1x se® noglass":"1x se® noglass","2 x se® noglass":"2 x se® noglass","Du sparst {{saved_percentage}}":"You save {{saved_percentage}}"},"82be0c59-b341-4cea-8b9c-154a6ff77c5e":{"Pre Order":"Pre Order","Gratis Powerbank nur für Vorbesteller":"Free power bank only for pre-orderers","Kaufe 2 + 1 Gratis":"Buy 2 + Get 1 Free","AM BELIEBTESTEN":"MOST POPULAR","Kaufe 1 + 1 Gratis":"Buy 1 + Get 1 Free","Kaufe 3 + 2 Gratis":"Buy 3 + Get 2 Free"},"9a2a7811-7242-4962-92c3-7d51bcdc2125":{"Spring Deal":"Spring Deal","SPARE IM BUNDLE":"SPARE IM BUNDLE","Kaufe 1 + 1 Gratis":"Buy 1 + Get 1 Free","Kaufe 2 + 1 Gratis":"Buy 2 + Get 1 Free","AM BELIEBTESTEN":"MOST POPULAR","Kaufe 3 + 2 Gratis":"Buy 3 + Get 2 Free"},"0f48bf40-41aa-405f-8bba-4df08042cc92":{"Sommer Deal":"Sommer Deal","SPARE IM BUNDLE":"SPARE IM BUNDLE","Kaufe 2 + 1 Gratis":"Buy 2 + Get 1 Free","Du sparst {{saved_total}}":"You save {{saved_total}}","AM BELIEBTESTEN":"MOST POPULAR","Kaufe 3 + 2 Gratis":"Buy 3 + Get 2 Free","Kaufe 1 + 1 Gratis":"Buy 1 + Get 1 Free"}}}}]
.kaching-bundles__block {
display: none;
}
.kaching-bundles-sticky-atc {
display: none;
}
{
"id": 10057764733192,
"handle": "noglass-der-unzerstoerbare-displayschutz",
"url": "\/products\/noglass-der-unzerstoerbare-displayschutz",
"availableForSale": true,
"title": "se® noglass - der unzerbrechliche Displayschutz",
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"collectionIds": [512665649416,521099739400,480174211336,481159577864,172706201684,553973219592],
"options": [
{
"defaultName": "Marke",
"name": "Marke",
"position": 1,
"optionValues": [
{
"id": 8935433306376,
"defaultName": "Apple",
"name": "Apple",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121003761928,
"defaultName": "Samsung",
"name": "Samsung",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10718572970248,
"defaultName": "Google",
"name": "Google",
"swatch": {
"color": null,
"image": null
}
}
]
},
{
"defaultName": "Modell",
"name": "Modell",
"position": 2,
"optionValues": [
{
"id": 8935433339144,
"defaultName": "iPhone 11",
"name": "iPhone 11",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433404680,
"defaultName": "iPhone 11 Pro",
"name": "iPhone 11 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10690682290440,
"defaultName": "iPhone XR",
"name": "iPhone XR",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10690683535624,
"defaultName": "iPhone X \/ XS",
"name": "iPhone X \/ XS",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10690680979720,
"defaultName": "iPhone XS Max",
"name": "iPhone XS Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433437448,
"defaultName": "iPhone 11 Pro Max",
"name": "iPhone 11 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433470216,
"defaultName": "iPhone 12",
"name": "iPhone 12",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10690688811272,
"defaultName": "iPhone 12 Pro",
"name": "iPhone 12 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433502984,
"defaultName": "iPhone 12 Pro Max",
"name": "iPhone 12 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433535752,
"defaultName": "iPhone 13",
"name": "iPhone 13",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10690690416904,
"defaultName": "iPhone 13 Pro",
"name": "iPhone 13 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433568520,
"defaultName": "iPhone 13 Pro Max",
"name": "iPhone 13 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433601288,
"defaultName": "iPhone 14",
"name": "iPhone 14",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433634056,
"defaultName": "iPhone 14 Plus",
"name": "iPhone 14 Plus",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433666824,
"defaultName": "iPhone 14 Pro",
"name": "iPhone 14 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433699592,
"defaultName": "iPhone 14 Pro Max",
"name": "iPhone 14 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433732360,
"defaultName": "iPhone 15",
"name": "iPhone 15",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433765128,
"defaultName": "iPhone 15 Plus",
"name": "iPhone 15 Plus",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433797896,
"defaultName": "iPhone 15 Pro",
"name": "iPhone 15 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433830664,
"defaultName": "iPhone 15 Pro Max",
"name": "iPhone 15 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433863432,
"defaultName": "iPhone 16",
"name": "iPhone 16",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433896200,
"defaultName": "iPhone 16 Plus",
"name": "iPhone 16 Plus",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433928968,
"defaultName": "iPhone 16 Pro",
"name": "iPhone 16 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433961736,
"defaultName": "iPhone 16 Pro Max",
"name": "iPhone 16 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10115173056776,
"defaultName": "iPhone 16e",
"name": "iPhone 16e",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10133718270216,
"defaultName": "iPhone 17",
"name": "iPhone 17",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10133720924424,
"defaultName": "iPhone 17 Air",
"name": "iPhone 17 Air",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10133723087112,
"defaultName": "iPhone 17 Pro",
"name": "iPhone 17 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10133748809992,
"defaultName": "iPhone 17 Pro Max",
"name": "iPhone 17 Pro Max",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121003794696,
"defaultName": "Galaxy S24",
"name": "Galaxy S24",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121005596936,
"defaultName": "Galaxy S24 Plus",
"name": "Galaxy S24 Plus",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121007661320,
"defaultName": "Galaxy S24 Ultra",
"name": "Galaxy S24 Ultra",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121037283592,
"defaultName": "Galaxy S25",
"name": "Galaxy S25",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121042854152,
"defaultName": "Galaxy S25 Plus",
"name": "Galaxy S25 Plus",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10121049342216,
"defaultName": "Galaxy S25 Ultra",
"name": "Galaxy S25 Ultra",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10718573003016,
"defaultName": "Pixel 9 \/ 9 Pro",
"name": "Pixel 9 \/ 9 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10718574575880,
"defaultName": "Pixel 9 Pro XL",
"name": "Pixel 9 Pro XL",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10718576410888,
"defaultName": "Pixel 10 \/ 10 Pro",
"name": "Pixel 10 \/ 10 Pro",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 10718598070536,
"defaultName": "Pixel 10 Pro XL",
"name": "Pixel 10 Pro XL",
"swatch": {
"color": null,
"image": null
}
}
]
},
{
"defaultName": "Variante",
"name": "Variante",
"position": 3,
"optionValues": [
{
"id": 8935433371912,
"defaultName": "Klar",
"name": "Klar",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935433994504,
"defaultName": "Matt",
"name": "Matt",
"swatch": {
"color": null,
"image": null
}
},
{
"id": 8935434027272,
"defaultName": "Privacy",
"name": "Privacy",
"swatch": {
"color": null,
"image": null
}
}
]
}
],
"selectedVariantId": 50942302781704,
"variants": [
{
"id": 50942302781704,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 824,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303600904,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 355,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303633672,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 404,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942302814472,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 193,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303666440,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 126,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303699208,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 272,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858098352392,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone XR","Klar"],
"imageId": 74850715959560,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?height=200\u0026v=1763969012",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 824,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101661960,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone XR","Matt"],
"imageId": 74850720579848,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?height=200\u0026v=1763969047",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 355,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101694728,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone XR","Privacy"],
"imageId": 74850723660040,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?height=200\u0026v=1763969060",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 404,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858098549000,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone X \/ XS","Klar"],
"imageId": 74850717204744,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?height=200\u0026v=1763969020",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 193,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101727496,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone X \/ XS","Matt"],
"imageId": 74850726773000,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?height=200\u0026v=1763969069",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 126,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101760264,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone X \/ XS","Privacy"],
"imageId": 74850728378632,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?height=200\u0026v=1763969076",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 272,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101530888,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone XS Max","Klar"],
"imageId": 74850718187784,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?height=200\u0026v=1763969027",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 171,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858098123016,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone XS Max","Matt"],
"imageId": 74850713960712,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?height=200\u0026v=1763969005",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 168,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101793032,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone XS Max","Privacy"],
"imageId": 74850729984264,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?height=200\u0026v=1763969088",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 249,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942302880008,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 171,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303731976,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 168,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303797512,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 11 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 249,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942302912776,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1377,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303830280,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 729,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303863048,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1081,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101563656,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro","Klar"],
"imageId": 74850719400200,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?height=200\u0026v=1763969039",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1377,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101825800,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro","Matt"],
"imageId": 74850732441864,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?height=200\u0026v=1763969094",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 729,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101858568,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro","Privacy"],
"imageId": 74850733588744,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?height=200\u0026v=1763969102",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1081,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942302945544,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 223,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303895816,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 115,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303928584,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 12 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 184,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942302978312,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 984,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303994120,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 320,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942304026888,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1673,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858141147400,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro","Klar"],
"imageId": 74851227205896,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?height=200\u0026v=1763970954",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 984,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101891336,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro","Matt"],
"imageId": 74850734506248,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?height=200\u0026v=1763969109",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 320,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52858101989640,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro","Privacy"],
"imageId": 74850735685896,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?height=200\u0026v=1763969119",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1673,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303011080,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 614,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942304059656,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 13,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942304125192,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 13 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1310,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303076616,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1011,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942304157960,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 27,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305206536,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1186,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303109384,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Plus","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 621,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305272072,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Plus","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 86,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305304840,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Plus","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 295,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303142152,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1093,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305534216,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 199,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305566984,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1659,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303174920,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 332,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305632520,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 27,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305665288,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 14 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 510,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303207688,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1147,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305698056,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 59,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305763592,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1799,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303273224,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Plus","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 688,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305829128,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Plus","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 118,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305894664,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Plus","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 171,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303305992,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2569,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305960200,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 360,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942305992968,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 4184,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303338760,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2132,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306025736,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1403,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306058504,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 15 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2770,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303371528,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 546,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306091272,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 136,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306124040,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1131,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303404296,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Plus","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 551,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306189576,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Plus","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 118,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306255112,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Plus","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 249,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303502600,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 2744,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306287880,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 512,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306320648,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 5506,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942303535368,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro Max","Klar"],
"imageId": 62209834451208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?height=200\u0026v=1743087649",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2552,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306353416,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro Max","Matt"],
"imageId": 62209855881480,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?height=200\u0026v=1743058731",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 581,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 50942306386184,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16 Pro Max","Privacy"],
"imageId": 62209857159432,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?height=200\u0026v=1743058735",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2125,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52292213342472,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16e","Klar"],
"imageId": 71326078632200,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?height=200\u0026v=1756378110",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 984,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52291993960712,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16e","Matt"],
"imageId": 71325199335688,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?height=200\u0026v=1756375417",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 320,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52292247388424,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 16e","Privacy"],
"imageId": 71326358143240,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?height=200\u0026v=1756378572",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 1673,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307343180040,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17","Klar"],
"imageId": 71448810651912,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?height=200\u0026v=1756711497",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 2744,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307358908680,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17","Matt"],
"imageId": 71448825889032,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?height=200\u0026v=1756711533",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 512,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359006984,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17","Privacy"],
"imageId": 71448829919496,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?height=200\u0026v=1756711543",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 5507,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307343311112,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Air","Klar"],
"imageId": 71448813306120,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?height=200\u0026v=1756711505",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 233,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359072520,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Air","Matt"],
"imageId": 71448833523976,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?height=200\u0026v=1756711553",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 328,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359564040,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Air","Privacy"],
"imageId": 71448836079880,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?height=200\u0026v=1756711561",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 174,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307343376648,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro","Klar"],
"imageId": 71448815304968,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?height=200\u0026v=1756711515",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 2744,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359760648,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro","Matt"],
"imageId": 71448840601864,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?height=200\u0026v=1756711571",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 512,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359793416,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro","Privacy"],
"imageId": 71448843321608,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?height=200\u0026v=1756711580",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 5507,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307357958408,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro Max","Klar"],
"imageId": 71448818286856,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?height=200\u0026v=1756711525",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 2552,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307359957256,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro Max","Matt"],
"imageId": 71448846336264,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?height=200\u0026v=1756711590",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 581,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52307360055560,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Apple","iPhone 17 Pro Max","Privacy"],
"imageId": 71448853545224,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?height=200\u0026v=1756711598",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 2125,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296456700168,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 286,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296457748744,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 140,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296457814280,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 314,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296457879816,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Plus","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 126,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296458567944,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Plus","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 61,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296458633480,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Plus","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 246,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296458699016,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Ultra","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 270,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296477049096,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Ultra","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 146,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296477114632,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S24 Ultra","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 521,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296477147400,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 287,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296479113480,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 140,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296479146248,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 314,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296479244552,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Plus","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 126,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296481014024,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Plus","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 61,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296481046792,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Plus","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 246,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296481079560,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Ultra","Klar"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 245,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296528953608,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Ultra","Matt"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 154,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52296528986376,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Samsung","Galaxy S25 Ultra","Privacy"],
"imageId": 71359379570952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?height=200\u0026v=1756462779",
"inventoryManagement": "shopify",
"inventoryPolicy": "deny",
"inventoryQuantity": 59,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518062856,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 \/ 9 Pro","Klar"],
"imageId": 74976806142216,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?height=200\u0026v=1764327069",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 326,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518259464,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 \/ 9 Pro","Matt"],
"imageId": 74976810467592,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?height=200\u0026v=1764327076",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 146,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883517899016,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 \/ 9 Pro","Privacy"],
"imageId": 74976804307208,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?height=200\u0026v=1764327061",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 317,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518292232,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 Pro XL","Klar"],
"imageId": 74976823410952,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?height=200\u0026v=1764327084",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 352,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518554376,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 Pro XL","Matt"],
"imageId": 74976843661576,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?height=200\u0026v=1764327095",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 174,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518587144,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Google","Pixel 9 Pro XL","Privacy"],
"imageId": 74976858800392,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?height=200\u0026v=1764327104",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 356,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883518685448,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 \/ 10 Pro","Klar"],
"imageId": 74976872792328,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?height=200\u0026v=1764327111",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 326,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883536740616,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 \/ 10 Pro","Matt"],
"imageId": 74976893534472,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?height=200\u0026v=1764327124",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 146,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883536806152,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 \/ 10 Pro","Privacy"],
"imageId": 74976896123144,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?height=200\u0026v=1764327131",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 317,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883536871688,
"availableForSale": true,
"price": 1999,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 Pro XL","Klar"],
"imageId": 74976901824776,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?height=200\u0026v=1764327139",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 352,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883658375432,
"availableForSale": true,
"price": 2299,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 Pro XL","Matt"],
"imageId": 75210927309064,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?height=200\u0026v=1764858832",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 173,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
},
{
"id": 52883537789192,
"availableForSale": true,
"price": 2499,
"compareAtPrice": 0,
"options": ["Google","Pixel 10 Pro XL","Privacy"],
"imageId": 74976906412296,
"image": "\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?height=200\u0026v=1764327149",
"inventoryManagement": "shopify",
"inventoryPolicy": "continue",
"inventoryQuantity": 356,
"unitPriceQuantityValue": null,
"unitPriceQuantityUnit": null,
"unitPriceReferenceValue": null,
"unitPriceReferenceUnit": null,
"sellingPlans": [
]
}
],
"requiresSellingPlan": false,
"sellingPlans": [
],
"metafields": {
"text": null,
"text2": null,
"text3": null,
"text4": null
},
"legacyMetafields": {
"kaching_bundles": {
"text": null,
"text2": null
}
}
}
{"blockTitle":"WEIHNACHTS-SALE 🎄🌟🎁","blockVisibility":"selected-products","excludeB2bCustomers":false,"blockLayout":"vertical","differentVariantsEnabled":true,"hideVariantPicker":false,"showPricesPerItem":false,"showBothPrices":false,"unitLabel":"","useProductCompareAtPrice":true,"showPricesWithoutDecimals":false,"priceRounding":false,"priceRoundingPrecision":".00","updateNativePrice":false,"updateNativePriceType":"bundle","skipCart":false,"lowStockAlertEnabled":false,"lowStockAlert":null,"showVariantsForSingleQuantity":true,"preselectedDealBarId":"ac065f2f-8248-4b49-8ba7-13de2e614ce4","dealBars":[{"id":"55e3ae1b-0448-469d-b017-fe1b8656fb66","label":"DEAL WEEK","title":"1x se® noglass","upsells":[{"id":"bdPA","text":"+ se® Geschenkbox","quantity":1,"imageSize":30,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":1,"subtitle":"","badgeText":"","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"default","discountValue":19.99,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false},{"id":"ac065f2f-8248-4b49-8ba7-13de2e614ce4","label":"DISCOVERY PACK","title":"2 x se® noglass","upsells":[{"id":"pDYT","text":"+ se® Geschenkbox","quantity":1,"imageSize":50,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":2,"subtitle":"","badgeText":"Du sparst {{saved_percentage}}","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"specific","discountValue":28.49,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false},{"id":"5d0d8ff9-cbab-4a7d-9bf3-73097e4ffe66","label":"FAMILY \u0026 FRIENDS","title":"3x se® noglass","upsells":[{"id":"PuVJ","text":"+ se® Geschenkbox","quantity":1,"imageSize":50,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":3,"subtitle":"","badgeText":"Du sparst {{saved_percentage}}","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"specific","discountValue":35.99,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false}],"cornerRadius":8,"spacing":1,"colors":{"label":{"red":0,"blue":0,"alpha":1,"green":0},"price":{"red":0,"blue":0,"alpha":1,"green":0},"title":{"red":0,"blue":0,"alpha":1,"green":0},"border":{"red":0,"blue":255,"alpha":1,"green":133},"subtitle":{"red":85,"blue":85,"alpha":1,"green":85},"badgeText":{"red":255,"blue":255,"alpha":1,"green":255},"fullPrice":{"red":85,"blue":85,"alpha":1,"green":85},"background":{"red":0,"blue":255,"alpha":0.07,"green":133},"blockTitle":{"red":0,"blue":0,"alpha":1,"green":0},"upsellText":{"red":0,"blue":0,"alpha":1,"green":0},"freeGiftText":{"red":0,"blue":0,"alpha":1,"green":0},"badgeBackground":{"red":0,"blue":255,"alpha":1,"green":133},"labelBackground":{"red":0,"blue":255,"alpha":0.1,"green":133},"upsellBackground":{"red":0,"blue":255,"alpha":0.2,"green":133},"freeGiftBackground":{"red":0,"blue":255,"alpha":0.3,"green":133},"selectedBackground":{"red":255,"blue":255,"alpha":1,"green":255},"upsellSelectedText":{"red":0,"blue":0,"alpha":1,"green":0},"freeGiftSelectedText":{"red":255,"blue":255,"alpha":1,"green":255},"upsellSelectedBackground":{"red":0,"blue":255,"alpha":0.2,"green":133},"freeGiftSelectedBackground":{"red":0,"blue":255,"alpha":1,"green":133},"progressiveGiftsLabelBackground":{"red":230,"blue":255,"alpha":1,"green":243}},"fonts":{"label":{"size":"12","style":"regular"},"title":{"size":"20","style":"bold"},"upsell":{"size":"13","style":"bold"},"freeGift":{"size":13,"style":"bold"},"subtitle":{"size":"14","style":"regular"},"unitLabel":{"size":14,"style":"regular"},"blockTitle":{"size":14,"style":"bold"}},"customStylesEnabled":false,"customStyles":"","swatchOptions":[{"name":"Variante","colors":[],"images":[{"name":"Klar","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453733159176"},{"name":"Matt","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453734928648"},{"name":"Privacy","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453736665352"}],"swatchType":"imageButtons","localization":{"country":"DE","language":"DE"}}],"swatchSize":43,"swatchShape":"square","imageSize":48,"imageCornerRadius":6,"defaultVariantsV2":[],"collectionBreaksEnabled":false,"collectionBreaks":null,"chooseProductModal":null,"timerEnabled":false,"subscriptionsEnabled":false,"subscriptions":null,"currency":null,"stickyAtcEnabled":true,"stickyAtc":{"title":"se® noglass","titleFont":{"size":"16","style":"regular"},"buttonFont":{"size":"16","style":"bold"},"buttonText":"Wähle dein\/e Modelle","titleColor":{"red":0,"blue":0,"alpha":1,"green":0},"buttonColor":{"red":48,"blue":48,"alpha":1,"green":48},"buttonPadding":15,"backgroundColor":{"red":255,"blue":255,"alpha":1,"green":255},"buttonTextColor":{"red":255,"blue":255,"alpha":1,"green":255},"productPhotoSize":40,"buttonCornerRadius":8,"productPhotoCornerRadius":0},"progressiveGiftsEnabled":false,"checkboxUpsellsEnabled":false,"excludedProductIds":[],"excludedCollectionIds":[],"selectedProductIds":[10057764733192],"selectedCollectionIds":[],"marketId":null,"timer":null,"progressiveGifts":null,"checkboxUpsells":null,"otherProductIds":[10576996532488],"id":"65d56048-d665-4713-b65b-02ceb1fe615c","nanoId":"-Nff","abTestVariantId":"dba0adb2-4ef7-4d61-8ead-8c6056d06615","abTestVariantNumber":1,"abTestVariantsCount":2}
{"blockTitle":"BLACK MONTH DEAL 🏷️🖤🛍️","blockVisibility":"selected-products","excludeB2bCustomers":false,"blockLayout":"vertical","differentVariantsEnabled":true,"hideVariantPicker":false,"showPricesPerItem":false,"showBothPrices":false,"unitLabel":"","useProductCompareAtPrice":true,"showPricesWithoutDecimals":false,"priceRounding":false,"priceRoundingPrecision":".00","updateNativePrice":false,"updateNativePriceType":"bundle","skipCart":false,"lowStockAlertEnabled":false,"lowStockAlert":null,"showVariantsForSingleQuantity":true,"preselectedDealBarId":"ac065f2f-8248-4b49-8ba7-13de2e614ce4","dealBars":[{"id":"55e3ae1b-0448-469d-b017-fe1b8656fb66","label":"DEAL WEEK","title":"1x se® noglass","upsells":[{"id":"bdPA","text":"+ se® Geschenkbox","quantity":1,"imageSize":30,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":1,"subtitle":"","badgeText":"","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"default","discountValue":0,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false},{"id":"ac065f2f-8248-4b49-8ba7-13de2e614ce4","label":"DISCOVERY PACK","title":"2 x se® noglass","upsells":[{"id":"pDYT","text":"+ se® Geschenkbox","quantity":1,"imageSize":50,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":2,"subtitle":"","badgeText":"Du sparst {{saved_percentage}}","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"percentage","discountValue":25,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false},{"id":"5d0d8ff9-cbab-4a7d-9bf3-73097e4ffe66","label":"FAMILY \u0026 FRIENDS","title":"3x se® noglass","upsells":[{"id":"PuVJ","text":"+ se® Geschenkbox","quantity":1,"imageSize":50,"productGID":"gid:\/\/shopify\/Product\/10576996532488","variantGID":"gid:\/\/shopify\/ProductVariant\/52718031470856","preselected":false,"discountType":"specific","discountValue":6.9,"mediaImageGID":null,"productSource":"selected","visibleOnlyWhenDealBarSelected":true}],"quantity":3,"subtitle":"","badgeText":"Du sparst {{saved_percentage}}","freeGifts":[],"badgeStyle":"simple","dealBarType":"quantity-break","discountType":"percentage","discountValue":30,"mediaImageGID":null,"showAsSoldOut":null,"quantitySelector":false,"showAsSoldOutEnabled":false}],"cornerRadius":8,"spacing":1,"colors":{"label":{"red":0,"blue":0,"alpha":1,"green":0},"price":{"red":0,"blue":0,"alpha":1,"green":0},"title":{"red":0,"blue":0,"alpha":1,"green":0},"border":{"red":0,"blue":255,"alpha":1,"green":133},"subtitle":{"red":85,"blue":85,"alpha":1,"green":85},"badgeText":{"red":255,"blue":255,"alpha":1,"green":255},"fullPrice":{"red":85,"blue":85,"alpha":1,"green":85},"background":{"red":0,"blue":255,"alpha":0.07,"green":133},"blockTitle":{"red":0,"blue":0,"alpha":1,"green":0},"upsellText":{"red":0,"blue":0,"alpha":1,"green":0},"freeGiftText":{"red":0,"blue":0,"alpha":1,"green":0},"badgeBackground":{"red":0,"blue":255,"alpha":1,"green":133},"labelBackground":{"red":0,"blue":255,"alpha":0.1,"green":133},"upsellBackground":{"red":0,"blue":255,"alpha":0.2,"green":133},"freeGiftBackground":{"red":0,"blue":255,"alpha":0.3,"green":133},"selectedBackground":{"red":255,"blue":255,"alpha":1,"green":255},"upsellSelectedText":{"red":0,"blue":0,"alpha":1,"green":0},"freeGiftSelectedText":{"red":255,"blue":255,"alpha":1,"green":255},"upsellSelectedBackground":{"red":0,"blue":255,"alpha":0.2,"green":133},"freeGiftSelectedBackground":{"red":0,"blue":255,"alpha":1,"green":133},"progressiveGiftsLabelBackground":{"red":230,"blue":255,"alpha":1,"green":243}},"fonts":{"label":{"size":"12","style":"regular"},"title":{"size":"20","style":"bold"},"upsell":{"size":"13","style":"bold"},"freeGift":{"size":13,"style":"bold"},"subtitle":{"size":"14","style":"regular"},"unitLabel":{"size":14,"style":"regular"},"blockTitle":{"size":14,"style":"bold"}},"customStylesEnabled":false,"customStyles":"","swatchOptions":[{"name":"Variante","colors":[],"images":[{"name":"Klar","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453733159176"},{"name":"Matt","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453734928648"},{"name":"Privacy","mediaImageGID":"gid:\/\/shopify\/MediaImage\/55453736665352"}],"swatchType":"imageButtons","localization":{"country":"DE","language":"DE"}}],"swatchSize":43,"swatchShape":"square","imageSize":48,"imageCornerRadius":6,"defaultVariantsV2":[],"collectionBreaksEnabled":false,"collectionBreaks":null,"chooseProductModal":null,"timerEnabled":false,"subscriptionsEnabled":false,"subscriptions":null,"currency":null,"stickyAtcEnabled":true,"stickyAtc":{"title":"se® noglass","titleFont":{"size":"16","style":"regular"},"buttonFont":{"size":"16","style":"bold"},"buttonText":"Wähle dein\/e Modelle","titleColor":{"red":0,"blue":0,"alpha":1,"green":0},"buttonColor":{"red":48,"blue":48,"alpha":1,"green":48},"buttonPadding":15,"backgroundColor":{"red":255,"blue":255,"alpha":1,"green":255},"buttonTextColor":{"red":255,"blue":255,"alpha":1,"green":255},"productPhotoSize":40,"buttonCornerRadius":8,"productPhotoCornerRadius":0},"progressiveGiftsEnabled":false,"checkboxUpsellsEnabled":false,"excludedProductIds":[],"excludedCollectionIds":[],"selectedProductIds":[10057764733192],"selectedCollectionIds":[],"marketId":null,"timer":null,"progressiveGifts":null,"checkboxUpsells":null,"otherProductIds":[10576996532488],"id":"65d56048-d665-4713-b65b-02ceb1fe615c","nanoId":"-Nff","abTestVariantId":"97ddced5-f01e-4dc9-8c2e-f342eae6566e","abTestVariantNumber":2,"abTestVariantsCount":2}
.product-form__option-selector {
display: none !important;
}
{
"storefrontAccessToken": "bbcde5fae769e1eb873812ec971c2822",
"moneyFormat": "{{amount_with_comma_separator}}€",
"customApiHost": "https:\/\/popup-production.onrender.com",
"shopifyDomain": "smart-engineered.myshopify.com",
"productId": 10057764733192,
"liquidLocale": "de",
"collectionIds": [512665649416,521099739400,480174211336,481159577864,172706201684,553973219592],
"cart": {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"EUR","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
"hasSellingPlansScope": null,
"collection": null
}
(function () {
const originalFetch = window.fetch;
window.fetch = function (...args) {
if (window.kachingPopupFetch) {
return window.kachingPopupFetch(originalFetch, ...args);
}
return originalFetch(...args);
};
})();
window._RestockRocketConfig = window._RestockRocketConfig || {}
// Helper function to normalize locale format from hyphen to underscore (e.g., 'en-US' -> 'en_us')
// This matches the backend's Mobility.normalize_locale behavior
// Returns empty string if locale is empty or invalid (matches original behavior)
function normalizeLocale(locale) {
if (!locale || locale.trim() === '') {
return '';
}
return locale.toString().toLowerCase().replace(/-/g, '_');
}
window._RestockRocketConfig.locale = 'de';
window._RestockRocketConfig.normalizedLocale = normalizeLocale('de');
window._RestockRocketConfig.shop = 'smart-engineered.myshopify.com';
window._RestockRocketConfig.pageType = 'product';window._RestockRocketConfig.marketId = 1087111252;window._RestockRocketConfig.countryName = 'Deutschland';
window._RestockRocketConfig.countryIsoCode = 'DE';window._RestockRocketConfig.cartInventoryQuantity = {};window._RestockRocketConfig.cachedSettings = {"id":43462,"shop_id":43434,"currency":"EUR","created_at":"2025-09-22T12:02:44.236Z","updated_at":"2025-10-20T10:43:49.834Z","enable_app":true,"enable_signup_widget":true,"storefront_button_text":"Benachrichtige mich, wenn verfügbar","storefront_button_text_color":"#FFFFFF","storefront_button_background_color":"#202223","storefront_form_header":"Benachrichtige mich","storefront_form_description":"Erhalte eine Benachrichtigung, sobald dieses Produkt wieder verfügbar ist, indem Du dich unten anmeldest!","storefront_form_button_text":"Benachrichtige mich, wenn verfügbar","storefront_form_button_text_color":"#FFFFFF","storefront_form_button_background_color":"#202223","storefront_form_terms":"Wir versprechen, nicht zu spammen. Du erhälst nur Benachrichtigungen für dieses Produkt.","storefront_form_error":"Bitte gebe eine gültige E-Mail-Adresse ein","storefront_form_success":"Danke! Wir werden dich benachrichtigen, wenn das Produkt verfügbar ist.","enable_powered_by":true,"show_button_on_preorder":false,"sms_enabled":false,"email_enabled":true,"storefront_button_disable_tag":"rocket-hide","theme_config":{},"storefront_form_email_placeholder":"E-Mail-Adresse","storefront_form_phone_placeholder":"SMS","storefront_form_phone_label":"Telefonnummer","storefront_form_email_label":"E-Mail","storefront_form_phone_error":"Bitte gebe eine gültige Telefonnummer ein","storefront_form_customer_name_placeholder":"Name","storefront_form_customer_name_error":"Bitte geben Sie einen gültigen Namen ein","storefront_form_did_you_mean_error":"Meinst du %{suggested_email}? Oder verwendest du %{current_email}","form_customer_name_enabled":false,"form_customer_name_required":false,"css_config":"/* Theme defaults from Focal (any version) */\n.restock-rocket-button {\n display: flex !important;\n justify-content: center !important;\n align-items: center !important;\n}","js_config":null,"collect_promotion_consent":false,"storefront_form_promotion_consent_label":"Informieren Sie mich auch über andere Neuigkeiten, Verkäufe, Rabatte und Angebote","show_button_on_collection":false,"sms_default_country":"de","sms_restrict_country":false,"sms_default_channel":true,"optin_required":false,"optin_success_text":"Registrierung bestätigt! Sie erhalten eine Benachrichtigung, sobald das Produkt wieder auf Lager ist.","storefront_button_border_radius":0,"storefront_button_disable_tag_hides_button":true,"storefront_button_disable_tag_enabled":false,"quantity_required":false,"storefront_form_quantity_label":"Menge","enable_alerts":true,"sms_allowed":false,"email_allowed":true,"collect_promotion_consent_default":true,"insert_button_after_selector":".product-form__payment-container","insert_button_after_selector_type":"afterend","storefront_button_position_type":"specific","storefront_form_duplicate_error":"Du hast dich bereits für Benachrichtigungen zu diesem Produkt angemeldet.","default_locale":"de","collection_page_button_text_color":"#FFFFFF","collection_page_button_background_color":"#202223","show_button_if_any_out_of_stock":false,"show_button_if_any_variant_out_of_stock_collection":false,"show_button_on_index":false,"insert_button_after_selector_collection":".product-item-meta__price-list-container","insert_button_after_selector_index":".product-item-meta__price-list-container","push_enabled":false,"push_allowed":false,"storefront_form_push_label":"Push","storefront_form_push_description":"Klicken Sie auf 'Zulassen', um über Push-Benachrichtigung informiert zu werden","storefront_form_push_error":"Berechtigung abgelehnt! Bitte überprüfen Sie die Benachrichtigungseinstellungen und versuchen Sie es erneut.","storefront_font_family":"OpenSans","insert_button_after_selector_collection_type":"afterend","show_channel_selector":false,"storefront_form_empty_error":"Bitte fülle eine oder mehrere der oben genannten Optionen aus","storefront_form_push_input":"Senden Sie eine Benachrichtigung an Ihren Browser","insert_button_after_selector_page":".product-item-meta__price-list-container","show_button_on_page":false,"insert_button_after_selector_search":".product-item-meta__price-list-container","show_button_on_search":false,"app_proxy_path_prefix":"/apps/restockrocket-production","collection_link_selector":"","index_link_selector":"","page_link_selector":"","search_link_selector":"","collection_check_link_visibility":true,"collection_buttons_container":"","index_buttons_container":"","page_buttons_container":"","search_buttons_container":"","extension_enable_url_variant_detection":true,"extension_enable_value_variant_detection":true,"extension_value_variant_selector":"[name='id']","resubscribe_text":"Dieses Produkt ist ausverkauft. Werde benachrichtigt, wenn es wieder auf Lager ist, indem Du deine Details unten eingibst!","preorder_enabled":true,"preorder_buy_button_selector":".shopify-payment-button","preorder_add_to_cart_button_selector":"#AddToCart","preorder_badge_selector":".product-meta__price-list-container .price-list","preorder_button_out_of_stock_text":"Nicht vorrätig","preorder_button_add_to_cart_text":"Add to cart","preorder_form_selector":"form[action*=\"/cart/add\"]","preorder_collection_enabled":false,"preorder_collection_form_selector":"form[action*=\"/cart/add\"]","preorder_collection_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_index_enabled":false,"preorder_index_form_selector":"form[action*=\"/cart/add\"]","preorder_index_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_page_enabled":false,"preorder_page_form_selector":"form[action*=\"/cart/add\"]","preorder_page_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_search_enabled":false,"preorder_search_form_selector":"form[action*=\"/cart/add\"]","preorder_search_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_collection_badge_selector":".product-item__image-wrapper","preorder_index_badge_selector":".product-item__image-wrapper","preorder_page_badge_selector":".product-item__image-wrapper","preorder_search_badge_selector":".product-item__image-wrapper","preorder_badge_selector_type":"afterend","preorder_collection_badge_selector_type":"afterend","preorder_button_child_selector":".loader-button__text","preorder_button_disclaimer_insert_selector":".product-form__payment-container","preorder_button_disclaimer_insert_selector_type":"afterend","preorder_payment_insert_selector":".product-form__payment-container","preorder_payment_insert_selector_type":"beforebegin","preorder_price_container_selector":".price.price--large","preorder_price_container_selector_insert_type":"afterend","preorder_original_price_selector":".price.price--large:not(.visually-hidden)","preorder_price_format":"{{amount}} {{currency}}","show_badge_if_any_variant_is_preorder":false,"enable_console_debug":false,"inline_form_enabled":false,"inline_form_selector":".product-form__payment-container","inline_form_selector_type":"afterend","storefront_form_prefill_customer":true,"market_setup_type":"single_market","shopify_app_id":5940125,"cache":true,"cached_at":"2025-10-21T08:35:02.979Z","multi_language_enabled":true,"translation_locale":"de","translations":{"de":{"storefront_button_text":"Benachrichtige mich, wenn verfügbar","storefront_form_header":"Benachrichtige mich","storefront_form_description":"Erhalte eine Benachrichtigung, sobald dieses Produkt wieder verfügbar ist, indem Du dich unten anmeldest!","storefront_form_button_text":"Benachrichtige mich, wenn verfügbar","storefront_form_terms":"Wir versprechen, nicht zu spammen. Du erhälst nur Benachrichtigungen für dieses Produkt.","storefront_form_error":"Bitte gebe eine gültige E-Mail-Adresse ein","storefront_form_success":"Danke! Wir werden dich benachrichtigen, wenn das Produkt verfügbar ist.","storefront_form_email_placeholder":"E-Mail-Adresse","storefront_form_phone_placeholder":"SMS","storefront_form_phone_label":"Telefonnummer","storefront_form_email_label":"E-Mail","storefront_form_phone_error":"Bitte gebe eine gültige Telefonnummer ein","storefront_form_customer_name_placeholder":"Name","storefront_form_customer_name_error":"Bitte geben Sie einen gültigen Namen ein","storefront_form_did_you_mean_error":"Meinst du %{suggested_email}? Oder verwendest du %{current_email}","storefront_form_promotion_consent_label":"Informieren Sie mich auch über andere Neuigkeiten, Verkäufe, Rabatte und Angebote","optin_success_text":"Registrierung bestätigt! Sie erhalten eine Benachrichtigung, sobald das Produkt wieder auf Lager ist.","storefront_form_quantity_label":"Menge","storefront_form_duplicate_error":"Du hast dich bereits für Benachrichtigungen zu diesem Produkt angemeldet.","storefront_form_push_label":"Push","storefront_form_push_description":"Klicken Sie auf 'Zulassen', um über Push-Benachrichtigung informiert zu werden","storefront_form_push_error":"Berechtigung abgelehnt! Bitte überprüfen Sie die Benachrichtigungseinstellungen und versuchen Sie es erneut.","storefront_form_empty_error":"Bitte fülle eine oder mehrere der oben genannten Optionen aus","storefront_form_push_input":"Senden Sie eine Benachrichtigung an Ihren Browser","resubscribe_text":"Dieses Produkt ist ausverkauft. Werde benachrichtigt, wenn es wieder auf Lager ist, indem Du deine Details unten eingibst!","preorder_button_out_of_stock_text":"Nicht vorrätig"}}};window._RestockRocketConfig.cachedPreorderVariantIds = {"preorder_variant_ids":[45604937433352,45604943134984,50483590005000,50942303502600,52307343180040,52307343376648,52311572316424,52311577395464,52863001362696,52863001395464,52863001428232],"updated_at":"2025-12-05T23:05:23Z","market_locations_enabled":false,"market_id":1087111252,"preorder_location_filter_enabled":false,"preorder_location_filter_ids":[],"collection_id":null};window._RestockRocketConfig.cachedInStockVariantIds = { in_stock_variant_ids: [] };window._RestockRocketConfig.cachedOutOfStockVariantIds = { out_of_stock_variant_ids: [] };window._RestockRocketConfig.cachedVariantPreorderLimits = {"variant_preorder_limits":{},"updated_at":"2025-12-11T09:00:29Z","shopify_market_id":1087111252,"market_locations_enabled":false};
window._RestockRocketConfig.cachedVariantPreorderLimitsMarketKey = "variant_preorder_limits_for_market_1087111252";window._RestockRocketConfig.cachedVariantShippingTexts = {"variant_shipping_texts":{},"updated_at":"2025-12-11T09:00:29Z","shopify_market_id":1087111252,"market_locations_enabled":false};
window._RestockRocketConfig.cachedVariantShippingTextsMarketKey = "variant_shipping_texts_for_market_1087111252";window._RestockRocketConfig.sellingPlans = [];window._RestockRocketConfig.integrations = [{"id":"c21ac895-217c-43d0-a7f3-da6476980cf2","shop_id":43434,"enabled":true,"page_types":["product","collection","index","search","page","cart","list-collections","article","blog"],"configuration":{"toastDuration":10000,"toastPosition":"bottom-right","enableXHRHijack":true,"enableFetchHijack":true,"quantityLimitDisabled":false},"type":"hijack","css_config":null,"js_config":null,"created_at":"2025-09-22T12:04:10.619Z","updated_at":"2025-09-22T12:04:10.619Z"}];window._RestockRocketConfig.obfuscateInventoryQuantity = false;window._RestockRocketConfig.product = {"id":10057764733192,"title":"se® noglass - der unzerbrechliche Displayschutz","handle":"noglass-der-unzerstoerbare-displayschutz","description":"","published_at":"2025-06-27T14:23:43+02:00","created_at":"2025-03-06T09:26:14+01:00","vendor":"smart engineered","type":"","tags":["klar","matt","noglass","privacy","smartphone"],"price":1999,"price_min":1999,"price_max":2499,"available":true,"price_varies":true,"compare_at_price":0,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50942302781704,"title":"Apple \/ iPhone 11 \/ Klar","option1":"Apple","option2":"iPhone 11","option3":"Klar","sku":"SE0-F1201-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Klar","public_title":"Apple \/ iPhone 11 \/ Klar","options":["Apple","iPhone 11","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463800","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303600904,"title":"Apple \/ iPhone 11 \/ Matt","option1":"Apple","option2":"iPhone 11","option3":"Matt","sku":"SE0-F1202-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Matt","public_title":"Apple \/ iPhone 11 \/ Matt","options":["Apple","iPhone 11","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463992","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303633672,"title":"Apple \/ iPhone 11 \/ Privacy","option1":"Apple","option2":"iPhone 11","option3":"Privacy","sku":"SE0-F1212-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Privacy","public_title":"Apple \/ iPhone 11 \/ Privacy","options":["Apple","iPhone 11","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464005","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302814472,"title":"Apple \/ iPhone 11 Pro \/ Klar","option1":"Apple","option2":"iPhone 11 Pro","option3":"Klar","sku":"SE0-F1201-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Klar","public_title":"Apple \/ iPhone 11 Pro \/ Klar","options":["Apple","iPhone 11 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463817","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303666440,"title":"Apple \/ iPhone 11 Pro \/ Matt","option1":"Apple","option2":"iPhone 11 Pro","option3":"Matt","sku":"SE0-F1202-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Matt","public_title":"Apple \/ iPhone 11 Pro \/ Matt","options":["Apple","iPhone 11 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464036","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303699208,"title":"Apple \/ iPhone 11 Pro \/ Privacy","option1":"Apple","option2":"iPhone 11 Pro","option3":"Privacy","sku":"SE0-F1212-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Privacy","public_title":"Apple \/ iPhone 11 Pro \/ Privacy","options":["Apple","iPhone 11 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464043","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098352392,"title":"Apple \/ iPhone XR \/ Klar","option1":"Apple","option2":"iPhone XR","option3":"Klar","sku":"SE0-F1201-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850715959560,"product_id":10057764733192,"position":114,"created_at":"2025-11-24T08:23:27+01:00","updated_at":"2025-11-24T08:23:32+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","variant_ids":[52858098352392]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Klar","public_title":"Apple \/ iPhone XR \/ Klar","options":["Apple","iPhone XR","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466719","featured_media":{"alt":null,"id":62154742825224,"position":121,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101661960,"title":"Apple \/ iPhone XR \/ Matt","option1":"Apple","option2":"iPhone XR","option3":"Matt","sku":"SE0-F1202-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850720579848,"product_id":10057764733192,"position":118,"created_at":"2025-11-24T08:24:02+01:00","updated_at":"2025-11-24T08:24:07+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","variant_ids":[52858101661960]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Matt","public_title":"Apple \/ iPhone XR \/ Matt","options":["Apple","iPhone XR","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466764","featured_media":{"alt":null,"id":62154747445512,"position":125,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101694728,"title":"Apple \/ iPhone XR \/ Privacy","option1":"Apple","option2":"iPhone XR","option3":"Privacy","sku":"SE0-F1212-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850723660040,"product_id":10057764733192,"position":119,"created_at":"2025-11-24T08:24:16+01:00","updated_at":"2025-11-24T08:24:20+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","variant_ids":[52858101694728]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Privacy","public_title":"Apple \/ iPhone XR \/ Privacy","options":["Apple","iPhone XR","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466771","featured_media":{"alt":null,"id":62154750525704,"position":126,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098549000,"title":"Apple \/ iPhone X \/ XS \/ Klar","option1":"Apple","option2":"iPhone X \/ XS","option3":"Klar","sku":"SE0-F1201-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850717204744,"product_id":10057764733192,"position":115,"created_at":"2025-11-24T08:23:36+01:00","updated_at":"2025-11-24T08:23:40+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","variant_ids":[52858098549000]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Klar","public_title":"Apple \/ iPhone X \/ XS \/ Klar","options":["Apple","iPhone X \/ XS","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466726","featured_media":{"alt":null,"id":62154744070408,"position":122,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101727496,"title":"Apple \/ iPhone X \/ XS \/ Matt","option1":"Apple","option2":"iPhone X \/ XS","option3":"Matt","sku":"SE0-F1202-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850726773000,"product_id":10057764733192,"position":120,"created_at":"2025-11-24T08:24:24+01:00","updated_at":"2025-11-24T08:24:29+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","variant_ids":[52858101727496]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Matt","public_title":"Apple \/ iPhone X \/ XS \/ Matt","options":["Apple","iPhone X \/ XS","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466788","featured_media":{"alt":null,"id":62154753605896,"position":127,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101760264,"title":"Apple \/ iPhone X \/ XS \/ Privacy","option1":"Apple","option2":"iPhone X \/ XS","option3":"Privacy","sku":"SE0-F1212-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850728378632,"product_id":10057764733192,"position":121,"created_at":"2025-11-24T08:24:31+01:00","updated_at":"2025-11-24T08:24:36+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","variant_ids":[52858101760264]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Privacy","public_title":"Apple \/ iPhone X \/ XS \/ Privacy","options":["Apple","iPhone X \/ XS","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466795","featured_media":{"alt":null,"id":62154755244296,"position":128,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101530888,"title":"Apple \/ iPhone XS Max \/ Klar","option1":"Apple","option2":"iPhone XS Max","option3":"Klar","sku":"SE0-F1201-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850718187784,"product_id":10057764733192,"position":116,"created_at":"2025-11-24T08:23:43+01:00","updated_at":"2025-11-24T08:23:47+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","variant_ids":[52858101530888]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Klar","public_title":"Apple \/ iPhone XS Max \/ Klar","options":["Apple","iPhone XS Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466733","featured_media":{"alt":null,"id":62154745053448,"position":123,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098123016,"title":"Apple \/ iPhone XS Max \/ Matt","option1":"Apple","option2":"iPhone XS Max","option3":"Matt","sku":"SE0-F1202-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850713960712,"product_id":10057764733192,"position":113,"created_at":"2025-11-24T08:23:20+01:00","updated_at":"2025-11-24T08:23:25+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","variant_ids":[52858098123016]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Matt","public_title":"Apple \/ iPhone XS Max \/ Matt","options":["Apple","iPhone XS Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466702","featured_media":{"alt":null,"id":62154740826376,"position":120,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101793032,"title":"Apple \/ iPhone XS Max \/ Privacy","option1":"Apple","option2":"iPhone XS Max","option3":"Privacy","sku":"SE0-F1212-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850729984264,"product_id":10057764733192,"position":122,"created_at":"2025-11-24T08:24:43+01:00","updated_at":"2025-11-24T08:24:48+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","variant_ids":[52858101793032]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Privacy","public_title":"Apple \/ iPhone XS Max \/ Privacy","options":["Apple","iPhone XS Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466801","featured_media":{"alt":null,"id":62154756849928,"position":129,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302880008,"title":"Apple \/ iPhone 11 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Klar","sku":"SE0-F1201-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Klar","public_title":"Apple \/ iPhone 11 Pro Max \/ Klar","options":["Apple","iPhone 11 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463824","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303731976,"title":"Apple \/ iPhone 11 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Matt","sku":"SE0-F1202-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Matt","public_title":"Apple \/ iPhone 11 Pro Max \/ Matt","options":["Apple","iPhone 11 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464050","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303797512,"title":"Apple \/ iPhone 11 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Privacy","sku":"SE0-F1212-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 11 Pro Max \/ Privacy","options":["Apple","iPhone 11 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464067","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302912776,"title":"Apple \/ iPhone 12 \/ Klar","option1":"Apple","option2":"iPhone 12","option3":"Klar","sku":"SE0-F1201-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Klar","public_title":"Apple \/ iPhone 12 \/ Klar","options":["Apple","iPhone 12","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463831","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303830280,"title":"Apple \/ iPhone 12 \/ Matt","option1":"Apple","option2":"iPhone 12","option3":"Matt","sku":"SE0-F1202-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Matt","public_title":"Apple \/ iPhone 12 \/ Matt","options":["Apple","iPhone 12","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464074","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303863048,"title":"Apple \/ iPhone 12 \/ Privacy","option1":"Apple","option2":"iPhone 12","option3":"Privacy","sku":"SE0-F1212-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Privacy","public_title":"Apple \/ iPhone 12 \/ Privacy","options":["Apple","iPhone 12","Privacy"],"price":2499,"weight":140,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464081","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101563656,"title":"Apple \/ iPhone 12 Pro \/ Klar","option1":"Apple","option2":"iPhone 12 Pro","option3":"Klar","sku":"SE0-F1201-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850719400200,"product_id":10057764733192,"position":117,"created_at":"2025-11-24T08:23:54+01:00","updated_at":"2025-11-24T08:23:59+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","variant_ids":[52858101563656]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Klar","public_title":"Apple \/ iPhone 12 Pro \/ Klar","options":["Apple","iPhone 12 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466740","featured_media":{"alt":null,"id":62154746265864,"position":124,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101825800,"title":"Apple \/ iPhone 12 Pro \/ Matt","option1":"Apple","option2":"iPhone 12 Pro","option3":"Matt","sku":"SE0-F1202-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850732441864,"product_id":10057764733192,"position":123,"created_at":"2025-11-24T08:24:50+01:00","updated_at":"2025-11-24T08:24:54+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","variant_ids":[52858101825800]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Matt","public_title":"Apple \/ iPhone 12 Pro \/ Matt","options":["Apple","iPhone 12 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466818","featured_media":{"alt":null,"id":62154759307528,"position":130,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101858568,"title":"Apple \/ iPhone 12 Pro \/ Privacy","option1":"Apple","option2":"iPhone 12 Pro","option3":"Privacy","sku":"SE0-F1212-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850733588744,"product_id":10057764733192,"position":124,"created_at":"2025-11-24T08:24:57+01:00","updated_at":"2025-11-24T08:25:02+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","variant_ids":[52858101858568]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Privacy","public_title":"Apple \/ iPhone 12 Pro \/ Privacy","options":["Apple","iPhone 12 Pro","Privacy"],"price":2499,"weight":140,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466825","featured_media":{"alt":null,"id":62154760454408,"position":131,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302945544,"title":"Apple \/ iPhone 12 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Klar","sku":"SE0-F1201-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Klar","public_title":"Apple \/ iPhone 12 Pro Max \/ Klar","options":["Apple","iPhone 12 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463848","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303895816,"title":"Apple \/ iPhone 12 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Matt","sku":"SE0-F1202-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Matt","public_title":"Apple \/ iPhone 12 Pro Max \/ Matt","options":["Apple","iPhone 12 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464098","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303928584,"title":"Apple \/ iPhone 12 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Privacy","sku":"SE0-F1212-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 12 Pro Max \/ Privacy","options":["Apple","iPhone 12 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464104","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302978312,"title":"Apple \/ iPhone 13 \/ Klar","option1":"Apple","option2":"iPhone 13","option3":"Klar","sku":"SE0-F1201-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Klar","public_title":"Apple \/ iPhone 13 \/ Klar","options":["Apple","iPhone 13","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463855","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303994120,"title":"Apple \/ iPhone 13 \/ Matt","option1":"Apple","option2":"iPhone 13","option3":"Matt","sku":"SE0-F1202-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Matt","public_title":"Apple \/ iPhone 13 \/ Matt","options":["Apple","iPhone 13","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464111","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304026888,"title":"Apple \/ iPhone 13 \/ Privacy","option1":"Apple","option2":"iPhone 13","option3":"Privacy","sku":"SE0-F1212-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Privacy","public_title":"Apple \/ iPhone 13 \/ Privacy","options":["Apple","iPhone 13","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464128","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858141147400,"title":"Apple \/ iPhone 13 Pro \/ Klar","option1":"Apple","option2":"iPhone 13 Pro","option3":"Klar","sku":"SE0-F1201-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74851227205896,"product_id":10057764733192,"position":127,"created_at":"2025-11-24T08:55:49+01:00","updated_at":"2025-11-24T08:55:54+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","variant_ids":[52858141147400]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Klar","public_title":"Apple \/ iPhone 13 Pro \/ Klar","options":["Apple","iPhone 13 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466757","featured_media":{"alt":null,"id":62155251581192,"position":134,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101891336,"title":"Apple \/ iPhone 13 Pro \/ Matt","option1":"Apple","option2":"iPhone 13 Pro","option3":"Matt","sku":"SE0-F1202-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850734506248,"product_id":10057764733192,"position":125,"created_at":"2025-11-24T08:25:04+01:00","updated_at":"2025-11-24T08:25:09+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","variant_ids":[52858101891336]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Matt","public_title":"Apple \/ iPhone 13 Pro \/ Matt","options":["Apple","iPhone 13 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466832","featured_media":{"alt":null,"id":62154761371912,"position":132,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101989640,"title":"Apple \/ iPhone 13 Pro \/ Privacy","option1":"Apple","option2":"iPhone 13 Pro","option3":"Privacy","sku":"SE0-F1212-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850735685896,"product_id":10057764733192,"position":126,"created_at":"2025-11-24T08:25:14+01:00","updated_at":"2025-11-24T08:25:19+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","variant_ids":[52858101989640]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Privacy","public_title":"Apple \/ iPhone 13 Pro \/ Privacy","options":["Apple","iPhone 13 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466849","featured_media":{"alt":null,"id":62154762551560,"position":133,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303011080,"title":"Apple \/ iPhone 13 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Klar","sku":"SE0-F1201-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Klar","public_title":"Apple \/ iPhone 13 Pro Max \/ Klar","options":["Apple","iPhone 13 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463862","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304059656,"title":"Apple \/ iPhone 13 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Matt","sku":"SE0-F1202-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Matt","public_title":"Apple \/ iPhone 13 Pro Max \/ Matt","options":["Apple","iPhone 13 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":13,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464135","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304125192,"title":"Apple \/ iPhone 13 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Privacy","sku":"SE0-F1212-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 13 Pro Max \/ Privacy","options":["Apple","iPhone 13 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464142","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303076616,"title":"Apple \/ iPhone 14 \/ Klar","option1":"Apple","option2":"iPhone 14","option3":"Klar","sku":"SE0-F1201-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Klar","public_title":"Apple \/ iPhone 14 \/ Klar","options":["Apple","iPhone 14","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463879","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304157960,"title":"Apple \/ iPhone 14 \/ Matt","option1":"Apple","option2":"iPhone 14","option3":"Matt","sku":"SE0-F1202-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Matt","public_title":"Apple \/ iPhone 14 \/ Matt","options":["Apple","iPhone 14","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":27,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464159","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305206536,"title":"Apple \/ iPhone 14 \/ Privacy","option1":"Apple","option2":"iPhone 14","option3":"Privacy","sku":"SE0-F1212-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Privacy","public_title":"Apple \/ iPhone 14 \/ Privacy","options":["Apple","iPhone 14","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464166","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303109384,"title":"Apple \/ iPhone 14 Plus \/ Klar","option1":"Apple","option2":"iPhone 14 Plus","option3":"Klar","sku":"SE0-F1201-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Klar","public_title":"Apple \/ iPhone 14 Plus \/ Klar","options":["Apple","iPhone 14 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463886","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305272072,"title":"Apple \/ iPhone 14 Plus \/ Matt","option1":"Apple","option2":"iPhone 14 Plus","option3":"Matt","sku":"SE0-F1202-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Matt","public_title":"Apple \/ iPhone 14 Plus \/ Matt","options":["Apple","iPhone 14 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464173","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305304840,"title":"Apple \/ iPhone 14 Plus \/ Privacy","option1":"Apple","option2":"iPhone 14 Plus","option3":"Privacy","sku":"SE0-F1212-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Privacy","public_title":"Apple \/ iPhone 14 Plus \/ Privacy","options":["Apple","iPhone 14 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464180","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303142152,"title":"Apple \/ iPhone 14 Pro \/ Klar","option1":"Apple","option2":"iPhone 14 Pro","option3":"Klar","sku":"SE0-F1201-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Klar","public_title":"Apple \/ iPhone 14 Pro \/ Klar","options":["Apple","iPhone 14 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463893","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305534216,"title":"Apple \/ iPhone 14 Pro \/ Matt","option1":"Apple","option2":"iPhone 14 Pro","option3":"Matt","sku":"SE0-F1202-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Matt","public_title":"Apple \/ iPhone 14 Pro \/ Matt","options":["Apple","iPhone 14 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464197","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305566984,"title":"Apple \/ iPhone 14 Pro \/ Privacy","option1":"Apple","option2":"iPhone 14 Pro","option3":"Privacy","sku":"SE0-F1212-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Privacy","public_title":"Apple \/ iPhone 14 Pro \/ Privacy","options":["Apple","iPhone 14 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464203","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303174920,"title":"Apple \/ iPhone 14 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Klar","sku":"SE0-F1201-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Klar","public_title":"Apple \/ iPhone 14 Pro Max \/ Klar","options":["Apple","iPhone 14 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463909","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305632520,"title":"Apple \/ iPhone 14 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Matt","sku":"SE0-F1202-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Matt","public_title":"Apple \/ iPhone 14 Pro Max \/ Matt","options":["Apple","iPhone 14 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":27,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464210","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305665288,"title":"Apple \/ iPhone 14 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Privacy","sku":"SE0-F1212-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 14 Pro Max \/ Privacy","options":["Apple","iPhone 14 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464227","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303207688,"title":"Apple \/ iPhone 15 \/ Klar","option1":"Apple","option2":"iPhone 15","option3":"Klar","sku":"SE0-F1201-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Klar","public_title":"Apple \/ iPhone 15 \/ Klar","options":["Apple","iPhone 15","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463916","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305698056,"title":"Apple \/ iPhone 15 \/ Matt","option1":"Apple","option2":"iPhone 15","option3":"Matt","sku":"SE0-F1202-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Matt","public_title":"Apple \/ iPhone 15 \/ Matt","options":["Apple","iPhone 15","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464234","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305763592,"title":"Apple \/ iPhone 15 \/ Privacy","option1":"Apple","option2":"iPhone 15","option3":"Privacy","sku":"SE0-F1212-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Privacy","public_title":"Apple \/ iPhone 15 \/ Privacy","options":["Apple","iPhone 15","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464241","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303273224,"title":"Apple \/ iPhone 15 Plus \/ Klar","option1":"Apple","option2":"iPhone 15 Plus","option3":"Klar","sku":"SE0-F1201-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Klar","public_title":"Apple \/ iPhone 15 Plus \/ Klar","options":["Apple","iPhone 15 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463923","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305829128,"title":"Apple \/ iPhone 15 Plus \/ Matt","option1":"Apple","option2":"iPhone 15 Plus","option3":"Matt","sku":"SE0-F1202-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Matt","public_title":"Apple \/ iPhone 15 Plus \/ Matt","options":["Apple","iPhone 15 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464258","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305894664,"title":"Apple \/ iPhone 15 Plus \/ Privacy","option1":"Apple","option2":"iPhone 15 Plus","option3":"Privacy","sku":"SE0-F1212-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Privacy","public_title":"Apple \/ iPhone 15 Plus \/ Privacy","options":["Apple","iPhone 15 Plus","Privacy"],"price":2499,"weight":100,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464265","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303305992,"title":"Apple \/ iPhone 15 Pro \/ Klar","option1":"Apple","option2":"iPhone 15 Pro","option3":"Klar","sku":"SE0-F1201-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Klar","public_title":"Apple \/ iPhone 15 Pro \/ Klar","options":["Apple","iPhone 15 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463930","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305960200,"title":"Apple \/ iPhone 15 Pro \/ Matt","option1":"Apple","option2":"iPhone 15 Pro","option3":"Matt","sku":"SE0-F1202-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Matt","public_title":"Apple \/ iPhone 15 Pro \/ Matt","options":["Apple","iPhone 15 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464272","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305992968,"title":"Apple \/ iPhone 15 Pro \/ Privacy","option1":"Apple","option2":"iPhone 15 Pro","option3":"Privacy","sku":"SE0-F1212-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Privacy","public_title":"Apple \/ iPhone 15 Pro \/ Privacy","options":["Apple","iPhone 15 Pro","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464289","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303338760,"title":"Apple \/ iPhone 15 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Klar","sku":"SE0-F1201-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Klar","public_title":"Apple \/ iPhone 15 Pro Max \/ Klar","options":["Apple","iPhone 15 Pro Max","Klar"],"price":1999,"weight":100,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463947","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306025736,"title":"Apple \/ iPhone 15 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Matt","sku":"SE0-F1202-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Matt","public_title":"Apple \/ iPhone 15 Pro Max \/ Matt","options":["Apple","iPhone 15 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464296","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306058504,"title":"Apple \/ iPhone 15 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Privacy","sku":"SE0-F1212-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 15 Pro Max \/ Privacy","options":["Apple","iPhone 15 Pro Max","Privacy"],"price":2499,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464302","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303371528,"title":"Apple \/ iPhone 16 \/ Klar","option1":"Apple","option2":"iPhone 16","option3":"Klar","sku":"SE0-F1201-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Klar","public_title":"Apple \/ iPhone 16 \/ Klar","options":["Apple","iPhone 16","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463954","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306091272,"title":"Apple \/ iPhone 16 \/ Matt","option1":"Apple","option2":"iPhone 16","option3":"Matt","sku":"SE0-F1202-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Matt","public_title":"Apple \/ iPhone 16 \/ Matt","options":["Apple","iPhone 16","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464319","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306124040,"title":"Apple \/ iPhone 16 \/ Privacy","option1":"Apple","option2":"iPhone 16","option3":"Privacy","sku":"SE0-F1212-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Privacy","public_title":"Apple \/ iPhone 16 \/ Privacy","options":["Apple","iPhone 16","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464326","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303404296,"title":"Apple \/ iPhone 16 Plus \/ Klar","option1":"Apple","option2":"iPhone 16 Plus","option3":"Klar","sku":"SE0-F1201-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Klar","public_title":"Apple \/ iPhone 16 Plus \/ Klar","options":["Apple","iPhone 16 Plus","Klar"],"price":1999,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463961","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306189576,"title":"Apple \/ iPhone 16 Plus \/ Matt","option1":"Apple","option2":"iPhone 16 Plus","option3":"Matt","sku":"SE0-F1202-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Matt","public_title":"Apple \/ iPhone 16 Plus \/ Matt","options":["Apple","iPhone 16 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464333","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306255112,"title":"Apple \/ iPhone 16 Plus \/ Privacy","option1":"Apple","option2":"iPhone 16 Plus","option3":"Privacy","sku":"SE0-F1212-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Privacy","public_title":"Apple \/ iPhone 16 Plus \/ Privacy","options":["Apple","iPhone 16 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464340","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303502600,"title":"Apple \/ iPhone 16 Pro \/ Klar","option1":"Apple","option2":"iPhone 16 Pro","option3":"Klar","sku":"SE0-F1201-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Klar","public_title":"Apple \/ iPhone 16 Pro \/ Klar","options":["Apple","iPhone 16 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485463978","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306287880,"title":"Apple \/ iPhone 16 Pro \/ Matt","option1":"Apple","option2":"iPhone 16 Pro","option3":"Matt","sku":"SE0-F1202-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Matt","public_title":"Apple \/ iPhone 16 Pro \/ Matt","options":["Apple","iPhone 16 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464357","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306320648,"title":"Apple \/ iPhone 16 Pro \/ Privacy","option1":"Apple","option2":"iPhone 16 Pro","option3":"Privacy","sku":"SE0-F1212-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Privacy","public_title":"Apple \/ iPhone 16 Pro \/ Privacy","options":["Apple","iPhone 16 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485464364","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303535368,"title":"Apple \/ iPhone 16 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Klar","sku":"SE0-F1201-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Klar","public_title":"Apple \/ iPhone 16 Pro Max \/ Klar","options":["Apple","iPhone 16 Pro Max","Klar"],"price":1999,"weight":110,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463985","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306353416,"title":"Apple \/ iPhone 16 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Matt","sku":"SE0-F1202-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Matt","public_title":"Apple \/ iPhone 16 Pro Max \/ Matt","options":["Apple","iPhone 16 Pro Max","Matt"],"price":2299,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464371","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306386184,"title":"Apple \/ iPhone 16 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Privacy","sku":"SE0-F1212-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 16 Pro Max \/ Privacy","options":["Apple","iPhone 16 Pro Max","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464388","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52292213342472,"title":"Apple \/ iPhone 16e \/ Klar","option1":"Apple","option2":"iPhone 16e","option3":"Klar","sku":"SE0-F1201-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71326078632200,"product_id":10057764733192,"position":74,"created_at":"2025-08-28T12:48:25+02:00","updated_at":"2025-08-28T12:48:30+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","variant_ids":[52292213342472]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Klar","public_title":"Apple \/ iPhone 16e \/ Klar","options":["Apple","iPhone 16e","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465675","featured_media":{"alt":null,"id":58710772744456,"position":80,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52291993960712,"title":"Apple \/ iPhone 16e \/ Matt","option1":"Apple","option2":"iPhone 16e","option3":"Matt","sku":"SE0-F1202-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71325199335688,"product_id":10057764733192,"position":73,"created_at":"2025-08-28T12:03:33+02:00","updated_at":"2025-08-28T12:03:37+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","variant_ids":[52291993960712]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Matt","public_title":"Apple \/ iPhone 16e \/ Matt","options":["Apple","iPhone 16e","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465682","featured_media":{"alt":null,"id":58709903442184,"position":79,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52292247388424,"title":"Apple \/ iPhone 16e \/ Privacy","option1":"Apple","option2":"iPhone 16e","option3":"Privacy","sku":"SE0-F1212-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71326358143240,"product_id":10057764733192,"position":75,"created_at":"2025-08-28T12:56:07+02:00","updated_at":"2025-08-28T12:56:12+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","variant_ids":[52292247388424]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Privacy","public_title":"Apple \/ iPhone 16e \/ Privacy","options":["Apple","iPhone 16e","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465699","featured_media":{"alt":null,"id":58711047241992,"position":81,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343180040,"title":"Apple \/ iPhone 17 \/ Klar","option1":"Apple","option2":"iPhone 17","option3":"Klar","sku":"SE0-F1201-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448810651912,"product_id":10057764733192,"position":94,"created_at":"2025-09-01T09:24:52+02:00","updated_at":"2025-09-01T09:24:57+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","variant_ids":[52307343180040]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Klar","public_title":"Apple \/ iPhone 17 \/ Klar","options":["Apple","iPhone 17","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465545","featured_media":{"alt":null,"id":58832422895880,"position":100,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307358908680,"title":"Apple \/ iPhone 17 \/ Matt","option1":"Apple","option2":"iPhone 17","option3":"Matt","sku":"SE0-F1202-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448825889032,"product_id":10057764733192,"position":98,"created_at":"2025-09-01T09:25:28+02:00","updated_at":"2025-09-01T09:25:33+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","variant_ids":[52307358908680]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Matt","public_title":"Apple \/ iPhone 17 \/ Matt","options":["Apple","iPhone 17","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465583","featured_media":{"alt":null,"id":58832438100232,"position":104,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359006984,"title":"Apple \/ iPhone 17 \/ Privacy","option1":"Apple","option2":"iPhone 17","option3":"Privacy","sku":"SE0-F1212-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448829919496,"product_id":10057764733192,"position":99,"created_at":"2025-09-01T09:25:38+02:00","updated_at":"2025-09-01T09:25:43+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","variant_ids":[52307359006984]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Privacy","public_title":"Apple \/ iPhone 17 \/ Privacy","options":["Apple","iPhone 17","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465590","featured_media":{"alt":null,"id":58832442097928,"position":105,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343311112,"title":"Apple \/ iPhone 17 Air \/ Klar","option1":"Apple","option2":"iPhone 17 Air","option3":"Klar","sku":"SE0-F1201-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448813306120,"product_id":10057764733192,"position":95,"created_at":"2025-09-01T09:25:00+02:00","updated_at":"2025-09-01T09:25:05+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","variant_ids":[52307343311112]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Klar","public_title":"Apple \/ iPhone 17 Air \/ Klar","options":["Apple","iPhone 17 Air","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465552","featured_media":{"alt":null,"id":58832425681160,"position":101,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359072520,"title":"Apple \/ iPhone 17 Air \/ Matt","option1":"Apple","option2":"iPhone 17 Air","option3":"Matt","sku":"SE0-F1202-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448833523976,"product_id":10057764733192,"position":100,"created_at":"2025-09-01T09:25:49+02:00","updated_at":"2025-09-01T09:25:53+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","variant_ids":[52307359072520]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Matt","public_title":"Apple \/ iPhone 17 Air \/ Matt","options":["Apple","iPhone 17 Air","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465606","featured_media":{"alt":null,"id":58832445702408,"position":106,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359564040,"title":"Apple \/ iPhone 17 Air \/ Privacy","option1":"Apple","option2":"iPhone 17 Air","option3":"Privacy","sku":"SE0-F1212-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448836079880,"product_id":10057764733192,"position":101,"created_at":"2025-09-01T09:25:56+02:00","updated_at":"2025-09-01T09:26:01+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","variant_ids":[52307359564040]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Privacy","public_title":"Apple \/ iPhone 17 Air \/ Privacy","options":["Apple","iPhone 17 Air","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465613","featured_media":{"alt":null,"id":58832448061704,"position":107,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343376648,"title":"Apple \/ iPhone 17 Pro \/ Klar","option1":"Apple","option2":"iPhone 17 Pro","option3":"Klar","sku":"SE0-F1201-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448815304968,"product_id":10057764733192,"position":96,"created_at":"2025-09-01T09:25:10+02:00","updated_at":"2025-09-01T09:25:15+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","variant_ids":[52307343376648]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Klar","public_title":"Apple \/ iPhone 17 Pro \/ Klar","options":["Apple","iPhone 17 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465569","featured_media":{"alt":null,"id":58832427385096,"position":102,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359760648,"title":"Apple \/ iPhone 17 Pro \/ Matt","option1":"Apple","option2":"iPhone 17 Pro","option3":"Matt","sku":"SE0-F1202-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448840601864,"product_id":10057764733192,"position":102,"created_at":"2025-09-01T09:26:07+02:00","updated_at":"2025-09-01T09:26:11+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","variant_ids":[52307359760648]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Matt","public_title":"Apple \/ iPhone 17 Pro \/ Matt","options":["Apple","iPhone 17 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465620","featured_media":{"alt":null,"id":58832452780296,"position":108,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359793416,"title":"Apple \/ iPhone 17 Pro \/ Privacy","option1":"Apple","option2":"iPhone 17 Pro","option3":"Privacy","sku":"SE0-F1212-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448843321608,"product_id":10057764733192,"position":103,"created_at":"2025-09-01T09:26:16+02:00","updated_at":"2025-09-01T09:26:20+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","variant_ids":[52307359793416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Privacy","public_title":"Apple \/ iPhone 17 Pro \/ Privacy","options":["Apple","iPhone 17 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465637","featured_media":{"alt":null,"id":58832455500040,"position":109,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307357958408,"title":"Apple \/ iPhone 17 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Klar","sku":"SE0-F1201-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448818286856,"product_id":10057764733192,"position":97,"created_at":"2025-09-01T09:25:20+02:00","updated_at":"2025-09-01T09:25:25+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","variant_ids":[52307357958408]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Klar","public_title":"Apple \/ iPhone 17 Pro Max \/ Klar","options":["Apple","iPhone 17 Pro Max","Klar"],"price":1999,"weight":110,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465576","featured_media":{"alt":null,"id":58832430301448,"position":103,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359957256,"title":"Apple \/ iPhone 17 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Matt","sku":"SE0-F1202-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448846336264,"product_id":10057764733192,"position":104,"created_at":"2025-09-01T09:26:26+02:00","updated_at":"2025-09-01T09:26:30+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","variant_ids":[52307359957256]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Matt","public_title":"Apple \/ iPhone 17 Pro Max \/ Matt","options":["Apple","iPhone 17 Pro Max","Matt"],"price":2299,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465644","featured_media":{"alt":null,"id":58832458383624,"position":110,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307360055560,"title":"Apple \/ iPhone 17 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Privacy","sku":"SE0-F1212-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448853545224,"product_id":10057764733192,"position":105,"created_at":"2025-09-01T09:26:33+02:00","updated_at":"2025-09-01T09:26:38+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","variant_ids":[52307360055560]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 17 Pro Max \/ Privacy","options":["Apple","iPhone 17 Pro Max","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465651","featured_media":{"alt":null,"id":58832465625352,"position":111,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296456700168,"title":"Samsung \/ Galaxy S24 \/ Klar","option1":"Samsung","option2":"Galaxy S24","option3":"Klar","sku":"SE0-F1201-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Klar","public_title":"Samsung \/ Galaxy S24 \/ Klar","options":["Samsung","Galaxy S24","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465866","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457748744,"title":"Samsung \/ Galaxy S24 \/ Matt","option1":"Samsung","option2":"Galaxy S24","option3":"Matt","sku":"SE0-F1202-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Matt","public_title":"Samsung \/ Galaxy S24 \/ Matt","options":["Samsung","Galaxy S24","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465873","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457814280,"title":"Samsung \/ Galaxy S24 \/ Privacy","option1":"Samsung","option2":"Galaxy S24","option3":"Privacy","sku":"SE0-F1212-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Privacy","public_title":"Samsung \/ Galaxy S24 \/ Privacy","options":["Samsung","Galaxy S24","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465897","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457879816,"title":"Samsung \/ Galaxy S24 Plus \/ Klar","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Klar","sku":"SE0-F1201-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Klar","public_title":"Samsung \/ Galaxy S24 Plus \/ Klar","options":["Samsung","Galaxy S24 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465880","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458567944,"title":"Samsung \/ Galaxy S24 Plus \/ Matt","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Matt","sku":"SE0-F1202-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Matt","public_title":"Samsung \/ Galaxy S24 Plus \/ Matt","options":["Samsung","Galaxy S24 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465903","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458633480,"title":"Samsung \/ Galaxy S24 Plus \/ Privacy","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Privacy","sku":"SE0-F1212-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Privacy","public_title":"Samsung \/ Galaxy S24 Plus \/ Privacy","options":["Samsung","Galaxy S24 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465910","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458699016,"title":"Samsung \/ Galaxy S24 Ultra \/ Klar","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Klar","sku":"SE0-F1201-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Klar","public_title":"Samsung \/ Galaxy S24 Ultra \/ Klar","options":["Samsung","Galaxy S24 Ultra","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465927","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477049096,"title":"Samsung \/ Galaxy S24 Ultra \/ Matt","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Matt","sku":"SE0-F1202-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Matt","public_title":"Samsung \/ Galaxy S24 Ultra \/ Matt","options":["Samsung","Galaxy S24 Ultra","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465934","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477114632,"title":"Samsung \/ Galaxy S24 Ultra \/ Privacy","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Privacy","sku":"SE0-F1212-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Privacy","public_title":"Samsung \/ Galaxy S24 Ultra \/ Privacy","options":["Samsung","Galaxy S24 Ultra","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465941","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477147400,"title":"Samsung \/ Galaxy S25 \/ Klar","option1":"Samsung","option2":"Galaxy S25","option3":"Klar","sku":"SE0-F1201-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Klar","public_title":"Samsung \/ Galaxy S25 \/ Klar","options":["Samsung","Galaxy S25","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465958","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479113480,"title":"Samsung \/ Galaxy S25 \/ Matt","option1":"Samsung","option2":"Galaxy S25","option3":"Matt","sku":"SE0-F1202-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Matt","public_title":"Samsung \/ Galaxy S25 \/ Matt","options":["Samsung","Galaxy S25","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465965","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479146248,"title":"Samsung \/ Galaxy S25 \/ Privacy","option1":"Samsung","option2":"Galaxy S25","option3":"Privacy","sku":"SE0-F1212-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Privacy","public_title":"Samsung \/ Galaxy S25 \/ Privacy","options":["Samsung","Galaxy S25","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465972","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479244552,"title":"Samsung \/ Galaxy S25 Plus \/ Klar","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Klar","sku":"SE0-F1201-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Klar","public_title":"Samsung \/ Galaxy S25 Plus \/ Klar","options":["Samsung","Galaxy S25 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465989","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481014024,"title":"Samsung \/ Galaxy S25 Plus \/ Matt","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Matt","sku":"SE0-F1202-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Matt","public_title":"Samsung \/ Galaxy S25 Plus \/ Matt","options":["Samsung","Galaxy S25 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465996","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481046792,"title":"Samsung \/ Galaxy S25 Plus \/ Privacy","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Privacy","sku":"SE0-F1212-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Privacy","public_title":"Samsung \/ Galaxy S25 Plus \/ Privacy","options":["Samsung","Galaxy S25 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466009","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481079560,"title":"Samsung \/ Galaxy S25 Ultra \/ Klar","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Klar","sku":"SE0-F1201-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Klar","public_title":"Samsung \/ Galaxy S25 Ultra \/ Klar","options":["Samsung","Galaxy S25 Ultra","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466016","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296528953608,"title":"Samsung \/ Galaxy S25 Ultra \/ Matt","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Matt","sku":"SE0-F1202-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Matt","public_title":"Samsung \/ Galaxy S25 Ultra \/ Matt","options":["Samsung","Galaxy S25 Ultra","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466023","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296528986376,"title":"Samsung \/ Galaxy S25 Ultra \/ Privacy","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Privacy","sku":"SE0-F1212-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Privacy","public_title":"Samsung \/ Galaxy S25 Ultra \/ Privacy","options":["Samsung","Galaxy S25 Ultra","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466030","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518062856,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Klar","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Klar","sku":"SE0-F1201-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976806142216,"product_id":10057764733192,"position":129,"created_at":"2025-11-28T11:51:04+01:00","updated_at":"2025-11-28T11:51:09+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","variant_ids":[52883518062856]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Klar","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Klar","options":["Google","Pixel 9 \/ 9 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466542","featured_media":{"alt":null,"id":62275322216712,"position":136,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518259464,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Matt","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Matt","sku":"SE0-F1202-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976810467592,"product_id":10057764733192,"position":130,"created_at":"2025-11-28T11:51:12+01:00","updated_at":"2025-11-28T11:51:16+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","variant_ids":[52883518259464]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Matt","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Matt","options":["Google","Pixel 9 \/ 9 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466559","featured_media":{"alt":null,"id":62275325362440,"position":137,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883517899016,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Privacy","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Privacy","sku":"SE0-F1212-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976804307208,"product_id":10057764733192,"position":128,"created_at":"2025-11-28T11:50:56+01:00","updated_at":"2025-11-28T11:51:01+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","variant_ids":[52883517899016]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Privacy","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Privacy","options":["Google","Pixel 9 \/ 9 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466535","featured_media":{"alt":null,"id":62275320381704,"position":135,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518292232,"title":"Google \/ Pixel 9 Pro XL \/ Klar","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Klar","sku":"SE0-F1201-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976823410952,"product_id":10057764733192,"position":131,"created_at":"2025-11-28T11:51:19+01:00","updated_at":"2025-11-28T11:51:24+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","variant_ids":[52883518292232]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Klar","public_title":"Google \/ Pixel 9 Pro XL \/ Klar","options":["Google","Pixel 9 Pro XL","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466566","featured_media":{"alt":null,"id":62275334930696,"position":138,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518554376,"title":"Google \/ Pixel 9 Pro XL \/ Matt","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Matt","sku":"SE0-F1202-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976843661576,"product_id":10057764733192,"position":132,"created_at":"2025-11-28T11:51:31+01:00","updated_at":"2025-11-28T11:51:35+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","variant_ids":[52883518554376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Matt","public_title":"Google \/ Pixel 9 Pro XL \/ Matt","options":["Google","Pixel 9 Pro XL","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466573","featured_media":{"alt":null,"id":62275358425352,"position":139,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518587144,"title":"Google \/ Pixel 9 Pro XL \/ Privacy","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Privacy","sku":"SE0-F1212-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976858800392,"product_id":10057764733192,"position":133,"created_at":"2025-11-28T11:51:39+01:00","updated_at":"2025-11-28T11:51:44+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","variant_ids":[52883518587144]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Privacy","public_title":"Google \/ Pixel 9 Pro XL \/ Privacy","options":["Google","Pixel 9 Pro XL","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466580","featured_media":{"alt":null,"id":62275372876040,"position":140,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518685448,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Klar","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Klar","sku":"SE0-F1201-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976872792328,"product_id":10057764733192,"position":134,"created_at":"2025-11-28T11:51:47+01:00","updated_at":"2025-11-28T11:51:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","variant_ids":[52883518685448]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Klar","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Klar","options":["Google","Pixel 10 \/ 10 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466597","featured_media":{"alt":null,"id":62275387556104,"position":141,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536740616,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Matt","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Matt","sku":"SE0-F1202-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976893534472,"product_id":10057764733192,"position":135,"created_at":"2025-11-28T11:52:00+01:00","updated_at":"2025-11-28T11:52:04+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","variant_ids":[52883536740616]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Matt","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Matt","options":["Google","Pixel 10 \/ 10 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466603","featured_media":{"alt":null,"id":62275408199944,"position":142,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536806152,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Privacy","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Privacy","sku":"SE0-F1212-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976896123144,"product_id":10057764733192,"position":136,"created_at":"2025-11-28T11:52:07+01:00","updated_at":"2025-11-28T11:52:11+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","variant_ids":[52883536806152]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Privacy","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Privacy","options":["Google","Pixel 10 \/ 10 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466610","featured_media":{"alt":null,"id":62275410755848,"position":143,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536871688,"title":"Google \/ Pixel 10 Pro XL \/ Klar","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Klar","sku":"SE0-F1201-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976901824776,"product_id":10057764733192,"position":137,"created_at":"2025-11-28T11:52:14+01:00","updated_at":"2025-11-28T11:52:19+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","variant_ids":[52883536871688]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Klar","public_title":"Google \/ Pixel 10 Pro XL \/ Klar","options":["Google","Pixel 10 Pro XL","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466627","featured_media":{"alt":null,"id":62275415179528,"position":144,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883658375432,"title":"Google \/ Pixel 10 Pro XL \/ Matt","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Matt","sku":"SE0-F1202-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":75210927309064,"product_id":10057764733192,"position":139,"created_at":"2025-12-04T15:33:47+01:00","updated_at":"2025-12-04T15:33:52+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832","variant_ids":[52883658375432]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Matt","public_title":"Google \/ Pixel 10 Pro XL \/ Matt","options":["Google","Pixel 10 Pro XL","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466634","featured_media":{"alt":null,"id":62500093821192,"position":146,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883537789192,"title":"Google \/ Pixel 10 Pro XL \/ Privacy","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Privacy","sku":"SE0-F1212-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976906412296,"product_id":10057764733192,"position":138,"created_at":"2025-11-28T11:52:24+01:00","updated_at":"2025-11-28T11:52:29+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","variant_ids":[52883537789192]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Privacy","public_title":"Google \/ Pixel 10 Pro XL \/ Privacy","options":["Google","Pixel 10 Pro XL","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466641","featured_media":{"alt":null,"id":62275419308296,"position":145,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"],"featured_image":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","options":["Marke","Modell","Variante"],"media":[{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","width":3000},{"alt":null,"id":53290362962184,"position":2,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649","width":1500},{"alt":null,"id":53290363027720,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649","width":1500},{"alt":null,"id":53290363486472,"position":4,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53290364174600,"position":5,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53290365550856,"position":6,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649","width":1500},{"alt":null,"id":53290365583624,"position":7,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676206856,"position":8,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676239624,"position":9,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676305160,"position":10,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676337928,"position":11,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676370696,"position":12,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649","width":3000},{"alt":null,"id":53668676469000,"position":13,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676632840,"position":14,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649","width":1500},{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","width":3000},{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","width":3000},{"alt":null,"id":53668713103624,"position":17,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/aded974ac14f45e799a1c133f50a28ff.thumbnail.0000000000.jpg?v=1742973895"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.SD-480p-1.0Mbps-44846011.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.HD-1080p-3.3Mbps-44846011.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.HD-720p-2.1Mbps-44846011.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.m3u8?v=0","width":1080}]},{"alt":null,"id":53668752130312,"position":18,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678","width":1500},{"alt":null,"id":53668752228616,"position":19,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671","width":1500},{"alt":null,"id":53668752261384,"position":20,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663","width":1500},{"alt":null,"id":53668752359688,"position":21,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658","width":3000},{"alt":null,"id":53668752326920,"position":22,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651","width":1500},{"alt":null,"id":53668752392456,"position":23,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646","width":1500},{"alt":null,"id":53668752425224,"position":24,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641","width":1500},{"alt":null,"id":53668754096392,"position":25,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/d5305e0e43cf44898908f99ca1778315.thumbnail.0000000000.jpg?v=1742974103"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.SD-480p-1.0Mbps-44846177.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.HD-1080p-3.3Mbps-44846177.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.HD-720p-2.1Mbps-44846177.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.m3u8?v=0","width":1080}]},{"alt":null,"id":53668774609160,"position":26,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634","width":1500},{"alt":null,"id":53668774641928,"position":27,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628","width":1500},{"alt":null,"id":53668774674696,"position":28,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628","width":1500},{"alt":null,"id":53668774707464,"position":29,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622","width":1500},{"alt":null,"id":53668774740232,"position":30,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622","width":1500},{"alt":null,"id":53668774805768,"position":31,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618","width":1500},{"alt":null,"id":53668775985416,"position":32,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618","width":3000},{"alt":null,"id":53668779688200,"position":33,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/b122125ad01340498fdc4b2b41c71b3f.thumbnail.0000000000.jpg?v=1742974230"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.SD-480p-1.0Mbps-44846287.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.HD-1080p-3.3Mbps-44846287.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.HD-720p-2.1Mbps-44846287.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.m3u8?v=0","width":1080}]},{"alt":null,"id":53668783423752,"position":34,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/07338a506c5a4f1f801144fd70943f7d.thumbnail.0000000000.jpg?v=1742974259"},"aspect_ratio":0.563,"duration":4960,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.SD-480p-1.2Mbps-44846308.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.HD-1080p-4.8Mbps-44846308.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.HD-720p-3.0Mbps-44846308.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.m3u8?v=0","width":606}]},{"alt":null,"id":53668799578376,"position":35,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/792a28b8b5b245d29aa0c176ce4d4505.thumbnail.0000000000.jpg?v=1742974329"},"aspect_ratio":0.563,"duration":5920,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.SD-480p-1.2Mbps-44846370.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.HD-1080p-4.8Mbps-44846370.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.HD-720p-3.0Mbps-44846370.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.m3u8?v=0","width":606}]},{"alt":null,"id":53668815175944,"position":36,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/0c71024a93ea40738766822e3d5914e1.thumbnail.0000000000.jpg?v=1742974391"},"aspect_ratio":0.563,"duration":5340,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.SD-480p-1.2Mbps-44846413.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.HD-1080p-4.8Mbps-44846413.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.HD-720p-3.0Mbps-44846413.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.m3u8?v=0","width":606}]},{"alt":null,"id":53688601379080,"position":37,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520","width":1500},{"alt":null,"id":53688601411848,"position":38,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601444616,"position":39,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521","width":1500},{"alt":null,"id":53688601477384,"position":40,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601510152,"position":41,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601575688,"position":42,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601805064,"position":43,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523","width":3000},{"alt":null,"id":53688609341704,"position":44,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609374472,"position":45,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609440008,"position":46,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556","width":1500},{"alt":null,"id":53688609407240,"position":47,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609505544,"position":48,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556","width":1500},{"alt":null,"id":53688609669384,"position":49,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557","width":1500},{"alt":null,"id":53688609964296,"position":50,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560","width":3000},{"alt":null,"id":53688614158600,"position":51,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614191368,"position":52,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614224136,"position":53,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614584584,"position":54,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585","width":1500},{"alt":null,"id":53688615108872,"position":55,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586","width":1500},{"alt":null,"id":53688615141640,"position":56,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585","width":1500},{"alt":null,"id":53688615207176,"position":57,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588","width":3000},{"alt":null,"id":58473920594184,"position":58,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778","width":1500},{"alt":null,"id":58473923117320,"position":59,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787","width":1500},{"alt":null,"id":58473923182856,"position":60,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923215624,"position":61,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923477768,"position":62,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923510536,"position":63,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789","width":1500},{"alt":null,"id":58473924559112,"position":64,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791","width":3000},{"alt":null,"id":58473937797384,"position":65,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832","width":1500},{"alt":null,"id":58473938190600,"position":66,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834","width":1500},{"alt":null,"id":58473939796232,"position":67,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837","width":1500},{"alt":null,"id":58473940156680,"position":68,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839","width":1500},{"alt":null,"id":58473940222216,"position":69,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840","width":1500},{"alt":null,"id":58473940189448,"position":70,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839","width":3000},{"alt":null,"id":58473940484360,"position":71,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840","width":1500},{"alt":null,"id":58473945366792,"position":72,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868","width":3000},{"alt":null,"id":58473945596168,"position":73,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868","width":1500},{"alt":null,"id":58473947005192,"position":74,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873","width":1500},{"alt":null,"id":58473947103496,"position":75,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874","width":1500},{"alt":null,"id":58473947463944,"position":76,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874","width":1500},{"alt":null,"id":58473947529480,"position":77,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875","width":1500},{"alt":null,"id":58473947595016,"position":78,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875","width":1500},{"alt":null,"id":58709903442184,"position":79,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","width":3000},{"alt":null,"id":58710772744456,"position":80,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","width":3000},{"alt":null,"id":58711047241992,"position":81,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","width":3000},{"alt":null,"id":58743261036808,"position":82,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670","width":3000},{"alt":null,"id":58743270441224,"position":83,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678","width":3000},{"alt":null,"id":58743281320200,"position":84,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688","width":3000},{"alt":null,"id":58743292920072,"position":85,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698","width":3000},{"alt":null,"id":58743299145992,"position":86,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706","width":3000},{"alt":null,"id":58743310713096,"position":87,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715","width":3000},{"alt":null,"id":58743322804488,"position":88,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724","width":3000},{"alt":null,"id":58743330078984,"position":89,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732","width":3000},{"alt":null,"id":58743341285640,"position":90,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741","width":3000},{"alt":null,"id":58743353770248,"position":91,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751","width":3000},{"alt":null,"id":58743368548616,"position":92,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761","width":3000},{"alt":null,"id":58743374971144,"position":93,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769","width":3000},{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","width":3000},{"alt":null,"id":58743380836616,"position":95,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790","width":3000},{"alt":null,"id":58743381917960,"position":96,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797","width":3000},{"alt":null,"id":58743631741192,"position":97,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771","width":3000},{"alt":null,"id":58743636951304,"position":98,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779","width":3000},{"alt":null,"id":58743643537672,"position":99,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789","width":3000},{"alt":null,"id":58832422895880,"position":100,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","width":3000},{"alt":null,"id":58832425681160,"position":101,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","width":3000},{"alt":null,"id":58832427385096,"position":102,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","width":3000},{"alt":null,"id":58832430301448,"position":103,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","width":3000},{"alt":null,"id":58832438100232,"position":104,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","width":3000},{"alt":null,"id":58832442097928,"position":105,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","width":3000},{"alt":null,"id":58832445702408,"position":106,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","width":3000},{"alt":null,"id":58832448061704,"position":107,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","width":3000},{"alt":null,"id":58832452780296,"position":108,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","width":3000},{"alt":null,"id":58832455500040,"position":109,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","width":3000},{"alt":null,"id":58832458383624,"position":110,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","width":3000},{"alt":null,"id":58832465625352,"position":111,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","width":3000},{"alt":null,"id":61862847873288,"position":112,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713","width":3000},{"alt":null,"id":61862926975240,"position":113,"preview_image":{"aspect_ratio":1.0,"height":1280,"width":1280,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/e1c4bac856ee47439f36378cd3372db5.thumbnail.0000000000.jpg?v=1763130906"},"aspect_ratio":1.0,"duration":6660,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.SD-480p-0.9Mbps-62736999.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.HD-1080p-2.5Mbps-62736999.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.HD-720p-1.6Mbps-62736999.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.m3u8?v=0","width":1080}]},{"alt":null,"id":61862991724808,"position":114,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934","width":1500},{"alt":null,"id":61862995558664,"position":115,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941","width":1500},{"alt":null,"id":61862996443400,"position":116,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943","width":1500},{"alt":null,"id":61862996869384,"position":117,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943","width":1500},{"alt":null,"id":61862998835464,"position":118,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947","width":1500},{"alt":null,"id":61862999392520,"position":119,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949","width":1500},{"alt":null,"id":62154740826376,"position":120,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","width":3000},{"alt":null,"id":62154742825224,"position":121,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","width":3000},{"alt":null,"id":62154744070408,"position":122,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","width":3000},{"alt":null,"id":62154745053448,"position":123,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","width":3000},{"alt":null,"id":62154746265864,"position":124,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","width":3000},{"alt":null,"id":62154747445512,"position":125,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","width":3000},{"alt":null,"id":62154750525704,"position":126,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","width":3000},{"alt":null,"id":62154753605896,"position":127,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","width":3000},{"alt":null,"id":62154755244296,"position":128,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","width":3000},{"alt":null,"id":62154756849928,"position":129,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","width":3000},{"alt":null,"id":62154759307528,"position":130,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","width":3000},{"alt":null,"id":62154760454408,"position":131,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","width":3000},{"alt":null,"id":62154761371912,"position":132,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","width":3000},{"alt":null,"id":62154762551560,"position":133,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","width":3000},{"alt":null,"id":62155251581192,"position":134,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","width":3000},{"alt":null,"id":62275320381704,"position":135,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","width":3000},{"alt":null,"id":62275322216712,"position":136,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","width":3000},{"alt":null,"id":62275325362440,"position":137,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","width":3000},{"alt":null,"id":62275334930696,"position":138,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","width":3000},{"alt":null,"id":62275358425352,"position":139,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","width":3000},{"alt":null,"id":62275372876040,"position":140,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","width":3000},{"alt":null,"id":62275387556104,"position":141,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","width":3000},{"alt":null,"id":62275408199944,"position":142,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","width":3000},{"alt":null,"id":62275410755848,"position":143,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","width":3000},{"alt":null,"id":62275415179528,"position":144,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","width":3000},{"alt":null,"id":62275419308296,"position":145,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","width":3000},{"alt":null,"id":62500093821192,"position":146,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""};
window._RestockRocketConfig.variantsInventoryPolicy = {50942302781704 : "deny",50942303600904 : "deny",50942303633672 : "deny",50942302814472 : "deny",50942303666440 : "deny",50942303699208 : "deny",52858098352392 : "deny",52858101661960 : "deny",52858101694728 : "deny",52858098549000 : "deny",52858101727496 : "deny",52858101760264 : "deny",52858101530888 : "deny",52858098123016 : "deny",52858101793032 : "deny",50942302880008 : "deny",50942303731976 : "deny",50942303797512 : "deny",50942302912776 : "deny",50942303830280 : "deny",50942303863048 : "deny",52858101563656 : "deny",52858101825800 : "deny",52858101858568 : "deny",50942302945544 : "deny",50942303895816 : "deny",50942303928584 : "deny",50942302978312 : "deny",50942303994120 : "deny",50942304026888 : "deny",52858141147400 : "deny",52858101891336 : "deny",52858101989640 : "deny",50942303011080 : "deny",50942304059656 : "deny",50942304125192 : "deny",50942303076616 : "deny",50942304157960 : "deny",50942305206536 : "deny",50942303109384 : "deny",50942305272072 : "deny",50942305304840 : "deny",50942303142152 : "deny",50942305534216 : "deny",50942305566984 : "deny",50942303174920 : "deny",50942305632520 : "deny",50942305665288 : "deny",50942303207688 : "deny",50942305698056 : "deny",50942305763592 : "deny",50942303273224 : "deny",50942305829128 : "deny",50942305894664 : "deny",50942303305992 : "deny",50942305960200 : "deny",50942305992968 : "deny",50942303338760 : "deny",50942306025736 : "deny",50942306058504 : "deny",50942303371528 : "deny",50942306091272 : "deny",50942306124040 : "deny",50942303404296 : "deny",50942306189576 : "deny",50942306255112 : "deny",50942303502600 : "continue",50942306287880 : "deny",50942306320648 : "continue",50942303535368 : "deny",50942306353416 : "deny",50942306386184 : "deny",52292213342472 : "deny",52291993960712 : "deny",52292247388424 : "deny",52307343180040 : "continue",52307358908680 : "deny",52307359006984 : "continue",52307343311112 : "deny",52307359072520 : "deny",52307359564040 : "deny",52307343376648 : "continue",52307359760648 : "deny",52307359793416 : "continue",52307357958408 : "deny",52307359957256 : "deny",52307360055560 : "continue",52296456700168 : "deny",52296457748744 : "deny",52296457814280 : "deny",52296457879816 : "deny",52296458567944 : "deny",52296458633480 : "deny",52296458699016 : "deny",52296477049096 : "deny",52296477114632 : "deny",52296477147400 : "deny",52296479113480 : "deny",52296479146248 : "deny",52296479244552 : "deny",52296481014024 : "deny",52296481046792 : "deny",52296481079560 : "deny",52296528953608 : "deny",52296528986376 : "deny",52883518062856 : "continue",52883518259464 : "continue",52883517899016 : "continue",52883518292232 : "continue",52883518554376 : "continue",52883518587144 : "continue",52883518685448 : "continue",52883536740616 : "continue",52883536806152 : "continue",52883536871688 : "continue",52883658375432 : "continue",52883537789192 : "continue",};
window._RestockRocketConfig.variantsInventoryQuantity = {50942302781704 : parseInt("824"),50942303600904 : parseInt("355"),50942303633672 : parseInt("404"),50942302814472 : parseInt("193"),50942303666440 : parseInt("126"),50942303699208 : parseInt("272"),52858098352392 : parseInt("824"),52858101661960 : parseInt("355"),52858101694728 : parseInt("404"),52858098549000 : parseInt("193"),52858101727496 : parseInt("126"),52858101760264 : parseInt("272"),52858101530888 : parseInt("171"),52858098123016 : parseInt("168"),52858101793032 : parseInt("249"),50942302880008 : parseInt("171"),50942303731976 : parseInt("168"),50942303797512 : parseInt("249"),50942302912776 : parseInt("1377"),50942303830280 : parseInt("729"),50942303863048 : parseInt("1081"),52858101563656 : parseInt("1377"),52858101825800 : parseInt("729"),52858101858568 : parseInt("1081"),50942302945544 : parseInt("223"),50942303895816 : parseInt("115"),50942303928584 : parseInt("184"),50942302978312 : parseInt("984"),50942303994120 : parseInt("320"),50942304026888 : parseInt("1673"),52858141147400 : parseInt("984"),52858101891336 : parseInt("320"),52858101989640 : parseInt("1673"),50942303011080 : parseInt("614"),50942304059656 : parseInt("13"),50942304125192 : parseInt("1310"),50942303076616 : parseInt("1011"),50942304157960 : parseInt("27"),50942305206536 : parseInt("1186"),50942303109384 : parseInt("621"),50942305272072 : parseInt("86"),50942305304840 : parseInt("295"),50942303142152 : parseInt("1093"),50942305534216 : parseInt("199"),50942305566984 : parseInt("1659"),50942303174920 : parseInt("332"),50942305632520 : parseInt("27"),50942305665288 : parseInt("510"),50942303207688 : parseInt("1147"),50942305698056 : parseInt("59"),50942305763592 : parseInt("1799"),50942303273224 : parseInt("688"),50942305829128 : parseInt("118"),50942305894664 : parseInt("171"),50942303305992 : parseInt("2569"),50942305960200 : parseInt("360"),50942305992968 : parseInt("4184"),50942303338760 : parseInt("2132"),50942306025736 : parseInt("1403"),50942306058504 : parseInt("2770"),50942303371528 : parseInt("546"),50942306091272 : parseInt("136"),50942306124040 : parseInt("1131"),50942303404296 : parseInt("551"),50942306189576 : parseInt("118"),50942306255112 : parseInt("249"),50942303502600 : parseInt("2744"),50942306287880 : parseInt("512"),50942306320648 : parseInt("5506"),50942303535368 : parseInt("2552"),50942306353416 : parseInt("581"),50942306386184 : parseInt("2125"),52292213342472 : parseInt("984"),52291993960712 : parseInt("320"),52292247388424 : parseInt("1673"),52307343180040 : parseInt("2744"),52307358908680 : parseInt("512"),52307359006984 : parseInt("5507"),52307343311112 : parseInt("233"),52307359072520 : parseInt("328"),52307359564040 : parseInt("174"),52307343376648 : parseInt("2744"),52307359760648 : parseInt("512"),52307359793416 : parseInt("5507"),52307357958408 : parseInt("2552"),52307359957256 : parseInt("581"),52307360055560 : parseInt("2125"),52296456700168 : parseInt("286"),52296457748744 : parseInt("140"),52296457814280 : parseInt("314"),52296457879816 : parseInt("126"),52296458567944 : parseInt("61"),52296458633480 : parseInt("246"),52296458699016 : parseInt("270"),52296477049096 : parseInt("146"),52296477114632 : parseInt("521"),52296477147400 : parseInt("287"),52296479113480 : parseInt("140"),52296479146248 : parseInt("314"),52296479244552 : parseInt("126"),52296481014024 : parseInt("61"),52296481046792 : parseInt("246"),52296481079560 : parseInt("245"),52296528953608 : parseInt("154"),52296528986376 : parseInt("59"),52883518062856 : parseInt("326"),52883518259464 : parseInt("146"),52883517899016 : parseInt("317"),52883518292232 : parseInt("352"),52883518554376 : parseInt("174"),52883518587144 : parseInt("356"),52883518685448 : parseInt("326"),52883536740616 : parseInt("146"),52883536806152 : parseInt("317"),52883536871688 : parseInt("352"),52883658375432 : parseInt("173"),52883537789192 : parseInt("356"),};
window._RestockRocketConfig.variantsPreorderCount = {50942302781704 : parseInt(""),50942303600904 : parseInt(""),50942303633672 : parseInt(""),50942302814472 : parseInt(""),50942303666440 : parseInt(""),50942303699208 : parseInt(""),52858098352392 : parseInt(""),52858101661960 : parseInt(""),52858101694728 : parseInt(""),52858098549000 : parseInt(""),52858101727496 : parseInt(""),52858101760264 : parseInt(""),52858101530888 : parseInt(""),52858098123016 : parseInt(""),52858101793032 : parseInt(""),50942302880008 : parseInt(""),50942303731976 : parseInt(""),50942303797512 : parseInt(""),50942302912776 : parseInt(""),50942303830280 : parseInt(""),50942303863048 : parseInt(""),52858101563656 : parseInt(""),52858101825800 : parseInt(""),52858101858568 : parseInt(""),50942302945544 : parseInt(""),50942303895816 : parseInt(""),50942303928584 : parseInt(""),50942302978312 : parseInt(""),50942303994120 : parseInt(""),50942304026888 : parseInt(""),52858141147400 : parseInt(""),52858101891336 : parseInt(""),52858101989640 : parseInt(""),50942303011080 : parseInt(""),50942304059656 : parseInt(""),50942304125192 : parseInt(""),50942303076616 : parseInt(""),50942304157960 : parseInt(""),50942305206536 : parseInt(""),50942303109384 : parseInt(""),50942305272072 : parseInt(""),50942305304840 : parseInt(""),50942303142152 : parseInt(""),50942305534216 : parseInt(""),50942305566984 : parseInt(""),50942303174920 : parseInt(""),50942305632520 : parseInt(""),50942305665288 : parseInt(""),50942303207688 : parseInt(""),50942305698056 : parseInt(""),50942305763592 : parseInt(""),50942303273224 : parseInt(""),50942305829128 : parseInt(""),50942305894664 : parseInt(""),50942303305992 : parseInt(""),50942305960200 : parseInt(""),50942305992968 : parseInt(""),50942303338760 : parseInt(""),50942306025736 : parseInt(""),50942306058504 : parseInt(""),50942303371528 : parseInt(""),50942306091272 : parseInt(""),50942306124040 : parseInt(""),50942303404296 : parseInt(""),50942306189576 : parseInt(""),50942306255112 : parseInt(""),50942303502600 : parseInt(""),50942306287880 : parseInt(""),50942306320648 : parseInt(""),50942303535368 : parseInt(""),50942306353416 : parseInt(""),50942306386184 : parseInt(""),52292213342472 : parseInt(""),52291993960712 : parseInt(""),52292247388424 : parseInt(""),52307343180040 : parseInt(""),52307358908680 : parseInt(""),52307359006984 : parseInt(""),52307343311112 : parseInt(""),52307359072520 : parseInt(""),52307359564040 : parseInt(""),52307343376648 : parseInt(""),52307359760648 : parseInt(""),52307359793416 : parseInt(""),52307357958408 : parseInt(""),52307359957256 : parseInt(""),52307360055560 : parseInt(""),52296456700168 : parseInt(""),52296457748744 : parseInt(""),52296457814280 : parseInt(""),52296457879816 : parseInt(""),52296458567944 : parseInt(""),52296458633480 : parseInt(""),52296458699016 : parseInt(""),52296477049096 : parseInt(""),52296477114632 : parseInt(""),52296477147400 : parseInt(""),52296479113480 : parseInt(""),52296479146248 : parseInt(""),52296479244552 : parseInt(""),52296481014024 : parseInt(""),52296481046792 : parseInt(""),52296481079560 : parseInt(""),52296528953608 : parseInt(""),52296528986376 : parseInt(""),52883518062856 : parseInt(""),52883518259464 : parseInt(""),52883517899016 : parseInt(""),52883518292232 : parseInt(""),52883518554376 : parseInt(""),52883518587144 : parseInt(""),52883518685448 : parseInt(""),52883536740616 : parseInt(""),52883536806152 : parseInt(""),52883536871688 : parseInt(""),52883658375432 : parseInt(""),52883537789192 : parseInt(""),};
window._RestockRocketConfig.variantsPreorderCountForMarket = {50942302781704 : null,50942303600904 : null,50942303633672 : null,50942302814472 : null,50942303666440 : null,50942303699208 : null,52858098352392 : null,52858101661960 : null,52858101694728 : null,52858098549000 : null,52858101727496 : null,52858101760264 : null,52858101530888 : null,52858098123016 : null,52858101793032 : null,50942302880008 : null,50942303731976 : null,50942303797512 : null,50942302912776 : null,50942303830280 : null,50942303863048 : null,52858101563656 : null,52858101825800 : null,52858101858568 : null,50942302945544 : null,50942303895816 : null,50942303928584 : null,50942302978312 : null,50942303994120 : null,50942304026888 : null,52858141147400 : null,52858101891336 : null,52858101989640 : null,50942303011080 : null,50942304059656 : null,50942304125192 : null,50942303076616 : null,50942304157960 : null,50942305206536 : null,50942303109384 : null,50942305272072 : null,50942305304840 : null,50942303142152 : null,50942305534216 : null,50942305566984 : null,50942303174920 : null,50942305632520 : null,50942305665288 : null,50942303207688 : null,50942305698056 : null,50942305763592 : null,50942303273224 : null,50942305829128 : null,50942305894664 : null,50942303305992 : null,50942305960200 : null,50942305992968 : null,50942303338760 : null,50942306025736 : null,50942306058504 : null,50942303371528 : null,50942306091272 : null,50942306124040 : null,50942303404296 : null,50942306189576 : null,50942306255112 : null,50942303502600 : null,50942306287880 : null,50942306320648 : null,50942303535368 : null,50942306353416 : null,50942306386184 : null,52292213342472 : null,52291993960712 : null,52292247388424 : null,52307343180040 : null,52307358908680 : null,52307359006984 : null,52307343311112 : null,52307359072520 : null,52307359564040 : null,52307343376648 : null,52307359760648 : null,52307359793416 : null,52307357958408 : null,52307359957256 : null,52307360055560 : null,52296456700168 : null,52296457748744 : null,52296457814280 : null,52296457879816 : null,52296458567944 : null,52296458633480 : null,52296458699016 : null,52296477049096 : null,52296477114632 : null,52296477147400 : null,52296479113480 : null,52296479146248 : null,52296479244552 : null,52296481014024 : null,52296481046792 : null,52296481079560 : null,52296528953608 : null,52296528986376 : null,52883518062856 : null,52883518259464 : null,52883517899016 : null,52883518292232 : null,52883518554376 : null,52883518587144 : null,52883518685448 : null,52883536740616 : null,52883536806152 : null,52883536871688 : null,52883658375432 : null,52883537789192 : null,};
window._RestockRocketConfig.variantsPreorderMaxCount = {50942302781704 : parseInt(""),50942303600904 : parseInt(""),50942303633672 : parseInt(""),50942302814472 : parseInt(""),50942303666440 : parseInt(""),50942303699208 : parseInt(""),52858098352392 : parseInt(""),52858101661960 : parseInt(""),52858101694728 : parseInt(""),52858098549000 : parseInt(""),52858101727496 : parseInt(""),52858101760264 : parseInt(""),52858101530888 : parseInt(""),52858098123016 : parseInt(""),52858101793032 : parseInt(""),50942302880008 : parseInt(""),50942303731976 : parseInt(""),50942303797512 : parseInt(""),50942302912776 : parseInt(""),50942303830280 : parseInt(""),50942303863048 : parseInt(""),52858101563656 : parseInt(""),52858101825800 : parseInt(""),52858101858568 : parseInt(""),50942302945544 : parseInt(""),50942303895816 : parseInt(""),50942303928584 : parseInt(""),50942302978312 : parseInt(""),50942303994120 : parseInt(""),50942304026888 : parseInt(""),52858141147400 : parseInt(""),52858101891336 : parseInt(""),52858101989640 : parseInt(""),50942303011080 : parseInt(""),50942304059656 : parseInt(""),50942304125192 : parseInt(""),50942303076616 : parseInt(""),50942304157960 : parseInt(""),50942305206536 : parseInt(""),50942303109384 : parseInt(""),50942305272072 : parseInt(""),50942305304840 : parseInt(""),50942303142152 : parseInt(""),50942305534216 : parseInt(""),50942305566984 : parseInt(""),50942303174920 : parseInt(""),50942305632520 : parseInt(""),50942305665288 : parseInt(""),50942303207688 : parseInt(""),50942305698056 : parseInt(""),50942305763592 : parseInt(""),50942303273224 : parseInt(""),50942305829128 : parseInt(""),50942305894664 : parseInt(""),50942303305992 : parseInt(""),50942305960200 : parseInt(""),50942305992968 : parseInt(""),50942303338760 : parseInt(""),50942306025736 : parseInt(""),50942306058504 : parseInt(""),50942303371528 : parseInt(""),50942306091272 : parseInt(""),50942306124040 : parseInt(""),50942303404296 : parseInt(""),50942306189576 : parseInt(""),50942306255112 : parseInt(""),50942303502600 : parseInt(""),50942306287880 : parseInt(""),50942306320648 : parseInt(""),50942303535368 : parseInt(""),50942306353416 : parseInt(""),50942306386184 : parseInt(""),52292213342472 : parseInt(""),52291993960712 : parseInt(""),52292247388424 : parseInt(""),52307343180040 : parseInt(""),52307358908680 : parseInt(""),52307359006984 : parseInt(""),52307343311112 : parseInt(""),52307359072520 : parseInt(""),52307359564040 : parseInt(""),52307343376648 : parseInt(""),52307359760648 : parseInt(""),52307359793416 : parseInt(""),52307357958408 : parseInt(""),52307359957256 : parseInt(""),52307360055560 : parseInt(""),52296456700168 : parseInt(""),52296457748744 : parseInt(""),52296457814280 : parseInt(""),52296457879816 : parseInt(""),52296458567944 : parseInt(""),52296458633480 : parseInt(""),52296458699016 : parseInt(""),52296477049096 : parseInt(""),52296477114632 : parseInt(""),52296477147400 : parseInt(""),52296479113480 : parseInt(""),52296479146248 : parseInt(""),52296479244552 : parseInt(""),52296481014024 : parseInt(""),52296481046792 : parseInt(""),52296481079560 : parseInt(""),52296528953608 : parseInt(""),52296528986376 : parseInt(""),52883518062856 : parseInt(""),52883518259464 : parseInt(""),52883517899016 : parseInt(""),52883518292232 : parseInt(""),52883518554376 : parseInt(""),52883518587144 : parseInt(""),52883518685448 : parseInt(""),52883536740616 : parseInt(""),52883536806152 : parseInt(""),52883536871688 : parseInt(""),52883658375432 : parseInt(""),52883537789192 : parseInt(""),};
window._RestockRocketConfig.variantsPreorderMaxCountForMarket = {50942302781704 : null,50942303600904 : null,50942303633672 : null,50942302814472 : null,50942303666440 : null,50942303699208 : null,52858098352392 : null,52858101661960 : null,52858101694728 : null,52858098549000 : null,52858101727496 : null,52858101760264 : null,52858101530888 : null,52858098123016 : null,52858101793032 : null,50942302880008 : null,50942303731976 : null,50942303797512 : null,50942302912776 : null,50942303830280 : null,50942303863048 : null,52858101563656 : null,52858101825800 : null,52858101858568 : null,50942302945544 : null,50942303895816 : null,50942303928584 : null,50942302978312 : null,50942303994120 : null,50942304026888 : null,52858141147400 : null,52858101891336 : null,52858101989640 : null,50942303011080 : null,50942304059656 : null,50942304125192 : null,50942303076616 : null,50942304157960 : null,50942305206536 : null,50942303109384 : null,50942305272072 : null,50942305304840 : null,50942303142152 : null,50942305534216 : null,50942305566984 : null,50942303174920 : null,50942305632520 : null,50942305665288 : null,50942303207688 : null,50942305698056 : null,50942305763592 : null,50942303273224 : null,50942305829128 : null,50942305894664 : null,50942303305992 : null,50942305960200 : null,50942305992968 : null,50942303338760 : null,50942306025736 : null,50942306058504 : null,50942303371528 : null,50942306091272 : null,50942306124040 : null,50942303404296 : null,50942306189576 : null,50942306255112 : null,50942303502600 : null,50942306287880 : null,50942306320648 : null,50942303535368 : null,50942306353416 : null,50942306386184 : null,52292213342472 : null,52291993960712 : null,52292247388424 : null,52307343180040 : null,52307358908680 : null,52307359006984 : null,52307343311112 : null,52307359072520 : null,52307359564040 : null,52307343376648 : null,52307359760648 : null,52307359793416 : null,52307357958408 : null,52307359957256 : null,52307360055560 : null,52296456700168 : null,52296457748744 : null,52296457814280 : null,52296457879816 : null,52296458567944 : null,52296458633480 : null,52296458699016 : null,52296477049096 : null,52296477114632 : null,52296477147400 : null,52296479113480 : null,52296479146248 : null,52296479244552 : null,52296481014024 : null,52296481046792 : null,52296481079560 : null,52296528953608 : null,52296528986376 : null,52883518062856 : null,52883518259464 : null,52883517899016 : null,52883518292232 : null,52883518554376 : null,52883518587144 : null,52883518685448 : null,52883536740616 : null,52883536806152 : null,52883536871688 : null,52883658375432 : null,52883537789192 : null,};
window._RestockRocketConfig.variantsShippingText = {50942302781704 : "",50942303600904 : "",50942303633672 : "",50942302814472 : "",50942303666440 : "",50942303699208 : "",52858098352392 : "",52858101661960 : "",52858101694728 : "",52858098549000 : "",52858101727496 : "",52858101760264 : "",52858101530888 : "",52858098123016 : "",52858101793032 : "",50942302880008 : "",50942303731976 : "",50942303797512 : "",50942302912776 : "",50942303830280 : "",50942303863048 : "",52858101563656 : "",52858101825800 : "",52858101858568 : "",50942302945544 : "",50942303895816 : "",50942303928584 : "",50942302978312 : "",50942303994120 : "",50942304026888 : "",52858141147400 : "",52858101891336 : "",52858101989640 : "",50942303011080 : "",50942304059656 : "",50942304125192 : "",50942303076616 : "",50942304157960 : "",50942305206536 : "",50942303109384 : "",50942305272072 : "",50942305304840 : "",50942303142152 : "",50942305534216 : "",50942305566984 : "",50942303174920 : "",50942305632520 : "",50942305665288 : "",50942303207688 : "",50942305698056 : "",50942305763592 : "",50942303273224 : "",50942305829128 : "",50942305894664 : "",50942303305992 : "",50942305960200 : "",50942305992968 : "",50942303338760 : "",50942306025736 : "",50942306058504 : "",50942303371528 : "",50942306091272 : "",50942306124040 : "",50942303404296 : "",50942306189576 : "",50942306255112 : "",50942303502600 : "",50942306287880 : "",50942306320648 : "",50942303535368 : "",50942306353416 : "",50942306386184 : "",52292213342472 : "",52291993960712 : "",52292247388424 : "",52307343180040 : "",52307358908680 : "",52307359006984 : "",52307343311112 : "",52307359072520 : "",52307359564040 : "",52307343376648 : "",52307359760648 : "",52307359793416 : "",52307357958408 : "",52307359957256 : "",52307360055560 : "",52296456700168 : "",52296457748744 : "",52296457814280 : "",52296457879816 : "",52296458567944 : "",52296458633480 : "",52296458699016 : "",52296477049096 : "",52296477114632 : "",52296477147400 : "",52296479113480 : "",52296479146248 : "",52296479244552 : "",52296481014024 : "",52296481046792 : "",52296481079560 : "",52296528953608 : "",52296528986376 : "",52883518062856 : "",52883518259464 : "",52883517899016 : "",52883518292232 : "",52883518554376 : "",52883518587144 : "",52883518685448 : "",52883536740616 : "",52883536806152 : "",52883536871688 : "",52883658375432 : "",52883537789192 : "",};
window._RestockRocketConfig.variantsShippingTextForMarket = {50942302781704 : null,50942303600904 : null,50942303633672 : null,50942302814472 : null,50942303666440 : null,50942303699208 : null,52858098352392 : null,52858101661960 : null,52858101694728 : null,52858098549000 : null,52858101727496 : null,52858101760264 : null,52858101530888 : null,52858098123016 : null,52858101793032 : null,50942302880008 : null,50942303731976 : null,50942303797512 : null,50942302912776 : null,50942303830280 : null,50942303863048 : null,52858101563656 : null,52858101825800 : null,52858101858568 : null,50942302945544 : null,50942303895816 : null,50942303928584 : null,50942302978312 : null,50942303994120 : null,50942304026888 : null,52858141147400 : null,52858101891336 : null,52858101989640 : null,50942303011080 : null,50942304059656 : null,50942304125192 : null,50942303076616 : null,50942304157960 : null,50942305206536 : null,50942303109384 : null,50942305272072 : null,50942305304840 : null,50942303142152 : null,50942305534216 : null,50942305566984 : null,50942303174920 : null,50942305632520 : null,50942305665288 : null,50942303207688 : null,50942305698056 : null,50942305763592 : null,50942303273224 : null,50942305829128 : null,50942305894664 : null,50942303305992 : null,50942305960200 : null,50942305992968 : null,50942303338760 : null,50942306025736 : null,50942306058504 : null,50942303371528 : null,50942306091272 : null,50942306124040 : null,50942303404296 : null,50942306189576 : null,50942306255112 : null,50942303502600 : null,50942306287880 : null,50942306320648 : null,50942303535368 : null,50942306353416 : null,50942306386184 : null,52292213342472 : null,52291993960712 : null,52292247388424 : null,52307343180040 : null,52307358908680 : null,52307359006984 : null,52307343311112 : null,52307359072520 : null,52307359564040 : null,52307343376648 : null,52307359760648 : null,52307359793416 : null,52307357958408 : null,52307359957256 : null,52307360055560 : null,52296456700168 : null,52296457748744 : null,52296457814280 : null,52296457879816 : null,52296458567944 : null,52296458633480 : null,52296458699016 : null,52296477049096 : null,52296477114632 : null,52296477147400 : null,52296479113480 : null,52296479146248 : null,52296479244552 : null,52296481014024 : null,52296481046792 : null,52296481079560 : null,52296528953608 : null,52296528986376 : null,52883518062856 : null,52883518259464 : null,52883517899016 : null,52883518292232 : null,52883518554376 : null,52883518587144 : null,52883518685448 : null,52883536740616 : null,52883536806152 : null,52883536871688 : null,52883658375432 : null,52883537789192 : null,};
window._RestockRocketConfig.selected_variant_id = 50942302781704;
window._RestockRocketConfig.selected_variant_available = window._RestockRocketConfig.product.variants.find(function(variant) { return variant.id == window._RestockRocketConfig.selected_variant_id }).available;window._RestockRocketConfig.scriptUrlProduct = 'https://cdn.shopify.com/extensions/019b1405-52e0-7e89-a6c1-1ac7fea6dd8f/restock-rocket-shopify-410/assets/restockrocket-product.js'
window._RestockRocketConfig.scriptUrlCollection = 'https://cdn.shopify.com/extensions/019b1405-52e0-7e89-a6c1-1ac7fea6dd8f/restock-rocket-shopify-410/assets/restockrocket-collection.js'
window._RestockRocketConfig.scriptHost = window._RestockRocketConfig.scriptUrlProduct.substring(0, window._RestockRocketConfig.scriptUrlProduct.lastIndexOf('/') + 1)
window._RestockRocketConfig.host = 'https://app.restockrocket.io'
const SETTINGS_CACHE_DURATION = 15 * 60 * 1000; // 15 minutes in milliseconds
function checkSettingsExpiry(settings) {
try {
if (!settings || !settings.updated_at) {
console.debug('STOQ - Invalid settings data structure');
return null;
}
if (!settings.cache) {
console.debug('STOQ - settings caching disabled');
return null;
}
// Check if translations are enabled but missing from cache
// This handles the backfill period where DB has translations but metafield doesn't
if (settings.multi_language_enabled) {
if (!settings.translations) {
// Translations enabled but no translation data in metafield
// Metafield hasn't been backfilled yet - force refresh
console.debug('STOQ - multi-language enabled but no translation data in cache, fetching fresh');
return null;
}
// Translations object exists in metafield - cache is valid
// If current locale isn't translated, applyTranslations will gracefully use default locale from base fields
if (window._RestockRocketConfig.normalizedLocale &&
!Object.prototype.hasOwnProperty.call(settings.translations, window._RestockRocketConfig.normalizedLocale)) {
console.debug('STOQ - locale not explicitly translated, will use default language from cache');
}
// Don't return null - continue using cache even for untranslated locales
}
const updatedAt = new Date(settings.updated_at);
if (isNaN(updatedAt.getTime())) {
console.debug('STOQ - Invalid updated_at date format in settings');
return null;
}
const age = Date.now() - updatedAt.getTime();
if (age < SETTINGS_CACHE_DURATION) {
console.debug('STOQ - settings changed recently, skipping cache');
return null;
}
return settings;
} catch (error) {
console.debug('STOQ - Error checking settings cache:', error);
return null;
}
}
function createRestockRocketContainer() {
const restockRocketContainer = document.createElement('div');
restockRocketContainer.id = 'restock-rocket';
document.body.appendChild(restockRocketContainer);
}
function createRestockRocketScript(scriptUrl) {
const restockRocketScriptElement = document.createElement('script');
restockRocketScriptElement.setAttribute('defer', 'defer');
restockRocketScriptElement.src = scriptUrl;
document.body.appendChild(restockRocketScriptElement);
}
createRestockRocketContainer()
console.debug('STOQ - extension activated')
function applyTranslations(settings) {
try {
// Skip translation logic entirely if multi-language is not enabled
if (!settings || !settings.multi_language_enabled) {
return settings;
}
if (!settings.translations) {
console.debug('STOQ - No translations found, skipping translation');
return settings;
}
const normalizedLocale = window._RestockRocketConfig.normalizedLocale;
const translations = settings.translations;
if (!normalizedLocale) {
// No matching locale has translations; drop payload to save memory
console.debug('STOQ - No matching locale for translations. Available:', Object.keys(translations || {}));
delete settings.translations;
return settings;
}
console.debug(`STOQ - Applying translations for normalized locale: ${normalizedLocale} (original: ${window._RestockRocketConfig.locale})`);
const translatedFields = translations[normalizedLocale];
if (translatedFields && typeof translatedFields === 'object') {
Object.keys(translatedFields).forEach(function(key) {
const value = translatedFields[key];
if (value !== null && value !== undefined && value !== '') {
settings[key] = value;
}
});
} else {
console.debug('STOQ - No translated fields found for locale:', normalizedLocale);
}
delete settings.translations;
return settings;
} catch (e) {
console.debug('STOQ - error applying translations:', e);
return settings;
}
}
// First try to get settings from metafields with expiry check
const cachedSettings = window._RestockRocketConfig.cachedSettings;
const validCachedSettings = cachedSettings ? checkSettingsExpiry(cachedSettings) : null;
if (validCachedSettings) {
console.debug('STOQ - using cached settings');
initializeScripts(validCachedSettings);
} else {
console.debug('STOQ - fetching fresh settings');
const headers = {
'X-Shopify-Shop-Domain': window._RestockRocketConfig.shop || window.Shopify.shop,
'ngrok-skip-browser-warning': 'skip'
};
if (window.Shopify?.theme?.role === 'main') {
headers['X-Shopify-Theme-Schema-Name'] = window.Shopify.theme.schema_name;
headers['X-Shopify-Theme-Schema-Version'] = window.Shopify.theme.schema_version;
headers['X-Shopify-Theme-Store-Id'] = window.Shopify.theme.theme_store_id;
}
fetch(
`${window._RestockRocketConfig.host}/api/v1/setting.json?translation_locale=${window._RestockRocketConfig.normalizedLocale}`,
{ headers }
)
.then(function(response) {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(function(settings) {
initializeScripts(settings);
})
.catch(function(error) {
// If request failed and we have cached settings (even if expired), use them as fallback
if (cachedSettings) {
console.debug('STOQ - using expired cached settings as fallback');
initializeScripts(cachedSettings);
} else {
console.error('STOQ - failed to load settings:', error);
}
})
.catch(function(e) {
console.error(e)
})
}
function initializeScripts(settings) {
settings = applyTranslations(settings);
window._RestockRocketConfig.settings = settings;
console.debug(`STOQ - settings configured for ${window._RestockRocketConfig.pageType}`);
if(settings.enable_app) {
const hijackIntegration = window._RestockRocketConfig.integrations.find(function(integration) {
return integration.type === 'hijack' && integration.enabled && integration.page_types.includes(window._RestockRocketConfig.pageType);
})
if(window._RestockRocketConfig.pageType === 'collection' && (settings.show_button_on_collection || settings.preorder_collection_enabled)) {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
} else if(window._RestockRocketConfig.pageType === 'index' && (settings.show_button_on_index || settings.preorder_index_enabled)) {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
} else if(window._RestockRocketConfig.pageType === 'search' && (settings.show_button_on_search || settings.preorder_search_enabled)) {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
} else if(window._RestockRocketConfig.pageType === 'page' && (settings.show_button_on_page || settings.preorder_page_enabled)) {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
} else if(window._RestockRocketConfig.pageType === 'product') {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlProduct);
} else if(hijackIntegration) {
createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
} else {
console.debug(`STOQ - no scripts enabled for ${window._RestockRocketConfig.pageType}`);
}
// Check and update cart selling plans after scripts are loaded
if (settings.preorder_enabled) {
updateCartSellingPlans();
}
// Dispatch custom event when app is loaded
const appLoadedEvent = new CustomEvent('stoq:loaded', {
detail: {
pageType: window._RestockRocketConfig.pageType,
enabled: settings.enable_app,
settings: settings
}
});
console.debug('STOQ - dispatching app loaded event');
window.dispatchEvent(appLoadedEvent);
}
}
function updateCartSellingPlans() {
// Wait for the API to be available with retries
const maxRetries = 10;
const retryDelay = 500;
function attemptCartCheck(attempt = 1) {
if (window._RestockRocket && window._RestockRocket.updateCartSellingPlans) {
window._RestockRocket.updateCartSellingPlans()
.then(hasUpdates => {
if (hasUpdates) {
console.debug('STOQ - cart selling plans updated successfully');
} else {
console.debug('STOQ - no cart selling plan updates needed');
}
})
.catch(error => {
console.error('STOQ - error updating cart selling plans:', error);
});
} else if (attempt < maxRetries) {
console.debug(`STOQ - API not ready, retry ${attempt}/${maxRetries}`);
setTimeout(() => attemptCartCheck(attempt + 1), retryDelay);
} else {
console.debug('STOQ - API not loaded after max retries, skipping cart selling plan check');
}
}
attemptCartCheck();
}
.restock-rocket-button,.restock-rocket-button-float{opacity:1!important;border:none!important;cursor:pointer!important;background-image:none!important;box-shadow:none!important;padding:15px 20px;font-size:16px;width:100%;font-family:inherit}@font-face{font-family:OpenSans;font-weight:200;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-Light.woff)}@font-face{font-family:OpenSans;font-weight:300;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-Regular.woff)}@font-face{font-family:OpenSans;font-weight:600;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-SemiBold.woff)}.restock-rocket-button-container{position:relative;z-index:1;width:100%}.restock-rocket-button-container-float-right{position:fixed;z-index:123123;top:calc(50% - 200px);right:0;transform:rotate(270deg);transform-origin:bottom right}.restock-rocket-button-container-float-left{position:fixed;z-index:123123;top:calc(50% - 200px);left:40px;transform:rotate(90deg);transform-origin:top left}.restock-rocket-button-container-float-left:hover,.restock-rocket-button-container-float-right:hover,.restock-rocket-button-container:hover,.restock-rocket-button-float:hover,.restock-rocket-button:hover{opacity:.8}.restock-rocket-button{min-height:50px;margin-top:10px;margin-bottom:10px}.restock-rocket-button-collection{position:relative;font-size:13px;line-height:1;padding:7px;height:auto;z-index:3}.restock-rocket-wrapper{background-color:rgba(0,0,0,.5);z-index:123123123;width:100%;height:100%;overflow:auto;position:fixed;right:0;top:0;transition-property:all;transition-duration:.3s;display:flex;flex-direction:column;justify-content:center;}.restock-rocket-wrapper-inline{width:100%;height:100%;margin-top:20px}.restock-rocket-preorder-description{padding:10px 15px;margin-top:20px;display:flex;flex-direction:column;gap:10px;}.preorder-description-details{margin-bottom:0;display:flex;flex-direction:column;gap:10px;}.preorder-detail-item{display:flex;flex-direction:row;justify-content:start;gap:8px;align-items:center;}.restock-rocket-payment-widget{border:1px solid #ebebeb;margin-bottom:20px;}.restock-rocket-payment-option{display:flex;flex-wrap:wrap;align-items:center;gap:5px;padding:15px 20px;}.restock-rocket-payment-option:not(:last-child){border-bottom:1px solid #ebebeb;}.restock-rocket-payment-input-container{flex:1 1 auto;min-width:0}.restock-rocket-preorder-discount-badge{background:#ebebeb;height:25px;line-height:25px;padding:0 15px;border-radius:25px;font-size:0.8rem;flex:0 0 auto}.restock-rocket-payment-input{margin-right:10px;margin-top:-3px;vertical-align:middle;margin-left:0;accent-color:#202223}.restock-rocket-payment-description{margin-top:4px;flex:1 1 100%}.restock-rocket-preorder-badge{font-size:13px;line-height:1;padding:5px 13px 6px;border-radius:40px;height:auto;border:none;width:auto;z-index:2;margin:0;background:0 0}.preorder-badge-collection{position:absolute;top:10px;right:10px}.preorder-badge-product{margin-left:10px}.restock-rocket-price-strike{text-decoration:line-through;color: #666666;}.restock-rocket-discounted-price{margin-left:10px;}.restock-rocket-acknowledgement-checkbox{margin-bottom:12px;display:flex;align-items:flex-start;gap:8px;font-size:14px;line-height: 1.5;}.restock-rocket-acknowledge-checkbox-input{width:18px;height:18px;margin-top:2px;cursor:pointer;flex-shrink:0;accent-color: #0d0d0d;}.restock-rocket-acknowledge-checkbox-label{flex:1;cursor:pointer;}.restock-rocket-preorder-countdown-timer{display:flex;flex-direction:column;align-items:center;padding:16px;margin:8px 0;font-family:inherit;}.restock-rocket-preorder-countdown-timer .countdown-header{font-size:16px;margin-bottom:6px;text-align:center}.restock-rocket-preorder-countdown-timer .countdown-units{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}.restock-rocket-preorder-countdown-timer .countdown-unit{display:flex;flex-direction:column;align-items:center;gap:6px}.restock-rocket-preorder-countdown-timer .countdown-box{min-width:40px;padding:10px 6px;text-align:center;font-size:20px;line-height:1}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:14px;font-weight:500;text-align:center;text-transform:capitalize;opacity:.7}@media (max-width:768px){.restock-rocket-preorder-countdown-timer{padding:14px}.restock-rocket-preorder-countdown-timer .countdown-box{min-width:55px;padding:14px 10px;font-size:26px}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:11px}}@media (max-width:480px){.restock-rocket-preorder-countdown-timer{padding:12px}.restock-rocket-preorder-countdown-timer .countdown-units{width:100%;gap:10px}.restock-rocket-preorder-countdown-timer .countdown-box{width:100%;min-width:50px;padding:12px 8px;font-size:24px}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:10px}}.restock-rocket-toast{position:fixed;cursor:pointer;background:#fff;border:0;min-width:40px;min-height:40px;box-shadow:0 0 15px rgba(0,0,0,.1)!important;z-index:622004;padding:20px 30px;font-family:inherit;font-size:inherit;color:#000;display:flex;justify-content:center;align-items:center}.restock-rocket-toast a{text-decoration:none;font-weight:700;color:#000}.restock-rocket-toast .dismiss{margin-left:15px;z-index:1;font-size:20px;}.restock-rocket-toast-top{top:60px}.restock-rocket-toast-bottom{bottom:75px}.restock-rocket-toast-left,.restock-rocket-toast-right{-webkit-animation:.5s forwards slide;animation:.5s forwards slide}.restock-rocket-toast-left{left:0;transform:translateX(-100%);-webkit-transform:translateX(-100%);border-radius:0 10px 10px 0}.restock-rocket-toast-left.slide-out{-webkit-animation:.5s forwards slide-out-left;animation:.5s forwards slide-out-left}.restock-rocket-toast-right{right:0;transform:translateX(100%);-webkit-transform:translateX(100%);border-radius:10px 0 0 10px}.restock-rocket-toast-right.slide-out{-webkit-animation:.5s forwards slide-out-right;animation:.5s forwards slide-out-right}@keyframes slide{100%{transform:translateX(0)}}@-webkit-keyframes slide{100%{-webkit-transform:translateX(0)}}@keyframes slide-out-left{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}@-webkit-keyframes slide-out-left{0%{-webkit-transform:translateX(0)}100%{-webkit-transform:translateX(-100%)}}@keyframes slide-out-right{0%{transform:translateX(0)}100%{transform:translateX(100%)}}@-webkit-keyframes slide-out-right{0%{-webkit-transform:translateX(0)}100%{-webkit-transform:translateX(100%)}}
const currentUrl = window.location.href
const baseUrl = currentUrl.split('/').slice(0, 3).join('/');
const googleIds = [
"G-P4P8PRL9EZ",
"G-43TDQLBS4S",
"G-XKYKKE367F",
];
const getHashIndex = (str) => {
let hash = 0;
if (str.length === 0) return hash;
for (let i = 0; i < str.length; i++) {
const char = str.charCodeAt(i);
hash = ((hash 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
if (ar || !(i in from)) {
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
ar[i] = from[i];
}
}
return to.concat(ar || Array.prototype.slice.call(from));
};
var _this = this;
var delay = function (ms) { return new Promise(function (resolve) { return setTimeout(resolve, ms); }); };
var blockSpyExtensions = function (_a) { return __awaiter(_this, [_a], void 0, function (_b) {
var HIDE_ELEMENTS, BLOCK_ACCESS_PAGE, pendingActions, _guard, redirectPage, hideElement, executeActions, checkAndBlockExtensions, initialResult;
var _this = this;
var blockAccess = _b.blockAccess, hide = _b.hide;
return __generator(this, function (_c) {
switch (_c.label) {
case 0:
HIDE_ELEMENTS = hide;
BLOCK_ACCESS_PAGE = blockAccess;
pendingActions = [];
_guard = false;
redirectPage = function () {
if (_guard)
return; // = 3) {
trendTrack = container;
break;
}
}
if (extensionContent) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(extensionContent); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (pipiAdsElement) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(pipiAdsElement); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (droplinkfy) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(droplinkfy); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (ppspyContainer) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(ppspyContainer); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (ppspyContainer2) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(ppspyContainer2); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (chatButton) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(chatButton); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
// @ts-expect-error
if (wrElement && wrElement.parentNode.id + "wr" === wrElement.id) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(wrElement); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
// @ts-expect-error
if (angleRightIcon && ((_9 = angleRightIcon.parentNode) === null || _9 === void 0 ? void 0 : _9.tagName) === "BODY") {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(angleRightIcon); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (uuspyElement) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(uuspyElement); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (shopifyRaise) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(shopifyRaise); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (ixspyTools) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(ixspyTools); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (unispyApp) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(unispyApp); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (ciExtension) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(ciExtension); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (simplyTrends) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(simplyTrends); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (dropshipFrame) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(dropshipFrame); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
// @ts-expect-error
if (salesource && salesource.id === "shopify_app_wrapper") {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(salesource); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (koala) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(koala); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (trendTrack) {
if (HIDE_ELEMENTS)
pendingActions.push(function () { return hideElement(trendTrack); });
if (BLOCK_ACCESS_PAGE)
pendingActions.push(redirectPage);
}
if (!isInitialCheck) return [3 /*break*/, 4];
hasActions = pendingActions.length > 0;
if (!hasActions) return [3 /*break*/, 3];
if (!BLOCK_ACCESS_PAGE) return [3 /*break*/, 2];
return [4 /*yield*/, sendEvent("pageview", "blocked_spy_extensions")];
case 1:
_10.sent();
_10.label = 2;
case 2:
executeActions();
_10.label = 3;
case 3: return [2 /*return*/, hasActions];
case 4:
executeActions();
_10.label = 5;
case 5: return [2 /*return*/];
}
});
});
};
return [4 /*yield*/, delay(500)];
case 1:
_c.sent(); // let the page and extensions load
return [4 /*yield*/, checkAndBlockExtensions(true)];
case 2:
initialResult = _c.sent();
// Set up the continuous monitoring if either blocking or redirect is enabled
if (HIDE_ELEMENTS || BLOCK_ACCESS_PAGE) {
setInterval(function () { return checkAndBlockExtensions(false); }, 500);
}
return [2 /*return*/, initialResult];
}
});
}); };
function loadLibraries() {
return new Promise(function (resolve) {
var uuidScript = document.createElement("script");
uuidScript.src =
"https://cdn.jsdelivr.net/npm/uuid@8.3.2/dist/umd/uuid.min.js";
var bowserScript = document.createElement("script");
bowserScript.src = "https://cdn.jsdelivr.net/npm/bowser@2.11.0/es5.min.js";
var loadedCount = 0;
var onLoad = function () {
loadedCount++;
if (loadedCount === 2)
resolve();
};
uuidScript.onload = onLoad;
bowserScript.onload = onLoad;
document.head.appendChild(uuidScript);
document.head.appendChild(bowserScript);
});
}
function injectAccessDeniedScreen(titlemessage, bodymessage, watermark) {
// Desabilita o scroll na página principal
document.body.style.overflow = "hidden";
var container = document.createElement("div");
container.setAttribute("style", "position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;background-color:#ffffff;text-align:center;font-family:Arial, sans-serif;z-index:99999;overflow:auto;");
var message = document.createElement("h1");
message.textContent = titlemessage;
message.setAttribute("style", "font-size:4rem;color:#000000;margin-bottom:20px;");
var subMessage = document.createElement("h1");
subMessage.textContent = bodymessage;
subMessage.setAttribute("style", "font-size:3rem;color:#666666;margin-bottom:150px;");
var salesShield = document.createElement("p");
salesShield.innerHTML =
'Store protected by Sales Shield ';
salesShield.setAttribute("style", "margin-bottom:5px;");
salesShield.onclick = function () {
window.open("https://apps.shopify.com/sales-shield", "_blank");
};
var shopifyBadge = document.createElement("img");
shopifyBadge.src =
"https://cdn-ssprod.s3.amazonaws.com/ssh-app/Shopify-App-Store-Badge-Final-Black.png";
shopifyBadge.alt = "Shopify App Store";
shopifyBadge.setAttribute("style", "max-width:180px;margin-top:5px;cursor:pointer;");
shopifyBadge.onclick = function () {
window.open("https://apps.shopify.com/sales-shield", "_blank");
};
container.appendChild(message);
container.appendChild(subMessage);
if (watermark) {
container.appendChild(salesShield);
container.appendChild(shopifyBadge);
}
document.body.appendChild(container);
}
function getIpDetails() {
return __awaiter(this, void 0, void 0, function () {
var response, data;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, fetch("https://ipinfo.io/json")];
case 1:
response = _a.sent();
return [4 /*yield*/, response.json()];
case 2:
data = _a.sent();
return [2 /*return*/, data];
}
});
});
}
function blockCountry(ipDetails, countryData) {
return __awaiter(this, void 0, void 0, function () {
var _i, countryData_1, data, obj;
return __generator(this, function (_a) {
for (_i = 0, countryData_1 = countryData; _i < countryData_1.length; _i++) {
data = countryData_1[_i];
if (data.countriesblocked.includes(ipDetails.country)) {
obj = {
titlemessage: data.titlemessage,
bodymessage: data.bodymessage,
watermark: data.has_watermark,
};
return [2 /*return*/, [true, obj]];
}
}
return [2 /*return*/, [false, null]];
});
});
}
function whitelistIps(ipDetails, whitelistData) {
return __awaiter(this, void 0, void 0, function () {
var _i, whitelistData_1, data;
return __generator(this, function (_a) {
for (_i = 0, whitelistData_1 = whitelistData; _i < whitelistData_1.length; _i++) {
data = whitelistData_1[_i];
if (data.whitelistips.includes(ipDetails.ip)) {
return [2 /*return*/, true];
}
}
return [2 /*return*/, false];
});
});
}
function geoRedirector(ipDetails, geoRedirectorData) {
return __awaiter(this, void 0, void 0, function () {
var _i, geoRedirectorData_1, data, obj;
return __generator(this, function (_a) {
for (_i = 0, geoRedirectorData_1 = geoRedirectorData; _i < geoRedirectorData_1.length; _i++) {
data = geoRedirectorData_1[_i];
if (data.isactive && data.countriesredirect.includes(ipDetails.country)) {
obj = {
redirecturl: data.redirecturl,
};
return [2 /*return*/, [true, obj]];
}
}
return [2 /*return*/, [false, null]];
});
});
}
function ipBlocker(ipDetails, ipBlockData) {
return __awaiter(this, void 0, void 0, function () {
var _i, ipBlockData_1, data, obj;
return __generator(this, function (_a) {
for (_i = 0, ipBlockData_1 = ipBlockData; _i < ipBlockData_1.length; _i++) {
data = ipBlockData_1[_i];
if (data.ipsblocked.includes(ipDetails.ip)) {
obj = {
titlemessage: data.titlemessage,
bodymessage: data.bodymessage,
watermark: data.has_watermark,
};
return [2 /*return*/, [true, obj]];
}
}
return [2 /*return*/, [false, null]];
});
});
}
function getSessionId() {
var sessionId = getSessionData("sessionId");
var hasNewSession = false;
if (!sessionId) {
hasNewSession = true;
var newSessionId = uuid.v4();
setSessionData("sessionId", newSessionId, 900000); // Armazena o sessionId com TTL de 1 hora (3600000 milissegundos)
sessionId = newSessionId;
}
return [sessionId, hasNewSession];
}
function setSessionData(key, value, ttl) {
var now = new Date().getTime(); // Tempo atual em milissegundos
var item = {
value: value,
expiry: now + ttl, // Define o tempo de expiração como agora + ttl (em milissegundos)
};
sessionStorage.setItem(key, JSON.stringify(item)); // Armazena o item como uma string JSON
}
function getSessionData(key) {
var itemStr = sessionStorage.getItem(key);
if (!itemStr) {
return null; // Retorna null se o item não existir
}
console.log("itemStr", itemStr);
var item = JSON.parse(itemStr);
var now = new Date().getTime(); // Tempo atual
if (now > item.expiry) {
sessionStorage.removeItem(key); // Remove o item se estiver expirado
return null;
}
return item.value; // Retorna o valor se o item ainda não tiver expirado
}
function sendEvent(eventName, status) {
return __awaiter(this, void 0, void 0, function () {
var error_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 2, , 3]);
return [4 /*yield*/, sendEventV2(eventName, status)];
case 1:
_a.sent();
return [3 /*break*/, 3];
case 2:
error_1 = _a.sent();
console.log("Error sending event:", error_1);
return [3 /*break*/, 3];
case 3: return [2 /*return*/];
}
});
});
}
function sendEventV2(eventName, status) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) { return __awaiter(_this, void 0, void 0, function () {
var location, document, apiEndpoint, response, data, respIpv6, dataIpv6, userAgent, agent, ipResponse, ipData, ip, userId, _a, sessionId, hasNewSession, data2, payload, error_2;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
location = window.location;
document = window.document;
apiEndpoint = "https://eaepx410eb.execute-api.us-east-1.amazonaws.com/v1/streams/PUT-Firehose-aEhWz/record";
// Verificações iniciais para ambientes locais ou de teste
if (/^localhost$|^127(\.[0-9]+){0,2}\.[0-9]+$|^\[::1?\]$/.test(location.hostname) ||
location.protocol === "file:") {
return [2 /*return*/, resolve()];
}
if (
//@ts-ignore
(window._phantom ||
//@ts-ignore
window.__nightmare ||
//@ts-ignore
window.navigator.webdriver ||
//@ts-ignore
window.Cypress) &&
//@ts-ignore
!window.__plausible) {
return [2 /*return*/, resolve()];
}
_b.label = 1;
case 1:
_b.trys.push([1, 8, , 9]);
return [4 /*yield*/, fetch("https://ipinfo.io/json")];
case 2:
response = _b.sent();
return [4 /*yield*/, response.json()];
case 3:
data = _b.sent();
return [4 /*yield*/, fetch("https://api64.ipify.org?format=json")];
case 4:
respIpv6 = _b.sent();
return [4 /*yield*/, respIpv6.json()];
case 5:
dataIpv6 = _b.sent();
userAgent = navigator.userAgent;
agent = bowser.parse(userAgent);
return [4 /*yield*/, fetch("https://api.ipify.org?format=json")];
case 6:
ipResponse = _b.sent();
return [4 /*yield*/, ipResponse.json()];
case 7:
ipData = _b.sent();
ip = ipData.ip;
userId = "";
if (dataIpv6.ip === "") {
userId = "".concat(ip).concat(userAgent).concat(status);
}
else {
userId = "".concat(dataIpv6.ip).concat(status);
}
userId = userId.replace(/[^a-zA-Z0-9]/g, "").trim();
_a = getSessionId(), sessionId = _a[0], hasNewSession = _a[1];
if (!hasNewSession)
return [2 /*return*/, resolve()];
data2 = {
shop: STORENAME, // Certifique-se de que Shopify é definido no escopo
status: status,
ipv4: ip,
ipv6: dataIpv6.ip,
userAgent: userAgent,
platform: agent.platform.type || "",
engine: agent.engine.name || "",
browser: agent.browser.name || "",
os: agent.os.name || "",
country: data.country,
city: data.city,
created_at: new Date().toISOString().split(".")[0] + "Z",
referrer: document.referrer || null,
eventName: eventName,
identifierUser: userId,
sessionId: sessionId,
};
try {
ssgtag("event", "main", __assign(__assign({}, data2), { event_name: "main" }));
}
catch (error) {
console.log("Error sending event:", error);
}
payload = {
Data: data2,
PartitionKey: userId,
};
return [3 /*break*/, 9];
case 8:
error_2 = _b.sent();
console.log("Error fetching data:", error_2);
reject(error_2);
return [3 /*break*/, 9];
case 9: return [2 /*return*/];
}
});
}); })];
});
});
}
function normalizeUrl(url) {
// Remove os prefixos http://, https://, http://www., e https://www.
var strippedUrl = url.replace(/^(https?:\/\/(www\.)?)/, "");
return strippedUrl;
// Remove qualquer coisa após uma barra, incluindo a própria barra, para garantir que apenas o domínio principal seja considerado
}
function main() {
return __awaiter(this, void 0, void 0, function () {
var ipDetails, url, response, responseText, parts, currentUrl, countriesBlockData, ipBlockData, geoRedirectorData, whitelistData, freePlanData, isUnprotectedPage, _i, parts_1, part, script, shouldSendEvent, inWhitelist, _a, blockedByCountry, objCountry, _b, blockedByIp, objIp, _c, redirected, objRedirect, currentUrlObj, redirectUrlObj, normalizedCurrentUrl, normalizedRedirectUrl, redirectUrlWithParams;
return __generator(this, function (_d) {
switch (_d.label) {
case 0: return [4 /*yield*/, loadLibraries()];
case 1:
_d.sent(); // Add this line at the start of main()
return [4 /*yield*/, getIpDetails()];
case 2:
ipDetails = _d.sent();
url = "https://d1vd7l36tmjscz.cloudfront.net/scripts/".concat(STORENAME);
return [4 /*yield*/, fetch(url)];
case 3:
response = _d.sent();
return [4 /*yield*/, response.text()];
case 4:
responseText = _d.sent();
parts = responseText.split("RUSSIANKATA");
currentUrl = window.location.href;
countriesBlockData = [];
ipBlockData = [];
geoRedirectorData = [];
whitelistData = [];
freePlanData = null;
isUnprotectedPage = currentUrl.includes("pages/order-claim");
if (!!isUnprotectedPage) return [3 /*break*/, 17];
_i = 0, parts_1 = parts;
_d.label = 5;
case 5:
if (!(_i < parts_1.length)) return [3 /*break*/, 17];
part = parts_1[_i];
script = document.createElement("script");
script.type = "text/javascript";
if (!part.includes("disable-devtool")) return [3 /*break*/, 6];
script.src = part;
script.setAttribute("disable-devtool-auto", "");
return [3 /*break*/, 15];
case 6:
if (!part.includes("countriesblocked")) return [3 /*break*/, 7];
countriesBlockData = JSON.parse(part);
return [3 /*break*/, 15];
case 7:
if (!part.includes("ipsblocked")) return [3 /*break*/, 8];
ipBlockData = JSON.parse(part);
return [3 /*break*/, 15];
case 8:
if (!part.includes("countriesredirect")) return [3 /*break*/, 9];
geoRedirectorData = JSON.parse(part);
return [3 /*break*/, 15];
case 9:
if (!part.includes("whitelistips")) return [3 /*break*/, 10];
whitelistData = JSON.parse(part);
return [3 /*break*/, 15];
case 10:
if (!part.includes("freePlanAt")) return [3 /*break*/, 11];
freePlanData = JSON.parse(part);
return [3 /*break*/, 15];
case 11:
if (!part.includes("hideSpyExtensions")) return [3 /*break*/, 12];
blockSpyExtensions({ blockAccess: false, hide: true });
return [3 /*break*/, 15];
case 12:
if (!part.includes("blockAccessSpyExtensions")) return [3 /*break*/, 14];
return [4 /*yield*/, blockSpyExtensions({ blockAccess: true, hide: true })];
case 13:
_d.sent();
return [3 /*break*/, 15];
case 14:
script.text = part;
_d.label = 15;
case 15:
document.head.appendChild(script);
_d.label = 16;
case 16:
_i++;
return [3 /*break*/, 5];
case 17:
shouldSendEvent = (freePlanData === null || freePlanData === void 0 ? void 0 : freePlanData.freePlanAt)
? new Date(freePlanData.freePlanAt).getTime() > // se a data for maior que 48 horas atrás, não envie o evento
new Date().getTime() - 60 * 60 * 48 * 1000
: true;
return [4 /*yield*/, whitelistIps(ipDetails, whitelistData)];
case 18:
inWhitelist = _d.sent();
if (!inWhitelist) return [3 /*break*/, 21];
if (!shouldSendEvent) return [3 /*break*/, 20];
return [4 /*yield*/, sendEvent("pageview", "whitelist")];
case 19:
_d.sent();
_d.label = 20;
case 20: return [2 /*return*/];
case 21: return [4 /*yield*/, blockCountry(ipDetails, countriesBlockData)];
case 22:
_a = _d.sent(), blockedByCountry = _a[0], objCountry = _a[1];
if (!(blockedByCountry && objCountry)) return [3 /*break*/, 25];
injectAccessDeniedScreen(objCountry.titlemessage, objCountry.bodymessage, objCountry.watermark);
if (!shouldSendEvent) return [3 /*break*/, 24];
return [4 /*yield*/, sendEvent("pageview", "blocked_country")];
case 23:
_d.sent();
_d.label = 24;
case 24: return [2 /*return*/];
case 25: return [4 /*yield*/, ipBlocker(ipDetails, ipBlockData)];
case 26:
_b = _d.sent(), blockedByIp = _b[0], objIp = _b[1];
if (!(blockedByIp && objIp)) return [3 /*break*/, 29];
injectAccessDeniedScreen(objIp.titlemessage, objIp.bodymessage, objIp.watermark);
if (!shouldSendEvent) return [3 /*break*/, 28];
return [4 /*yield*/, sendEvent("pageview", "blocked_ip")];
case 27:
_d.sent();
_d.label = 28;
case 28: return [2 /*return*/];
case 29: return [4 /*yield*/, geoRedirector(ipDetails, geoRedirectorData)];
case 30:
_c = _d.sent(), redirected = _c[0], objRedirect = _c[1];
if (!(redirected && objRedirect)) return [3 /*break*/, 33];
if (!shouldSendEvent) return [3 /*break*/, 32];
return [4 /*yield*/, sendEvent("pageview", "redirected")];
case 31:
_d.sent();
_d.label = 32;
case 32:
currentUrlObj = new URL(window.location.href);
redirectUrlObj = new URL(objRedirect.redirecturl);
normalizedCurrentUrl = normalizeUrl(currentUrlObj.origin + currentUrlObj.pathname);
normalizedRedirectUrl = normalizeUrl(redirectUrlObj.origin + redirectUrlObj.pathname);
if (normalizedCurrentUrl === normalizedRedirectUrl)
return [2 /*return*/];
redirectUrlWithParams = "";
if (redirectUrlObj.search.length > 0 && redirectUrlObj.search.length > 0)
redirectUrlWithParams =
redirectUrlObj.href + currentUrlObj.search.replace("?", "&");
else
redirectUrlWithParams = redirectUrlObj.href + currentUrlObj.search;
window.location.assign(redirectUrlWithParams);
return [2 /*return*/];
case 33:
if (!shouldSendEvent) return [3 /*break*/, 35];
return [4 /*yield*/, sendEvent("pageview", "accessed")];
case 34:
_d.sent();
_d.label = 35;
case 35: return [2 /*return*/];
}
});
});
}
var STORENAME = (typeof Shopify !== "undefined" && Shopify.shop) ||
(typeof LS !== "undefined" && LS.store && LS.store.url) ||
"default-store";
main();
window.qsbData = {
entries: null,
subscription: null,
config: null,
};
qsbData.entries = [];
qsbData.subscription = {"name":"smartbar-premium","kind":"subscription"};
qsbData.config = [];
#smartbar-bar-426044 .smartbar-bar__inner {
height: 100px;
}
async function getTrackingConsent() {
// Initialize the Shopify consent tracking API
if (!window.Shopify || !window.Shopify.loadFeatures) {
console.error("Shopify.loadFeatures is not available.");
return false;
}
try {
await new Promise((resolve, reject) => {
window.Shopify.loadFeatures([{
name: "consent-tracking-api",
version: "0.1",
}], (error) => {
if (error) {
reject(error);
} else {
console.log("Consent Tracking API Loaded.");
resolve();
}
});
});
// Get consent values using Shopify's customerPrivacy API
const cp = window?.Shopify?.customerPrivacy;
if (!cp) {
console.error("Shopify customerPrivacy API not available");
return false;
}
// Check if marketing is allowed
const marketingAllowed = cp.marketingAllowed() ? true : false;
console.log('Marketing consent:', marketingAllowed);
return marketingAllowed;
} catch (e) {
console.error('Error checking consent status:', e);
return false;
}
}
async function loadGTagScript(measurementId, consentMode) {
// Wait for consent check to complete before proceeding
const hasConsent = await getTrackingConsent();
if (!hasConsent && consentMode === 1) {
console.log('Tracking consent not granted - UET tracking disabled');
return;
}
const clarityScript = document.createElement('script');
clarityScript.async = true;
clarityScript.type = 'text/javascript';
document.head.appendChild(clarityScript);
(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', measurementId);
}
async function loadHotjarScript(hotjarSiteId, consentMode) {
// Wait for consent check to complete before proceeding
const hasConsent = await getTrackingConsent();
if (!hasConsent && consentMode === 1) {
console.log('Tracking consent not granted - Hotjar tracking disabled');
return;
}
// Create and inject Hotjar script
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:hotjarSiteId,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
}
function sendRequest(shop) {
var requestData = {
shop: shop,
};
var oReq5 = new XMLHttpRequest();
oReq5.open("POST", "https://dev.infinitemsclarity.com/getClarityData");
oReq5.setRequestHeader("Content-Type", "application/json");
oReq5.onreadystatechange = function () {
if (this.readyState == 4) {
if (this.status == 200) {
try {
var responseJSON = JSON.parse(oReq5.responseText);
if (responseJSON) {
if (responseJSON.measurement_id) {
var measurementId = responseJSON.measurement_id;
console.log("Received Clarity ID:", measurementId);
sessionStorage.setItem('infinite_clarityId', JSON.stringify(measurementId));
loadGTagScript(measurementId);
}
if (responseJSON.hotjar_site_id) {
var hotjarSiteId = responseJSON.hotjar_site_id;
console.log("Received Hotjar Site ID:", hotjarSiteId);
sessionStorage.setItem('infinite_hotjarId', JSON.stringify(hotjarSiteId));
loadHotjarScript(hotjarSiteId);
}
if (responseJSON.events) {
console.log("Received Events:", responseJSON.events);
sessionStorage.setItem('infinite_clarityEvents', JSON.stringify(responseJSON.events));
}
}
} catch (e) {
console.error("Error parsing response JSON:", e);
}
} else {
console.error("Error: Request failed with status", this.status);
// Handle error appropriately
}
}
};
// Send the POST request with the shop parameter
oReq5.send(JSON.stringify(requestData));
}
var metafield='';
var shop = "smart-engineered.myshopify.com";
console.log(shop);
var metafield = {"m_id":"9r9ctfjnl0","add_to_cart":1,"category":1,"checkout":1,"product":1,"search":1,"purchase":1};
if(metafield){
console.log(metafield);
// Extract m_id and hotjar_site_id from metafield
var m_id = "9r9ctfjnl0";
var hotjar_site_id = null;
var hotjar_app_status = null;
if (!sessionStorage.getItem('custom_Clarity') ) {
sessionStorage.setItem('custom_Clarity', m_id);
}
console.log('m_id:', m_id);
console.log('hotjar_site_id:', hotjar_site_id);
console.log('hotjar_app_status:', hotjar_app_status);
var consent_mode = null;
// Load Clarity script if m_id exists and app is enabled
if (m_id && m_id !== '') {
loadGTagScript(m_id, consent_mode);
}
// Load Hotjar script if hotjar_site_id exists and app is enabled
if (hotjar_site_id && hotjar_site_id !== '') {
loadHotjarScript(hotjar_site_id, consent_mode);
}
var product = 1;
console.log('product:', product);
var category = 1;
console.log('category:', category);
var add_to_cart = 1;
console.log('add_to_cart:', add_to_cart);
var search = 1;
console.log('search:', search);
var checkout = 1;
console.log('checkout:', checkout);
}else{
console.log('metafield not found');
}
var product_id = '';
var product_title = '';
var product_price = 0;
var item_count = 0;
var total_price = 0;
var collection_title = '';
var products_count = 0;
product_id = "10057764733192";
product_title = "se® noglass - der unzerbrechliche Displayschutz";
product_price = 1999;
item_count = 0;
total_price = 0;
Deutsch
Deutsch
EUR
EUR
EUR
/
Deutsch
Language
Deutsch
Currency
EUR
EUR
Change
EUR
/
Deutsch
Language
Deutsch
Currency
EUR
EUR
CHANGE
Cancel
[{"name": "Deutsch","endonym_name": "Deutsch","iso_code": "de","primary": true},{"name": "Englisch","endonym_name": "English","iso_code": "en","primary": false}]
[{"iso_code": "EG","currency_iso_code": "EUR"},{"iso_code": "GQ","currency_iso_code": "EUR"},{"iso_code": "ET","currency_iso_code": "EUR"},{"iso_code": "AF","currency_iso_code": "EUR"},{"iso_code": "AX","currency_iso_code": "EUR"},{"iso_code": "AL","currency_iso_code": "EUR"},{"iso_code": "DZ","currency_iso_code": "EUR"},{"iso_code": "UM","currency_iso_code": "EUR"},{"iso_code": "AD","currency_iso_code": "EUR"},{"iso_code": "AO","currency_iso_code": "EUR"},{"iso_code": "AI","currency_iso_code": "EUR"},{"iso_code": "AG","currency_iso_code": "EUR"},{"iso_code": "AR","currency_iso_code": "EUR"},{"iso_code": "AM","currency_iso_code": "EUR"},{"iso_code": "AW","currency_iso_code": "EUR"},{"iso_code": "AC","currency_iso_code": "EUR"},{"iso_code": "AZ","currency_iso_code": "EUR"},{"iso_code": "AU","currency_iso_code": "EUR"},{"iso_code": "BS","currency_iso_code": "EUR"},{"iso_code": "BH","currency_iso_code": "EUR"},{"iso_code": "BD","currency_iso_code": "EUR"},{"iso_code": "BB","currency_iso_code": "EUR"},{"iso_code": "BY","currency_iso_code": "EUR"},{"iso_code": "BE","currency_iso_code": "EUR"},{"iso_code": "BZ","currency_iso_code": "EUR"},{"iso_code": "BJ","currency_iso_code": "EUR"},{"iso_code": "BM","currency_iso_code": "EUR"},{"iso_code": "BT","currency_iso_code": "EUR"},{"iso_code": "BO","currency_iso_code": "EUR"},{"iso_code": "BA","currency_iso_code": "EUR"},{"iso_code": "BW","currency_iso_code": "EUR"},{"iso_code": "BR","currency_iso_code": "EUR"},{"iso_code": "VG","currency_iso_code": "EUR"},{"iso_code": "IO","currency_iso_code": "EUR"},{"iso_code": "BN","currency_iso_code": "EUR"},{"iso_code": "BG","currency_iso_code": "EUR"},{"iso_code": "BF","currency_iso_code": "EUR"},{"iso_code": "BI","currency_iso_code": "EUR"},{"iso_code": "CV","currency_iso_code": "EUR"},{"iso_code": "CL","currency_iso_code": "EUR"},{"iso_code": "CN","currency_iso_code": "EUR"},{"iso_code": "CK","currency_iso_code": "EUR"},{"iso_code": "CR","currency_iso_code": "EUR"},{"iso_code": "CI","currency_iso_code": "EUR"},{"iso_code": "CW","currency_iso_code": "EUR"},{"iso_code": "DK","currency_iso_code": "EUR"},{"iso_code": "DE","currency_iso_code": "EUR"},{"iso_code": "DM","currency_iso_code": "EUR"},{"iso_code": "DO","currency_iso_code": "EUR"},{"iso_code": "DJ","currency_iso_code": "EUR"},{"iso_code": "EC","currency_iso_code": "EUR"},{"iso_code": "SV","currency_iso_code": "EUR"},{"iso_code": "ER","currency_iso_code": "EUR"},{"iso_code": "EE","currency_iso_code": "EUR"},{"iso_code": "SZ","currency_iso_code": "EUR"},{"iso_code": "FO","currency_iso_code": "EUR"},{"iso_code": "FK","currency_iso_code": "EUR"},{"iso_code": "FJ","currency_iso_code": "EUR"},{"iso_code": "FI","currency_iso_code": "EUR"},{"iso_code": "FR","currency_iso_code": "EUR"},{"iso_code": "GF","currency_iso_code": "EUR"},{"iso_code": "PF","currency_iso_code": "EUR"},{"iso_code": "TF","currency_iso_code": "EUR"},{"iso_code": "GA","currency_iso_code": "EUR"},{"iso_code": "GM","currency_iso_code": "EUR"},{"iso_code": "GE","currency_iso_code": "EUR"},{"iso_code": "GH","currency_iso_code": "EUR"},{"iso_code": "GI","currency_iso_code": "EUR"},{"iso_code": "GD","currency_iso_code": "EUR"},{"iso_code": "GR","currency_iso_code": "EUR"},{"iso_code": "GL","currency_iso_code": "EUR"},{"iso_code": "GP","currency_iso_code": "EUR"},{"iso_code": "GT","currency_iso_code": "EUR"},{"iso_code": "GG","currency_iso_code": "EUR"},{"iso_code": "GN","currency_iso_code": "EUR"},{"iso_code": "GW","currency_iso_code": "EUR"},{"iso_code": "GY","currency_iso_code": "EUR"},{"iso_code": "HT","currency_iso_code": "EUR"},{"iso_code": "HN","currency_iso_code": "EUR"},{"iso_code": "IN","currency_iso_code": "EUR"},{"iso_code": "ID","currency_iso_code": "EUR"},{"iso_code": "IQ","currency_iso_code": "EUR"},{"iso_code": "IE","currency_iso_code": "EUR"},{"iso_code": "IS","currency_iso_code": "EUR"},{"iso_code": "IM","currency_iso_code": "EUR"},{"iso_code": "IL","currency_iso_code": "EUR"},{"iso_code": "IT","currency_iso_code": "EUR"},{"iso_code": "JM","currency_iso_code": "EUR"},{"iso_code": "JP","currency_iso_code": "EUR"},{"iso_code": "YE","currency_iso_code": "EUR"},{"iso_code": "JE","currency_iso_code": "EUR"},{"iso_code": "JO","currency_iso_code": "EUR"},{"iso_code": "KY","currency_iso_code": "EUR"},{"iso_code": "KH","currency_iso_code": "EUR"},{"iso_code": "CM","currency_iso_code": "EUR"},{"iso_code": "CA","currency_iso_code": "EUR"},{"iso_code": "BQ","currency_iso_code": "EUR"},{"iso_code": "KZ","currency_iso_code": "EUR"},{"iso_code": "QA","currency_iso_code": "EUR"},{"iso_code": "KE","currency_iso_code": "EUR"},{"iso_code": "KG","currency_iso_code": "EUR"},{"iso_code": "KI","currency_iso_code": "EUR"},{"iso_code": "CC","currency_iso_code": "EUR"},{"iso_code": "CO","currency_iso_code": "EUR"},{"iso_code": "KM","currency_iso_code": "EUR"},{"iso_code": "CG","currency_iso_code": "EUR"},{"iso_code": "CD","currency_iso_code": "EUR"},{"iso_code": "XK","currency_iso_code": "EUR"},{"iso_code": "HR","currency_iso_code": "EUR"},{"iso_code": "KW","currency_iso_code": "EUR"},{"iso_code": "LA","currency_iso_code": "EUR"},{"iso_code": "LS","currency_iso_code": "EUR"},{"iso_code": "LV","currency_iso_code": "EUR"},{"iso_code": "LB","currency_iso_code": "EUR"},{"iso_code": "LR","currency_iso_code": "EUR"},{"iso_code": "LY","currency_iso_code": "EUR"},{"iso_code": "LI","currency_iso_code": "EUR"},{"iso_code": "LT","currency_iso_code": "EUR"},{"iso_code": "LU","currency_iso_code": "EUR"},{"iso_code": "MG","currency_iso_code": "EUR"},{"iso_code": "MW","currency_iso_code": "EUR"},{"iso_code": "MY","currency_iso_code": "EUR"},{"iso_code": "MV","currency_iso_code": "EUR"},{"iso_code": "ML","currency_iso_code": "EUR"},{"iso_code": "MT","currency_iso_code": "EUR"},{"iso_code": "MA","currency_iso_code": "EUR"},{"iso_code": "MQ","currency_iso_code": "EUR"},{"iso_code": "MR","currency_iso_code": "EUR"},{"iso_code": "MU","currency_iso_code": "EUR"},{"iso_code": "YT","currency_iso_code": "EUR"},{"iso_code": "MX","currency_iso_code": "EUR"},{"iso_code": "MC","currency_iso_code": "EUR"},{"iso_code": "MN","currency_iso_code": "EUR"},{"iso_code": "ME","currency_iso_code": "EUR"},{"iso_code": "MS","currency_iso_code": "EUR"},{"iso_code": "MZ","currency_iso_code": "EUR"},{"iso_code": "MM","currency_iso_code": "EUR"},{"iso_code": "NA","currency_iso_code": "EUR"},{"iso_code": "NR","currency_iso_code": "EUR"},{"iso_code": "NP","currency_iso_code": "EUR"},{"iso_code": "NC","currency_iso_code": "EUR"},{"iso_code": "NZ","currency_iso_code": "EUR"},{"iso_code": "NI","currency_iso_code": "EUR"},{"iso_code": "NL","currency_iso_code": "EUR"},{"iso_code": "NE","currency_iso_code": "EUR"},{"iso_code": "NG","currency_iso_code": "EUR"},{"iso_code": "NU","currency_iso_code": "EUR"},{"iso_code": "MK","currency_iso_code": "EUR"},{"iso_code": "NF","currency_iso_code": "EUR"},{"iso_code": "NO","currency_iso_code": "EUR"},{"iso_code": "AT","currency_iso_code": "EUR"},{"iso_code": "OM","currency_iso_code": "EUR"},{"iso_code": "PK","currency_iso_code": "EUR"},{"iso_code": "PS","currency_iso_code": "EUR"},{"iso_code": "PA","currency_iso_code": "EUR"},{"iso_code": "PG","currency_iso_code": "EUR"},{"iso_code": "PY","currency_iso_code": "EUR"},{"iso_code": "PE","currency_iso_code": "EUR"},{"iso_code": "PH","currency_iso_code": "EUR"},{"iso_code": "PN","currency_iso_code": "EUR"},{"iso_code": "PL","currency_iso_code": "EUR"},{"iso_code": "PT","currency_iso_code": "EUR"},{"iso_code": "MD","currency_iso_code": "EUR"},{"iso_code": "RE","currency_iso_code": "EUR"},{"iso_code": "RW","currency_iso_code": "EUR"},{"iso_code": "RO","currency_iso_code": "EUR"},{"iso_code": "RU","currency_iso_code": "EUR"},{"iso_code": "SB","currency_iso_code": "EUR"},{"iso_code": "ZM","currency_iso_code": "EUR"},{"iso_code": "WS","currency_iso_code": "EUR"},{"iso_code": "SM","currency_iso_code": "EUR"},{"iso_code": "ST","currency_iso_code": "EUR"},{"iso_code": "SA","currency_iso_code": "EUR"},{"iso_code": "SE","currency_iso_code": "EUR"},{"iso_code": "CH","currency_iso_code": "EUR"},{"iso_code": "SN","currency_iso_code": "EUR"},{"iso_code": "RS","currency_iso_code": "EUR"},{"iso_code": "SC","currency_iso_code": "EUR"},{"iso_code": "SL","currency_iso_code": "EUR"},{"iso_code": "ZW","currency_iso_code": "EUR"},{"iso_code": "SG","currency_iso_code": "EUR"},{"iso_code": "SX","currency_iso_code": "EUR"},{"iso_code": "SK","currency_iso_code": "EUR"},{"iso_code": "SI","currency_iso_code": "EUR"},{"iso_code": "SO","currency_iso_code": "EUR"},{"iso_code": "HK","currency_iso_code": "EUR"},{"iso_code": "MO","currency_iso_code": "EUR"},{"iso_code": "ES","currency_iso_code": "EUR"},{"iso_code": "SJ","currency_iso_code": "EUR"},{"iso_code": "LK","currency_iso_code": "EUR"},{"iso_code": "BL","currency_iso_code": "EUR"},{"iso_code": "SH","currency_iso_code": "EUR"},{"iso_code": "KN","currency_iso_code": "EUR"},{"iso_code": "LC","currency_iso_code": "EUR"},{"iso_code": "MF","currency_iso_code": "EUR"},{"iso_code": "PM","currency_iso_code": "EUR"},{"iso_code": "VC","currency_iso_code": "EUR"},{"iso_code": "SD","currency_iso_code": "EUR"},{"iso_code": "ZA","currency_iso_code": "EUR"},{"iso_code": "GS","currency_iso_code": "EUR"},{"iso_code": "KR","currency_iso_code": "EUR"},{"iso_code": "SS","currency_iso_code": "EUR"},{"iso_code": "SR","currency_iso_code": "EUR"},{"iso_code": "TJ","currency_iso_code": "EUR"},{"iso_code": "TW","currency_iso_code": "EUR"},{"iso_code": "TZ","currency_iso_code": "EUR"},{"iso_code": "TH","currency_iso_code": "EUR"},{"iso_code": "TL","currency_iso_code": "EUR"},{"iso_code": "TG","currency_iso_code": "EUR"},{"iso_code": "TK","currency_iso_code": "EUR"},{"iso_code": "TO","currency_iso_code": "EUR"},{"iso_code": "TT","currency_iso_code": "EUR"},{"iso_code": "TA","currency_iso_code": "EUR"},{"iso_code": "TD","currency_iso_code": "EUR"},{"iso_code": "CZ","currency_iso_code": "EUR"},{"iso_code": "TR","currency_iso_code": "EUR"},{"iso_code": "TN","currency_iso_code": "EUR"},{"iso_code": "TM","currency_iso_code": "EUR"},{"iso_code": "TC","currency_iso_code": "EUR"},{"iso_code": "TV","currency_iso_code": "EUR"},{"iso_code": "UG","currency_iso_code": "EUR"},{"iso_code": "UA","currency_iso_code": "EUR"},{"iso_code": "HU","currency_iso_code": "EUR"},{"iso_code": "UY","currency_iso_code": "EUR"},{"iso_code": "UZ","currency_iso_code": "EUR"},{"iso_code": "VU","currency_iso_code": "EUR"},{"iso_code": "VA","currency_iso_code": "EUR"},{"iso_code": "VE","currency_iso_code": "EUR"},{"iso_code": "AE","currency_iso_code": "EUR"},{"iso_code": "US","currency_iso_code": "EUR"},{"iso_code": "GB","currency_iso_code": "EUR"},{"iso_code": "VN","currency_iso_code": "EUR"},{"iso_code": "WF","currency_iso_code": "EUR"},{"iso_code": "CX","currency_iso_code": "EUR"},{"iso_code": "EH","currency_iso_code": "EUR"},{"iso_code": "CF","currency_iso_code": "EUR"},{"iso_code": "CY","currency_iso_code": "EUR"}]
EUR
smart-engineered.com
{"status":"0","fix_status":0,"flags_type":"rectangle_flag","labels_type":"language_name","position_lr":"left","position_tb":"fixed_bottom","vertical":80,"horizontal":12,"selector_width":0,"choose_language_selector":"floating_selector","style_of_the_selector":"dropdown","background_color":null,"background_opacity":null,"font_color":null,"css_code":null,"language_flags":null,"border_width":null,"mobile_position_lr":"left","mobile_position_tb":"fixed_bottom","mobile_selector_width":"0","mobile_vertical":"12","mobile_horizontal":12,"mobile_choose_language_selector":"floating_selector","mobile_style_of_the_selector":"dropdown","mobile_flags_type":"rectangle_flag","mobile_background_color":null,"mobile_font_color":null,"mobile_background_opacity":"100","mobile_css_code":null,"mobile_labels_type":"language_name","mobile_border_width":"","selector_type":"language","language_currency_selector_style":"dropdown","currency_selector_type":"floating_selector","currency_label_type":"code","mobile_language_currency_selector_style":"dropdown","mobile_currency_selector_type":"floating_selector","mobile_currency_label_type":"code","auto_switch_location_language":0,"auto_switch_location_currency":0,"arrow":"FASHION","mobile_arrow":"FASHION","border":["ROUNDED"],"mobile_border":["ROUNDED"],"auto_selector_width":["AUTO"],"mobile_auto_selector_width":["AUTO"],"rm_logo":"0","custom_js":null,"custom_rtl_css":null,"mobile_custom_js":null,"mobile_custom_rtl_css":null,"auto_switch_location_language_ip":0,"languages":[{"is_publish":1,"lan_code":"de","lan_type":3}],"default_language":"de","default_currency":{"code":"EUR","country":"European Union","currency":"Euro","currency_symbol":"€","round":"0.00","exchange_rate":0,"is_default":1},"user_currencies_data":[{"code":"EUR","country":"European Union","currency":"Euro","currency_symbol":"€","round":"0.00","exchange_rate":0,"is_default":1}]}
{"default_currency":{"code":"EUR","country":"European Union","currency":"Euro","currency_symbol":"€","round":"0.00","exchange_rate":"0","is_default":1},"default_language":"en","desktop":"{\"content\":{\"currency_flags_type\":\"rectangle_flag\",\"embed_place\":\"\",\"labels_type_show\":true,\"language_select\":true,\"position_tb\":\"bottom\",\"bar_currency_labels_type_show\":true,\"currency_labels_type_obj\":{\"name\":false,\"code\":true,\"symbol\":true},\"separator\":\"\/\",\"button_icon\":\"globe\",\"left\":12,\"style_of_the_selector\":\"dropdown\",\"bar_currency_flags_type_show\":false,\"arrow\":\"SIMPLE\",\"currency_select\":true,\"flags_type_show\":true,\"currency_labels_type\":\"language_code\",\"custom_bar_status\":false,\"bar_labels_type\":\"native_language_name\",\"bar_labels_type_show\":true,\"bar_currency_labels_type_obj\":{\"name\":false,\"code\":true,\"symbol\":true},\"currency_labels_type_show\":true,\"flags_type\":\"rectangle_flag\",\"bar_sort_list\":{\"language\":{\"index\":0,\"children\":{\"bar_flags_type\":0,\"bar_labels_type\":1}},\"currency\":{\"index\":1,\"children\":{\"bar_currency_flags_type\":0,\"bar_currency_labels_type\":1}}},\"arrow_show\":true,\"bar_currency_flags_type\":\"rectangle_flag\",\"embed_place_index\":0,\"fixed\":true,\"top\":80,\"button_icon_show\":false,\"separator_show\":true,\"bar_currency_labels_type\":\"language_code\",\"labels_type\":\"native_language_name\",\"selector_type\":\"language\",\"position_lr\":\"left\",\"currency_flags_type_show\":false,\"choose_language_selector\":\"floating_selector\",\"bar_flags_type_show\":false,\"bar_flags_type\":\"rectangle_flag\",\"sort_list\":{\"button_icon\":-1,\"flags_type\":0,\"labels_type\":1,\"separator\":2,\"currency_flags_type\":3,\"currency_labels_type\":4,\"arrow\":5}},\"style\":{\"dropdown_background_color\":\"#ffffff\",\"custom_rtl_css\":\"\",\"popup_primary_background_color\":\"#121127b8\",\"popup_select_background_color\":\"#F3F3F6\",\"popup_primary_font_color\":\"#ffffff\",\"popup_select_font_color\":\"#303030\",\"popup_background_color\":\"#ffffff\",\"popup_font_color\":\"#303030\",\"selector_width\":16,\"dropdown_select_background_color\":\"#F3F3F6\",\"dropdown_background_opacity\":100,\"dropdown_select_font_color\":\"#303030\",\"css_code\":\"\",\"popup_second_font_color\":\"#303030\",\"border\":[\"ROUNDED\"],\"popup_background_opacity\":100,\"background_color\":\"#ffffff\",\"font_color\":\"#303030\",\"border_width\":\"1\",\"auto_selector_width\":[\"AUTO\"],\"custom_js\":\"\",\"background_opacity\":100,\"dropdown_primary_background_color\":\"#121127b8\",\"dropdown_primary_font_color\":\"#ffffff\"}}","et":1,"global":"{\"auto_switch_location_language\":0,\"auto_switch_location_language_ip\":0,\"auto_switch_location_currency\":0,\"language_flags\":{},\"language_sort_list\":{}}","languages":[{"is_publish":1,"lan_code":"en","lan_type":1}],"mobile":"{\"content\":{\"currency_flags_type\":\"rectangle_flag\",\"embed_place\":\"\",\"labels_type_show\":true,\"language_select\":true,\"position_tb\":\"bottom\",\"bar_currency_labels_type_show\":true,\"currency_labels_type_obj\":{\"name\":false,\"code\":true,\"symbol\":true},\"separator\":\"\/\",\"button_icon\":\"globe\",\"left\":12,\"style_of_the_selector\":\"dropdown\",\"bar_currency_flags_type_show\":false,\"arrow\":\"SIMPLE\",\"currency_select\":true,\"flags_type_show\":true,\"currency_labels_type\":\"language_code\",\"custom_bar_status\":false,\"bar_labels_type\":\"native_language_name\",\"bar_labels_type_show\":true,\"bar_currency_labels_type_obj\":{\"name\":false,\"code\":true,\"symbol\":true},\"currency_labels_type_show\":true,\"flags_type\":\"rectangle_flag\",\"bar_sort_list\":{\"language\":{\"index\":0,\"children\":{\"bar_flags_type\":0,\"bar_labels_type\":1}},\"currency\":{\"index\":1,\"children\":{\"bar_currency_flags_type\":0,\"bar_currency_labels_type\":1}}},\"arrow_show\":true,\"bar_currency_flags_type\":\"rectangle_flag\",\"embed_place_index\":0,\"fixed\":true,\"top\":80,\"button_icon_show\":false,\"separator_show\":true,\"bar_currency_labels_type\":\"language_code\",\"labels_type\":\"native_language_name\",\"selector_type\":\"language\",\"position_lr\":\"left\",\"currency_flags_type_show\":false,\"choose_language_selector\":\"floating_selector\",\"bar_flags_type_show\":false,\"bar_flags_type\":\"rectangle_flag\",\"sort_list\":{\"button_icon\":-1,\"flags_type\":0,\"labels_type\":1,\"separator\":2,\"currency_flags_type\":3,\"currency_labels_type\":4,\"arrow\":5}},\"style\":{\"dropdown_background_color\":\"#ffffff\",\"custom_rtl_css\":\"\",\"popup_primary_background_color\":\"#121127b8\",\"popup_select_background_color\":\"#F3F3F6\",\"popup_primary_font_color\":\"#ffffff\",\"popup_select_font_color\":\"#303030\",\"popup_background_color\":\"#ffffff\",\"popup_font_color\":\"#303030\",\"selector_width\":16,\"dropdown_select_background_color\":\"#F3F3F6\",\"dropdown_background_opacity\":100,\"dropdown_select_font_color\":\"#303030\",\"css_code\":\"\",\"popup_second_font_color\":\"#303030\",\"border\":[\"ROUNDED\"],\"popup_background_opacity\":100,\"background_color\":\"#ffffff\",\"font_color\":\"#303030\",\"border_width\":\"1\",\"auto_selector_width\":[\"AUTO\"],\"custom_js\":\"\",\"background_opacity\":100,\"dropdown_primary_background_color\":\"#121127b8\",\"dropdown_primary_font_color\":\"#ffffff\"}}","rm_logo":0,"status":0,"user_currencies_data":[{"code":"EUR","country":"European Union","currency":"Euro","currency_symbol":"€","round":"0.00","exchange_rate":"0","is_default":1}]}
null
{"is_rtl":false}
{"et":0,"source_url":[{"url_content":"https:\/\/cdn.shopify.com\/s\/files\/1\/2462\/4049\/files\/SUMMER-HOLIDAY-snapflex-deal.jpg?v=1754905574","type":0,"trans_type":0,"id":28956,"index":"115acf0e62e6e62aab5e6dcd475d1a32"},{"url_content":"https:\/\/cdn.shopify.com\/s\/files\/1\/2462\/4049\/files\/SUMMER-HOLIDAY-snapflex-deal-mobile.jpg?v=1754905575","type":0,"trans_type":0,"id":28961,"index":"091de388b6057d21b628726885c2b0db"}],"replace_url":null}
de
EUR
de
smart-engineered.myshopify.com
2025-08-15
{{amount_with_comma_separator}}€
smart-engineered.myshopify.com
DE
null
{
"background_color":"",
"background_opacity":"",
"border_width":"",
"css_code":"",
"flags_type":"",
"font_color":"",
"horizontal":"",
"vertical":"",
"position_lr":"",
"position_tb":"",
"labels_type":"",
"selector_width":""
}
var xoUpdate =1764238645562;var xoMultiLang =true;
var xoDfLang ="de";
var xogMoneyFormat = `{{amount_with_comma_separator}}€`;
window.essentialCountdownTimerConfigs = [{"id":"cmgqc7mtr00904f9blqz0dces","name":"Last Minut Prime Deal","title":"WEIHNACHTS-SALE","customTitle":"","endDate":"2025-10-15T09:01:00.000Z","startDate":"2025-12-10T11:54:00.000Z","subheading":"Bis zu 60% Rabatt + Gratis Geschenk","fixedMinutes":"120","repeat":false,"timerType":"fixedMinutes","type":"top-bar","published":true,"timerPlacement":"","showOnProducts":[],"showOnCollections":[],"legendCopyDays":"Tage","legendCopyHours":"Std","legendCopyMins":"Min","legendCopySecs":"Sek","CTAType":"","CTALink":"https://smart-engineered.myshopify.com","closeButton":false,"buttonText":"Shop now!","updatedAt":"2025-12-10T11:55:01.096Z","createdAt":"2025-10-14T09:05:46.164Z","onceItEnds":"repeat","style":{"font":"","image":"https://cache-essential-apps.cc/image_backgrounds/winter_holiday_greenery.jpg","position":"top-page","timerSize":"22","titleSize":"24","borderSize":"0","buttonText":"Shop now!","legendSize":"10","timerColor":"#ffffff","titleColor":"#ffffff","borderColor":"#ffffff","gradientEnd":"#4c4861","legendColor":"#9f9daa","singleColor":"#000000","borderRadius":"8","gradientTurn":47,"gradientStart":"#000000","backgroundType":"singleBackground","buttonFontSize":"14","closeIconColor":"#9f9daa","subheadingSize":"14","buttonFontColor":"#FFFFFF","singleColorRgba":"rgba(0, 0, 0, 1)","subheadingColor":"#ffffff","singleColorAlpha":1,"imageOverlayColor":"#000000","buttonBorderRadius":"4","buttonBackgroundColor":"#ff3e20","imageOverlayColorRgba":"rgba(0, 0, 0, 0.20)","imageOverlayColorAlpha":"0.2"},"recurringDays":[],"startType":"today","endType":"never","productTags":[],"showInCountries":[],"locationType":"","translations":[],"showOnProductsInCollections":[],"excludeOnPages":["specific-urls"],"excludeOnSpecificUrls":["https://smart-engineered.com/products/noglass-der-unzerstoerbare-displayschutz?view=noglass-listicle-idris","https://smart-engineered.com/products/noglass-der-unzerstoerbare-displayschutz?view=noglas-idris-2","https://smart-engineered.com/pages/7-fakten-noglass-2025-pep","https://smart-engineered.com/pages/7-fakten-noglass-idr","https://smart-engineered.com/en/pages/7-fakten-noglass-2025-pep","https://smart-engineered.com/pages/rate","https://smart-engineered.com/en/pages/7-fakten-noglass-idr"],"excludeOnKeywordsInUrl":[],"excludeOnProducts":[],"excludeOnCollections":[],"duration":7200000}];
const essentialCollectionId = null;
window.essentialCountdownTimerMeta = {
productData: {"id":10057764733192,"title":"se® noglass - der unzerbrechliche Displayschutz","handle":"noglass-der-unzerstoerbare-displayschutz","description":"","published_at":"2025-06-27T14:23:43+02:00","created_at":"2025-03-06T09:26:14+01:00","vendor":"smart engineered","type":"","tags":["klar","matt","noglass","privacy","smartphone"],"price":1999,"price_min":1999,"price_max":2499,"available":true,"price_varies":true,"compare_at_price":0,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50942302781704,"title":"Apple \/ iPhone 11 \/ Klar","option1":"Apple","option2":"iPhone 11","option3":"Klar","sku":"SE0-F1201-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Klar","public_title":"Apple \/ iPhone 11 \/ Klar","options":["Apple","iPhone 11","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463800","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303600904,"title":"Apple \/ iPhone 11 \/ Matt","option1":"Apple","option2":"iPhone 11","option3":"Matt","sku":"SE0-F1202-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Matt","public_title":"Apple \/ iPhone 11 \/ Matt","options":["Apple","iPhone 11","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463992","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303633672,"title":"Apple \/ iPhone 11 \/ Privacy","option1":"Apple","option2":"iPhone 11","option3":"Privacy","sku":"SE0-F1212-0085-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 \/ Privacy","public_title":"Apple \/ iPhone 11 \/ Privacy","options":["Apple","iPhone 11","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464005","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302814472,"title":"Apple \/ iPhone 11 Pro \/ Klar","option1":"Apple","option2":"iPhone 11 Pro","option3":"Klar","sku":"SE0-F1201-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Klar","public_title":"Apple \/ iPhone 11 Pro \/ Klar","options":["Apple","iPhone 11 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463817","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303666440,"title":"Apple \/ iPhone 11 Pro \/ Matt","option1":"Apple","option2":"iPhone 11 Pro","option3":"Matt","sku":"SE0-F1202-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Matt","public_title":"Apple \/ iPhone 11 Pro \/ Matt","options":["Apple","iPhone 11 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464036","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303699208,"title":"Apple \/ iPhone 11 Pro \/ Privacy","option1":"Apple","option2":"iPhone 11 Pro","option3":"Privacy","sku":"SE0-F1212-0084-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro \/ Privacy","public_title":"Apple \/ iPhone 11 Pro \/ Privacy","options":["Apple","iPhone 11 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464043","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098352392,"title":"Apple \/ iPhone XR \/ Klar","option1":"Apple","option2":"iPhone XR","option3":"Klar","sku":"SE0-F1201-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850715959560,"product_id":10057764733192,"position":114,"created_at":"2025-11-24T08:23:27+01:00","updated_at":"2025-11-24T08:23:32+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","variant_ids":[52858098352392]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Klar","public_title":"Apple \/ iPhone XR \/ Klar","options":["Apple","iPhone XR","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466719","featured_media":{"alt":null,"id":62154742825224,"position":121,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101661960,"title":"Apple \/ iPhone XR \/ Matt","option1":"Apple","option2":"iPhone XR","option3":"Matt","sku":"SE0-F1202-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850720579848,"product_id":10057764733192,"position":118,"created_at":"2025-11-24T08:24:02+01:00","updated_at":"2025-11-24T08:24:07+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","variant_ids":[52858101661960]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Matt","public_title":"Apple \/ iPhone XR \/ Matt","options":["Apple","iPhone XR","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466764","featured_media":{"alt":null,"id":62154747445512,"position":125,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101694728,"title":"Apple \/ iPhone XR \/ Privacy","option1":"Apple","option2":"iPhone XR","option3":"Privacy","sku":"SE0-F1212-0040-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850723660040,"product_id":10057764733192,"position":119,"created_at":"2025-11-24T08:24:16+01:00","updated_at":"2025-11-24T08:24:20+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","variant_ids":[52858101694728]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XR \/ Privacy","public_title":"Apple \/ iPhone XR \/ Privacy","options":["Apple","iPhone XR","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466771","featured_media":{"alt":null,"id":62154750525704,"position":126,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098549000,"title":"Apple \/ iPhone X \/ XS \/ Klar","option1":"Apple","option2":"iPhone X \/ XS","option3":"Klar","sku":"SE0-F1201-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850717204744,"product_id":10057764733192,"position":115,"created_at":"2025-11-24T08:23:36+01:00","updated_at":"2025-11-24T08:23:40+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","variant_ids":[52858098549000]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Klar","public_title":"Apple \/ iPhone X \/ XS \/ Klar","options":["Apple","iPhone X \/ XS","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466726","featured_media":{"alt":null,"id":62154744070408,"position":122,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101727496,"title":"Apple \/ iPhone X \/ XS \/ Matt","option1":"Apple","option2":"iPhone X \/ XS","option3":"Matt","sku":"SE0-F1202-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850726773000,"product_id":10057764733192,"position":120,"created_at":"2025-11-24T08:24:24+01:00","updated_at":"2025-11-24T08:24:29+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","variant_ids":[52858101727496]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Matt","public_title":"Apple \/ iPhone X \/ XS \/ Matt","options":["Apple","iPhone X \/ XS","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466788","featured_media":{"alt":null,"id":62154753605896,"position":127,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101760264,"title":"Apple \/ iPhone X \/ XS \/ Privacy","option1":"Apple","option2":"iPhone X \/ XS","option3":"Privacy","sku":"SE0-F1212-0010-17-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850728378632,"product_id":10057764733192,"position":121,"created_at":"2025-11-24T08:24:31+01:00","updated_at":"2025-11-24T08:24:36+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","variant_ids":[52858101760264]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone X \/ XS \/ Privacy","public_title":"Apple \/ iPhone X \/ XS \/ Privacy","options":["Apple","iPhone X \/ XS","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466795","featured_media":{"alt":null,"id":62154755244296,"position":128,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101530888,"title":"Apple \/ iPhone XS Max \/ Klar","option1":"Apple","option2":"iPhone XS Max","option3":"Klar","sku":"SE0-F1201-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850718187784,"product_id":10057764733192,"position":116,"created_at":"2025-11-24T08:23:43+01:00","updated_at":"2025-11-24T08:23:47+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","variant_ids":[52858101530888]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Klar","public_title":"Apple \/ iPhone XS Max \/ Klar","options":["Apple","iPhone XS Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466733","featured_media":{"alt":null,"id":62154745053448,"position":123,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858098123016,"title":"Apple \/ iPhone XS Max \/ Matt","option1":"Apple","option2":"iPhone XS Max","option3":"Matt","sku":"SE0-F1202-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850713960712,"product_id":10057764733192,"position":113,"created_at":"2025-11-24T08:23:20+01:00","updated_at":"2025-11-24T08:23:25+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","variant_ids":[52858098123016]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Matt","public_title":"Apple \/ iPhone XS Max \/ Matt","options":["Apple","iPhone XS Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466702","featured_media":{"alt":null,"id":62154740826376,"position":120,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101793032,"title":"Apple \/ iPhone XS Max \/ Privacy","option1":"Apple","option2":"iPhone XS Max","option3":"Privacy","sku":"SE0-F1212-0043-18-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850729984264,"product_id":10057764733192,"position":122,"created_at":"2025-11-24T08:24:43+01:00","updated_at":"2025-11-24T08:24:48+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","variant_ids":[52858101793032]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone XS Max \/ Privacy","public_title":"Apple \/ iPhone XS Max \/ Privacy","options":["Apple","iPhone XS Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466801","featured_media":{"alt":null,"id":62154756849928,"position":129,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302880008,"title":"Apple \/ iPhone 11 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Klar","sku":"SE0-F1201-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Klar","public_title":"Apple \/ iPhone 11 Pro Max \/ Klar","options":["Apple","iPhone 11 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463824","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303731976,"title":"Apple \/ iPhone 11 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Matt","sku":"SE0-F1202-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Matt","public_title":"Apple \/ iPhone 11 Pro Max \/ Matt","options":["Apple","iPhone 11 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464050","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303797512,"title":"Apple \/ iPhone 11 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 11 Pro Max","option3":"Privacy","sku":"SE0-F1212-0086-19-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 11 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 11 Pro Max \/ Privacy","options":["Apple","iPhone 11 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464067","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302912776,"title":"Apple \/ iPhone 12 \/ Klar","option1":"Apple","option2":"iPhone 12","option3":"Klar","sku":"SE0-F1201-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Klar","public_title":"Apple \/ iPhone 12 \/ Klar","options":["Apple","iPhone 12","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463831","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303830280,"title":"Apple \/ iPhone 12 \/ Matt","option1":"Apple","option2":"iPhone 12","option3":"Matt","sku":"SE0-F1202-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Matt","public_title":"Apple \/ iPhone 12 \/ Matt","options":["Apple","iPhone 12","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464074","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303863048,"title":"Apple \/ iPhone 12 \/ Privacy","option1":"Apple","option2":"iPhone 12","option3":"Privacy","sku":"SE0-F1212-0143-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 \/ Privacy","public_title":"Apple \/ iPhone 12 \/ Privacy","options":["Apple","iPhone 12","Privacy"],"price":2499,"weight":140,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464081","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101563656,"title":"Apple \/ iPhone 12 Pro \/ Klar","option1":"Apple","option2":"iPhone 12 Pro","option3":"Klar","sku":"SE0-F1201-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850719400200,"product_id":10057764733192,"position":117,"created_at":"2025-11-24T08:23:54+01:00","updated_at":"2025-11-24T08:23:59+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","variant_ids":[52858101563656]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Klar","public_title":"Apple \/ iPhone 12 Pro \/ Klar","options":["Apple","iPhone 12 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466740","featured_media":{"alt":null,"id":62154746265864,"position":124,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101825800,"title":"Apple \/ iPhone 12 Pro \/ Matt","option1":"Apple","option2":"iPhone 12 Pro","option3":"Matt","sku":"SE0-F1202-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850732441864,"product_id":10057764733192,"position":123,"created_at":"2025-11-24T08:24:50+01:00","updated_at":"2025-11-24T08:24:54+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","variant_ids":[52858101825800]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Matt","public_title":"Apple \/ iPhone 12 Pro \/ Matt","options":["Apple","iPhone 12 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466818","featured_media":{"alt":null,"id":62154759307528,"position":130,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101858568,"title":"Apple \/ iPhone 12 Pro \/ Privacy","option1":"Apple","option2":"iPhone 12 Pro","option3":"Privacy","sku":"SE0-F1212-0142-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850733588744,"product_id":10057764733192,"position":124,"created_at":"2025-11-24T08:24:57+01:00","updated_at":"2025-11-24T08:25:02+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","variant_ids":[52858101858568]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro \/ Privacy","public_title":"Apple \/ iPhone 12 Pro \/ Privacy","options":["Apple","iPhone 12 Pro","Privacy"],"price":2499,"weight":140,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466825","featured_media":{"alt":null,"id":62154760454408,"position":131,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302945544,"title":"Apple \/ iPhone 12 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Klar","sku":"SE0-F1201-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Klar","public_title":"Apple \/ iPhone 12 Pro Max \/ Klar","options":["Apple","iPhone 12 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463848","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303895816,"title":"Apple \/ iPhone 12 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Matt","sku":"SE0-F1202-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Matt","public_title":"Apple \/ iPhone 12 Pro Max \/ Matt","options":["Apple","iPhone 12 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464098","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303928584,"title":"Apple \/ iPhone 12 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 12 Pro Max","option3":"Privacy","sku":"SE0-F1212-0144-20-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 12 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 12 Pro Max \/ Privacy","options":["Apple","iPhone 12 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464104","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942302978312,"title":"Apple \/ iPhone 13 \/ Klar","option1":"Apple","option2":"iPhone 13","option3":"Klar","sku":"SE0-F1201-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Klar","public_title":"Apple \/ iPhone 13 \/ Klar","options":["Apple","iPhone 13","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463855","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303994120,"title":"Apple \/ iPhone 13 \/ Matt","option1":"Apple","option2":"iPhone 13","option3":"Matt","sku":"SE0-F1202-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Matt","public_title":"Apple \/ iPhone 13 \/ Matt","options":["Apple","iPhone 13","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464111","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304026888,"title":"Apple \/ iPhone 13 \/ Privacy","option1":"Apple","option2":"iPhone 13","option3":"Privacy","sku":"SE0-F1212-0194-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 \/ Privacy","public_title":"Apple \/ iPhone 13 \/ Privacy","options":["Apple","iPhone 13","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464128","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858141147400,"title":"Apple \/ iPhone 13 Pro \/ Klar","option1":"Apple","option2":"iPhone 13 Pro","option3":"Klar","sku":"SE0-F1201-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74851227205896,"product_id":10057764733192,"position":127,"created_at":"2025-11-24T08:55:49+01:00","updated_at":"2025-11-24T08:55:54+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","variant_ids":[52858141147400]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Klar","public_title":"Apple \/ iPhone 13 Pro \/ Klar","options":["Apple","iPhone 13 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466757","featured_media":{"alt":null,"id":62155251581192,"position":134,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101891336,"title":"Apple \/ iPhone 13 Pro \/ Matt","option1":"Apple","option2":"iPhone 13 Pro","option3":"Matt","sku":"SE0-F1202-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850734506248,"product_id":10057764733192,"position":125,"created_at":"2025-11-24T08:25:04+01:00","updated_at":"2025-11-24T08:25:09+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","variant_ids":[52858101891336]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Matt","public_title":"Apple \/ iPhone 13 Pro \/ Matt","options":["Apple","iPhone 13 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466832","featured_media":{"alt":null,"id":62154761371912,"position":132,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52858101989640,"title":"Apple \/ iPhone 13 Pro \/ Privacy","option1":"Apple","option2":"iPhone 13 Pro","option3":"Privacy","sku":"SE0-F1212-0195-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74850735685896,"product_id":10057764733192,"position":126,"created_at":"2025-11-24T08:25:14+01:00","updated_at":"2025-11-24T08:25:19+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","variant_ids":[52858101989640]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro \/ Privacy","public_title":"Apple \/ iPhone 13 Pro \/ Privacy","options":["Apple","iPhone 13 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466849","featured_media":{"alt":null,"id":62154762551560,"position":133,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303011080,"title":"Apple \/ iPhone 13 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Klar","sku":"SE0-F1201-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Klar","public_title":"Apple \/ iPhone 13 Pro Max \/ Klar","options":["Apple","iPhone 13 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463862","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304059656,"title":"Apple \/ iPhone 13 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Matt","sku":"SE0-F1202-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Matt","public_title":"Apple \/ iPhone 13 Pro Max \/ Matt","options":["Apple","iPhone 13 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":13,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464135","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304125192,"title":"Apple \/ iPhone 13 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 13 Pro Max","option3":"Privacy","sku":"SE0-F1212-0196-21-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 13 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 13 Pro Max \/ Privacy","options":["Apple","iPhone 13 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464142","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303076616,"title":"Apple \/ iPhone 14 \/ Klar","option1":"Apple","option2":"iPhone 14","option3":"Klar","sku":"SE0-F1201-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Klar","public_title":"Apple \/ iPhone 14 \/ Klar","options":["Apple","iPhone 14","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463879","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942304157960,"title":"Apple \/ iPhone 14 \/ Matt","option1":"Apple","option2":"iPhone 14","option3":"Matt","sku":"SE0-F1202-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Matt","public_title":"Apple \/ iPhone 14 \/ Matt","options":["Apple","iPhone 14","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":27,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464159","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305206536,"title":"Apple \/ iPhone 14 \/ Privacy","option1":"Apple","option2":"iPhone 14","option3":"Privacy","sku":"SE0-F1212-0272-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 \/ Privacy","public_title":"Apple \/ iPhone 14 \/ Privacy","options":["Apple","iPhone 14","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464166","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303109384,"title":"Apple \/ iPhone 14 Plus \/ Klar","option1":"Apple","option2":"iPhone 14 Plus","option3":"Klar","sku":"SE0-F1201-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Klar","public_title":"Apple \/ iPhone 14 Plus \/ Klar","options":["Apple","iPhone 14 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463886","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305272072,"title":"Apple \/ iPhone 14 Plus \/ Matt","option1":"Apple","option2":"iPhone 14 Plus","option3":"Matt","sku":"SE0-F1202-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Matt","public_title":"Apple \/ iPhone 14 Plus \/ Matt","options":["Apple","iPhone 14 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464173","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305304840,"title":"Apple \/ iPhone 14 Plus \/ Privacy","option1":"Apple","option2":"iPhone 14 Plus","option3":"Privacy","sku":"SE0-F1212-0274-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Plus \/ Privacy","public_title":"Apple \/ iPhone 14 Plus \/ Privacy","options":["Apple","iPhone 14 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464180","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303142152,"title":"Apple \/ iPhone 14 Pro \/ Klar","option1":"Apple","option2":"iPhone 14 Pro","option3":"Klar","sku":"SE0-F1201-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Klar","public_title":"Apple \/ iPhone 14 Pro \/ Klar","options":["Apple","iPhone 14 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463893","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305534216,"title":"Apple \/ iPhone 14 Pro \/ Matt","option1":"Apple","option2":"iPhone 14 Pro","option3":"Matt","sku":"SE0-F1202-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Matt","public_title":"Apple \/ iPhone 14 Pro \/ Matt","options":["Apple","iPhone 14 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464197","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305566984,"title":"Apple \/ iPhone 14 Pro \/ Privacy","option1":"Apple","option2":"iPhone 14 Pro","option3":"Privacy","sku":"SE0-F1212-0273-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro \/ Privacy","public_title":"Apple \/ iPhone 14 Pro \/ Privacy","options":["Apple","iPhone 14 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464203","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303174920,"title":"Apple \/ iPhone 14 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Klar","sku":"SE0-F1201-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Klar","public_title":"Apple \/ iPhone 14 Pro Max \/ Klar","options":["Apple","iPhone 14 Pro Max","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463909","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305632520,"title":"Apple \/ iPhone 14 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Matt","sku":"SE0-F1202-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Matt","public_title":"Apple \/ iPhone 14 Pro Max \/ Matt","options":["Apple","iPhone 14 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":27,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464210","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305665288,"title":"Apple \/ iPhone 14 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 14 Pro Max","option3":"Privacy","sku":"SE0-F1212-0275-22-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 14 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 14 Pro Max \/ Privacy","options":["Apple","iPhone 14 Pro Max","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464227","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303207688,"title":"Apple \/ iPhone 15 \/ Klar","option1":"Apple","option2":"iPhone 15","option3":"Klar","sku":"SE0-F1201-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Klar","public_title":"Apple \/ iPhone 15 \/ Klar","options":["Apple","iPhone 15","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463916","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305698056,"title":"Apple \/ iPhone 15 \/ Matt","option1":"Apple","option2":"iPhone 15","option3":"Matt","sku":"SE0-F1202-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Matt","public_title":"Apple \/ iPhone 15 \/ Matt","options":["Apple","iPhone 15","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464234","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305763592,"title":"Apple \/ iPhone 15 \/ Privacy","option1":"Apple","option2":"iPhone 15","option3":"Privacy","sku":"SE0-F1212-0423-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 \/ Privacy","public_title":"Apple \/ iPhone 15 \/ Privacy","options":["Apple","iPhone 15","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464241","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303273224,"title":"Apple \/ iPhone 15 Plus \/ Klar","option1":"Apple","option2":"iPhone 15 Plus","option3":"Klar","sku":"SE0-F1201-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Klar","public_title":"Apple \/ iPhone 15 Plus \/ Klar","options":["Apple","iPhone 15 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463923","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305829128,"title":"Apple \/ iPhone 15 Plus \/ Matt","option1":"Apple","option2":"iPhone 15 Plus","option3":"Matt","sku":"SE0-F1202-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Matt","public_title":"Apple \/ iPhone 15 Plus \/ Matt","options":["Apple","iPhone 15 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464258","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305894664,"title":"Apple \/ iPhone 15 Plus \/ Privacy","option1":"Apple","option2":"iPhone 15 Plus","option3":"Privacy","sku":"SE0-F1212-0426-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Plus \/ Privacy","public_title":"Apple \/ iPhone 15 Plus \/ Privacy","options":["Apple","iPhone 15 Plus","Privacy"],"price":2499,"weight":100,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464265","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303305992,"title":"Apple \/ iPhone 15 Pro \/ Klar","option1":"Apple","option2":"iPhone 15 Pro","option3":"Klar","sku":"SE0-F1201-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Klar","public_title":"Apple \/ iPhone 15 Pro \/ Klar","options":["Apple","iPhone 15 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463930","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305960200,"title":"Apple \/ iPhone 15 Pro \/ Matt","option1":"Apple","option2":"iPhone 15 Pro","option3":"Matt","sku":"SE0-F1202-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Matt","public_title":"Apple \/ iPhone 15 Pro \/ Matt","options":["Apple","iPhone 15 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464272","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942305992968,"title":"Apple \/ iPhone 15 Pro \/ Privacy","option1":"Apple","option2":"iPhone 15 Pro","option3":"Privacy","sku":"SE0-F1212-0424-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro \/ Privacy","public_title":"Apple \/ iPhone 15 Pro \/ Privacy","options":["Apple","iPhone 15 Pro","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464289","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303338760,"title":"Apple \/ iPhone 15 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Klar","sku":"SE0-F1201-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Klar","public_title":"Apple \/ iPhone 15 Pro Max \/ Klar","options":["Apple","iPhone 15 Pro Max","Klar"],"price":1999,"weight":100,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463947","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306025736,"title":"Apple \/ iPhone 15 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Matt","sku":"SE0-F1202-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Matt","public_title":"Apple \/ iPhone 15 Pro Max \/ Matt","options":["Apple","iPhone 15 Pro Max","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464296","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306058504,"title":"Apple \/ iPhone 15 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 15 Pro Max","option3":"Privacy","sku":"SE0-F1212-0425-23-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 15 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 15 Pro Max \/ Privacy","options":["Apple","iPhone 15 Pro Max","Privacy"],"price":2499,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464302","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303371528,"title":"Apple \/ iPhone 16 \/ Klar","option1":"Apple","option2":"iPhone 16","option3":"Klar","sku":"SE0-F1201-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Klar","public_title":"Apple \/ iPhone 16 \/ Klar","options":["Apple","iPhone 16","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463954","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306091272,"title":"Apple \/ iPhone 16 \/ Matt","option1":"Apple","option2":"iPhone 16","option3":"Matt","sku":"SE0-F1202-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Matt","public_title":"Apple \/ iPhone 16 \/ Matt","options":["Apple","iPhone 16","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464319","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306124040,"title":"Apple \/ iPhone 16 \/ Privacy","option1":"Apple","option2":"iPhone 16","option3":"Privacy","sku":"SE0-F1212-0523-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 \/ Privacy","public_title":"Apple \/ iPhone 16 \/ Privacy","options":["Apple","iPhone 16","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464326","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303404296,"title":"Apple \/ iPhone 16 Plus \/ Klar","option1":"Apple","option2":"iPhone 16 Plus","option3":"Klar","sku":"SE0-F1201-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Klar","public_title":"Apple \/ iPhone 16 Plus \/ Klar","options":["Apple","iPhone 16 Plus","Klar"],"price":1999,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463961","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306189576,"title":"Apple \/ iPhone 16 Plus \/ Matt","option1":"Apple","option2":"iPhone 16 Plus","option3":"Matt","sku":"SE0-F1202-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Matt","public_title":"Apple \/ iPhone 16 Plus \/ Matt","options":["Apple","iPhone 16 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464333","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306255112,"title":"Apple \/ iPhone 16 Plus \/ Privacy","option1":"Apple","option2":"iPhone 16 Plus","option3":"Privacy","sku":"SE0-F1212-0524-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Plus \/ Privacy","public_title":"Apple \/ iPhone 16 Plus \/ Privacy","options":["Apple","iPhone 16 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464340","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303502600,"title":"Apple \/ iPhone 16 Pro \/ Klar","option1":"Apple","option2":"iPhone 16 Pro","option3":"Klar","sku":"SE0-F1201-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Klar","public_title":"Apple \/ iPhone 16 Pro \/ Klar","options":["Apple","iPhone 16 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485463978","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306287880,"title":"Apple \/ iPhone 16 Pro \/ Matt","option1":"Apple","option2":"iPhone 16 Pro","option3":"Matt","sku":"SE0-F1202-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Matt","public_title":"Apple \/ iPhone 16 Pro \/ Matt","options":["Apple","iPhone 16 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464357","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306320648,"title":"Apple \/ iPhone 16 Pro \/ Privacy","option1":"Apple","option2":"iPhone 16 Pro","option3":"Privacy","sku":"SE0-F1212-0525-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro \/ Privacy","public_title":"Apple \/ iPhone 16 Pro \/ Privacy","options":["Apple","iPhone 16 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485464364","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942303535368,"title":"Apple \/ iPhone 16 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Klar","sku":"SE0-F1201-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209834451208,"product_id":10057764733192,"position":1,"created_at":"2025-03-27T07:55:42+01:00","updated_at":"2025-03-27T16:00:49+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","variant_ids":[50942302781704,50942302814472,50942302880008,50942302912776,50942302945544,50942302978312,50942303011080,50942303076616,50942303109384,50942303142152,50942303174920,50942303207688,50942303273224,50942303305992,50942303338760,50942303371528,50942303404296,50942303502600,50942303535368]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Klar","public_title":"Apple \/ iPhone 16 Pro Max \/ Klar","options":["Apple","iPhone 16 Pro Max","Klar"],"price":1999,"weight":110,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485463985","featured_media":{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306353416,"title":"Apple \/ iPhone 16 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Matt","sku":"SE0-F1202-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209855881480,"product_id":10057764733192,"position":15,"created_at":"2025-03-27T07:56:48+01:00","updated_at":"2025-03-27T07:58:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","variant_ids":[50942303600904,50942303666440,50942303731976,50942303830280,50942303895816,50942303994120,50942304059656,50942304157960,50942305272072,50942305534216,50942305632520,50942305698056,50942305829128,50942305960200,50942306025736,50942306091272,50942306189576,50942306287880,50942306353416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Matt","public_title":"Apple \/ iPhone 16 Pro Max \/ Matt","options":["Apple","iPhone 16 Pro Max","Matt"],"price":2299,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464371","featured_media":{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50942306386184,"title":"Apple \/ iPhone 16 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 16 Pro Max","option3":"Privacy","sku":"SE0-F1212-0526-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":62209857159432,"product_id":10057764733192,"position":16,"created_at":"2025-03-27T07:56:53+01:00","updated_at":"2025-03-27T07:58:55+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","variant_ids":[50942303633672,50942303699208,50942303797512,50942303863048,50942303928584,50942304026888,50942304125192,50942305206536,50942305304840,50942305566984,50942305665288,50942305763592,50942305894664,50942305992968,50942306058504,50942306124040,50942306255112,50942306320648,50942306386184]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 16 Pro Max \/ Privacy","options":["Apple","iPhone 16 Pro Max","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485464388","featured_media":{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52292213342472,"title":"Apple \/ iPhone 16e \/ Klar","option1":"Apple","option2":"iPhone 16e","option3":"Klar","sku":"SE0-F1201-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71326078632200,"product_id":10057764733192,"position":74,"created_at":"2025-08-28T12:48:25+02:00","updated_at":"2025-08-28T12:48:30+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","variant_ids":[52292213342472]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Klar","public_title":"Apple \/ iPhone 16e \/ Klar","options":["Apple","iPhone 16e","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465675","featured_media":{"alt":null,"id":58710772744456,"position":80,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52291993960712,"title":"Apple \/ iPhone 16e \/ Matt","option1":"Apple","option2":"iPhone 16e","option3":"Matt","sku":"SE0-F1202-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71325199335688,"product_id":10057764733192,"position":73,"created_at":"2025-08-28T12:03:33+02:00","updated_at":"2025-08-28T12:03:37+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","variant_ids":[52291993960712]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Matt","public_title":"Apple \/ iPhone 16e \/ Matt","options":["Apple","iPhone 16e","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465682","featured_media":{"alt":null,"id":58709903442184,"position":79,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52292247388424,"title":"Apple \/ iPhone 16e \/ Privacy","option1":"Apple","option2":"iPhone 16e","option3":"Privacy","sku":"SE0-F1212-0585-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71326358143240,"product_id":10057764733192,"position":75,"created_at":"2025-08-28T12:56:07+02:00","updated_at":"2025-08-28T12:56:12+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","variant_ids":[52292247388424]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 16e \/ Privacy","public_title":"Apple \/ iPhone 16e \/ Privacy","options":["Apple","iPhone 16e","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465699","featured_media":{"alt":null,"id":58711047241992,"position":81,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343180040,"title":"Apple \/ iPhone 17 \/ Klar","option1":"Apple","option2":"iPhone 17","option3":"Klar","sku":"SE0-F1201-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448810651912,"product_id":10057764733192,"position":94,"created_at":"2025-09-01T09:24:52+02:00","updated_at":"2025-09-01T09:24:57+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","variant_ids":[52307343180040]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Klar","public_title":"Apple \/ iPhone 17 \/ Klar","options":["Apple","iPhone 17","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465545","featured_media":{"alt":null,"id":58832422895880,"position":100,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307358908680,"title":"Apple \/ iPhone 17 \/ Matt","option1":"Apple","option2":"iPhone 17","option3":"Matt","sku":"SE0-F1202-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448825889032,"product_id":10057764733192,"position":98,"created_at":"2025-09-01T09:25:28+02:00","updated_at":"2025-09-01T09:25:33+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","variant_ids":[52307358908680]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Matt","public_title":"Apple \/ iPhone 17 \/ Matt","options":["Apple","iPhone 17","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465583","featured_media":{"alt":null,"id":58832438100232,"position":104,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359006984,"title":"Apple \/ iPhone 17 \/ Privacy","option1":"Apple","option2":"iPhone 17","option3":"Privacy","sku":"SE0-F1212-0613-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448829919496,"product_id":10057764733192,"position":99,"created_at":"2025-09-01T09:25:38+02:00","updated_at":"2025-09-01T09:25:43+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","variant_ids":[52307359006984]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 \/ Privacy","public_title":"Apple \/ iPhone 17 \/ Privacy","options":["Apple","iPhone 17","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465590","featured_media":{"alt":null,"id":58832442097928,"position":105,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343311112,"title":"Apple \/ iPhone 17 Air \/ Klar","option1":"Apple","option2":"iPhone 17 Air","option3":"Klar","sku":"SE0-F1201-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448813306120,"product_id":10057764733192,"position":95,"created_at":"2025-09-01T09:25:00+02:00","updated_at":"2025-09-01T09:25:05+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","variant_ids":[52307343311112]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Klar","public_title":"Apple \/ iPhone 17 Air \/ Klar","options":["Apple","iPhone 17 Air","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465552","featured_media":{"alt":null,"id":58832425681160,"position":101,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359072520,"title":"Apple \/ iPhone 17 Air \/ Matt","option1":"Apple","option2":"iPhone 17 Air","option3":"Matt","sku":"SE0-F1202-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448833523976,"product_id":10057764733192,"position":100,"created_at":"2025-09-01T09:25:49+02:00","updated_at":"2025-09-01T09:25:53+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","variant_ids":[52307359072520]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Matt","public_title":"Apple \/ iPhone 17 Air \/ Matt","options":["Apple","iPhone 17 Air","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465606","featured_media":{"alt":null,"id":58832445702408,"position":106,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359564040,"title":"Apple \/ iPhone 17 Air \/ Privacy","option1":"Apple","option2":"iPhone 17 Air","option3":"Privacy","sku":"SE0-F1212-0615-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448836079880,"product_id":10057764733192,"position":101,"created_at":"2025-09-01T09:25:56+02:00","updated_at":"2025-09-01T09:26:01+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","variant_ids":[52307359564040]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Air \/ Privacy","public_title":"Apple \/ iPhone 17 Air \/ Privacy","options":["Apple","iPhone 17 Air","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465613","featured_media":{"alt":null,"id":58832448061704,"position":107,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307343376648,"title":"Apple \/ iPhone 17 Pro \/ Klar","option1":"Apple","option2":"iPhone 17 Pro","option3":"Klar","sku":"SE0-F1201-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448815304968,"product_id":10057764733192,"position":96,"created_at":"2025-09-01T09:25:10+02:00","updated_at":"2025-09-01T09:25:15+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","variant_ids":[52307343376648]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Klar","public_title":"Apple \/ iPhone 17 Pro \/ Klar","options":["Apple","iPhone 17 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465569","featured_media":{"alt":null,"id":58832427385096,"position":102,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359760648,"title":"Apple \/ iPhone 17 Pro \/ Matt","option1":"Apple","option2":"iPhone 17 Pro","option3":"Matt","sku":"SE0-F1202-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448840601864,"product_id":10057764733192,"position":102,"created_at":"2025-09-01T09:26:07+02:00","updated_at":"2025-09-01T09:26:11+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","variant_ids":[52307359760648]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Matt","public_title":"Apple \/ iPhone 17 Pro \/ Matt","options":["Apple","iPhone 17 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465620","featured_media":{"alt":null,"id":58832452780296,"position":108,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359793416,"title":"Apple \/ iPhone 17 Pro \/ Privacy","option1":"Apple","option2":"iPhone 17 Pro","option3":"Privacy","sku":"SE0-F1212-0614-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448843321608,"product_id":10057764733192,"position":103,"created_at":"2025-09-01T09:26:16+02:00","updated_at":"2025-09-01T09:26:20+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","variant_ids":[52307359793416]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro \/ Privacy","public_title":"Apple \/ iPhone 17 Pro \/ Privacy","options":["Apple","iPhone 17 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465637","featured_media":{"alt":null,"id":58832455500040,"position":109,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307357958408,"title":"Apple \/ iPhone 17 Pro Max \/ Klar","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Klar","sku":"SE0-F1201-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448818286856,"product_id":10057764733192,"position":97,"created_at":"2025-09-01T09:25:20+02:00","updated_at":"2025-09-01T09:25:25+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","variant_ids":[52307357958408]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Klar","public_title":"Apple \/ iPhone 17 Pro Max \/ Klar","options":["Apple","iPhone 17 Pro Max","Klar"],"price":1999,"weight":110,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465576","featured_media":{"alt":null,"id":58832430301448,"position":103,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307359957256,"title":"Apple \/ iPhone 17 Pro Max \/ Matt","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Matt","sku":"SE0-F1202-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448846336264,"product_id":10057764733192,"position":104,"created_at":"2025-09-01T09:26:26+02:00","updated_at":"2025-09-01T09:26:30+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","variant_ids":[52307359957256]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Matt","public_title":"Apple \/ iPhone 17 Pro Max \/ Matt","options":["Apple","iPhone 17 Pro Max","Matt"],"price":2299,"weight":120,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465644","featured_media":{"alt":null,"id":58832458383624,"position":110,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52307360055560,"title":"Apple \/ iPhone 17 Pro Max \/ Privacy","option1":"Apple","option2":"iPhone 17 Pro Max","option3":"Privacy","sku":"SE0-F1212-0616-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71448853545224,"product_id":10057764733192,"position":105,"created_at":"2025-09-01T09:26:33+02:00","updated_at":"2025-09-01T09:26:38+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","variant_ids":[52307360055560]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Apple \/ iPhone 17 Pro Max \/ Privacy","public_title":"Apple \/ iPhone 17 Pro Max \/ Privacy","options":["Apple","iPhone 17 Pro Max","Privacy"],"price":2499,"weight":130,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485465651","featured_media":{"alt":null,"id":58832465625352,"position":111,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296456700168,"title":"Samsung \/ Galaxy S24 \/ Klar","option1":"Samsung","option2":"Galaxy S24","option3":"Klar","sku":"SE0-F1201-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Klar","public_title":"Samsung \/ Galaxy S24 \/ Klar","options":["Samsung","Galaxy S24","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465866","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457748744,"title":"Samsung \/ Galaxy S24 \/ Matt","option1":"Samsung","option2":"Galaxy S24","option3":"Matt","sku":"SE0-F1202-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Matt","public_title":"Samsung \/ Galaxy S24 \/ Matt","options":["Samsung","Galaxy S24","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465873","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457814280,"title":"Samsung \/ Galaxy S24 \/ Privacy","option1":"Samsung","option2":"Galaxy S24","option3":"Privacy","sku":"SE0-F1212-0448-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 \/ Privacy","public_title":"Samsung \/ Galaxy S24 \/ Privacy","options":["Samsung","Galaxy S24","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465897","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296457879816,"title":"Samsung \/ Galaxy S24 Plus \/ Klar","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Klar","sku":"SE0-F1201-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Klar","public_title":"Samsung \/ Galaxy S24 Plus \/ Klar","options":["Samsung","Galaxy S24 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465880","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458567944,"title":"Samsung \/ Galaxy S24 Plus \/ Matt","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Matt","sku":"SE0-F1202-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Matt","public_title":"Samsung \/ Galaxy S24 Plus \/ Matt","options":["Samsung","Galaxy S24 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465903","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458633480,"title":"Samsung \/ Galaxy S24 Plus \/ Privacy","option1":"Samsung","option2":"Galaxy S24 Plus","option3":"Privacy","sku":"SE0-F1212-0449-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Plus \/ Privacy","public_title":"Samsung \/ Galaxy S24 Plus \/ Privacy","options":["Samsung","Galaxy S24 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465910","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296458699016,"title":"Samsung \/ Galaxy S24 Ultra \/ Klar","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Klar","sku":"SE0-F1201-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Klar","public_title":"Samsung \/ Galaxy S24 Ultra \/ Klar","options":["Samsung","Galaxy S24 Ultra","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465927","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477049096,"title":"Samsung \/ Galaxy S24 Ultra \/ Matt","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Matt","sku":"SE0-F1202-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Matt","public_title":"Samsung \/ Galaxy S24 Ultra \/ Matt","options":["Samsung","Galaxy S24 Ultra","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465934","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477114632,"title":"Samsung \/ Galaxy S24 Ultra \/ Privacy","option1":"Samsung","option2":"Galaxy S24 Ultra","option3":"Privacy","sku":"SE0-F1212-0450-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S24 Ultra \/ Privacy","public_title":"Samsung \/ Galaxy S24 Ultra \/ Privacy","options":["Samsung","Galaxy S24 Ultra","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465941","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296477147400,"title":"Samsung \/ Galaxy S25 \/ Klar","option1":"Samsung","option2":"Galaxy S25","option3":"Klar","sku":"SE0-F1201-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Klar","public_title":"Samsung \/ Galaxy S25 \/ Klar","options":["Samsung","Galaxy S25","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465958","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479113480,"title":"Samsung \/ Galaxy S25 \/ Matt","option1":"Samsung","option2":"Galaxy S25","option3":"Matt","sku":"SE0-F1202-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Matt","public_title":"Samsung \/ Galaxy S25 \/ Matt","options":["Samsung","Galaxy S25","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465965","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479146248,"title":"Samsung \/ Galaxy S25 \/ Privacy","option1":"Samsung","option2":"Galaxy S25","option3":"Privacy","sku":"SE0-F1212-0575-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 \/ Privacy","public_title":"Samsung \/ Galaxy S25 \/ Privacy","options":["Samsung","Galaxy S25","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465972","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296479244552,"title":"Samsung \/ Galaxy S25 Plus \/ Klar","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Klar","sku":"SE0-F1201-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Klar","public_title":"Samsung \/ Galaxy S25 Plus \/ Klar","options":["Samsung","Galaxy S25 Plus","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465989","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481014024,"title":"Samsung \/ Galaxy S25 Plus \/ Matt","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Matt","sku":"SE0-F1202-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Matt","public_title":"Samsung \/ Galaxy S25 Plus \/ Matt","options":["Samsung","Galaxy S25 Plus","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485465996","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481046792,"title":"Samsung \/ Galaxy S25 Plus \/ Privacy","option1":"Samsung","option2":"Galaxy S25 Plus","option3":"Privacy","sku":"SE0-F1212-0576-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Plus \/ Privacy","public_title":"Samsung \/ Galaxy S25 Plus \/ Privacy","options":["Samsung","Galaxy S25 Plus","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466009","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296481079560,"title":"Samsung \/ Galaxy S25 Ultra \/ Klar","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Klar","sku":"SE0-F1201-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Klar","public_title":"Samsung \/ Galaxy S25 Ultra \/ Klar","options":["Samsung","Galaxy S25 Ultra","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466016","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296528953608,"title":"Samsung \/ Galaxy S25 Ultra \/ Matt","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Matt","sku":"SE0-F1202-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Matt","public_title":"Samsung \/ Galaxy S25 Ultra \/ Matt","options":["Samsung","Galaxy S25 Ultra","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466023","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52296528986376,"title":"Samsung \/ Galaxy S25 Ultra \/ Privacy","option1":"Samsung","option2":"Galaxy S25 Ultra","option3":"Privacy","sku":"SE0-F1212-0577-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":71359379570952,"product_id":10057764733192,"position":88,"created_at":"2025-08-29T12:19:34+02:00","updated_at":"2025-08-29T12:19:39+02:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","variant_ids":[52296456700168,52296457748744,52296457814280,52296457879816,52296458567944,52296458633480,52296458699016,52296477049096,52296477114632,52296477147400,52296479113480,52296479146248,52296479244552,52296481014024,52296481046792,52296481079560,52296528953608,52296528986376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Samsung \/ Galaxy S25 Ultra \/ Privacy","public_title":"Samsung \/ Galaxy S25 Ultra \/ Privacy","options":["Samsung","Galaxy S25 Ultra","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"deny","barcode":"4262485466030","featured_media":{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518062856,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Klar","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Klar","sku":"SE0-F1201-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976806142216,"product_id":10057764733192,"position":129,"created_at":"2025-11-28T11:51:04+01:00","updated_at":"2025-11-28T11:51:09+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","variant_ids":[52883518062856]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Klar","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Klar","options":["Google","Pixel 9 \/ 9 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466542","featured_media":{"alt":null,"id":62275322216712,"position":136,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518259464,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Matt","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Matt","sku":"SE0-F1202-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976810467592,"product_id":10057764733192,"position":130,"created_at":"2025-11-28T11:51:12+01:00","updated_at":"2025-11-28T11:51:16+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","variant_ids":[52883518259464]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Matt","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Matt","options":["Google","Pixel 9 \/ 9 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466559","featured_media":{"alt":null,"id":62275325362440,"position":137,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883517899016,"title":"Google \/ Pixel 9 \/ 9 Pro \/ Privacy","option1":"Google","option2":"Pixel 9 \/ 9 Pro","option3":"Privacy","sku":"SE0-F1212-0520-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976804307208,"product_id":10057764733192,"position":128,"created_at":"2025-11-28T11:50:56+01:00","updated_at":"2025-11-28T11:51:01+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","variant_ids":[52883517899016]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 \/ 9 Pro \/ Privacy","public_title":"Google \/ Pixel 9 \/ 9 Pro \/ Privacy","options":["Google","Pixel 9 \/ 9 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466535","featured_media":{"alt":null,"id":62275320381704,"position":135,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518292232,"title":"Google \/ Pixel 9 Pro XL \/ Klar","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Klar","sku":"SE0-F1201-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976823410952,"product_id":10057764733192,"position":131,"created_at":"2025-11-28T11:51:19+01:00","updated_at":"2025-11-28T11:51:24+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","variant_ids":[52883518292232]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Klar","public_title":"Google \/ Pixel 9 Pro XL \/ Klar","options":["Google","Pixel 9 Pro XL","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466566","featured_media":{"alt":null,"id":62275334930696,"position":138,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518554376,"title":"Google \/ Pixel 9 Pro XL \/ Matt","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Matt","sku":"SE0-F1202-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976843661576,"product_id":10057764733192,"position":132,"created_at":"2025-11-28T11:51:31+01:00","updated_at":"2025-11-28T11:51:35+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","variant_ids":[52883518554376]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Matt","public_title":"Google \/ Pixel 9 Pro XL \/ Matt","options":["Google","Pixel 9 Pro XL","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466573","featured_media":{"alt":null,"id":62275358425352,"position":139,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518587144,"title":"Google \/ Pixel 9 Pro XL \/ Privacy","option1":"Google","option2":"Pixel 9 Pro XL","option3":"Privacy","sku":"SE0-F1212-0521-24-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976858800392,"product_id":10057764733192,"position":133,"created_at":"2025-11-28T11:51:39+01:00","updated_at":"2025-11-28T11:51:44+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","variant_ids":[52883518587144]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 9 Pro XL \/ Privacy","public_title":"Google \/ Pixel 9 Pro XL \/ Privacy","options":["Google","Pixel 9 Pro XL","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466580","featured_media":{"alt":null,"id":62275372876040,"position":140,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883518685448,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Klar","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Klar","sku":"SE0-F1201-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976872792328,"product_id":10057764733192,"position":134,"created_at":"2025-11-28T11:51:47+01:00","updated_at":"2025-11-28T11:51:51+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","variant_ids":[52883518685448]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Klar","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Klar","options":["Google","Pixel 10 \/ 10 Pro","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466597","featured_media":{"alt":null,"id":62275387556104,"position":141,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536740616,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Matt","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Matt","sku":"SE0-F1202-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976893534472,"product_id":10057764733192,"position":135,"created_at":"2025-11-28T11:52:00+01:00","updated_at":"2025-11-28T11:52:04+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","variant_ids":[52883536740616]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Matt","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Matt","options":["Google","Pixel 10 \/ 10 Pro","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466603","featured_media":{"alt":null,"id":62275408199944,"position":142,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536806152,"title":"Google \/ Pixel 10 \/ 10 Pro \/ Privacy","option1":"Google","option2":"Pixel 10 \/ 10 Pro","option3":"Privacy","sku":"SE0-F1212-0610-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976896123144,"product_id":10057764733192,"position":136,"created_at":"2025-11-28T11:52:07+01:00","updated_at":"2025-11-28T11:52:11+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","variant_ids":[52883536806152]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 \/ 10 Pro \/ Privacy","public_title":"Google \/ Pixel 10 \/ 10 Pro \/ Privacy","options":["Google","Pixel 10 \/ 10 Pro","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466610","featured_media":{"alt":null,"id":62275410755848,"position":143,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883536871688,"title":"Google \/ Pixel 10 Pro XL \/ Klar","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Klar","sku":"SE0-F1201-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976901824776,"product_id":10057764733192,"position":137,"created_at":"2025-11-28T11:52:14+01:00","updated_at":"2025-11-28T11:52:19+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","variant_ids":[52883536871688]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Klar","public_title":"Google \/ Pixel 10 Pro XL \/ Klar","options":["Google","Pixel 10 Pro XL","Klar"],"price":1999,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466627","featured_media":{"alt":null,"id":62275415179528,"position":144,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883658375432,"title":"Google \/ Pixel 10 Pro XL \/ Matt","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Matt","sku":"SE0-F1202-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":75210927309064,"product_id":10057764733192,"position":139,"created_at":"2025-12-04T15:33:47+01:00","updated_at":"2025-12-04T15:33:52+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832","variant_ids":[52883658375432]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Matt","public_title":"Google \/ Pixel 10 Pro XL \/ Matt","options":["Google","Pixel 10 Pro XL","Matt"],"price":2299,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466634","featured_media":{"alt":null,"id":62500093821192,"position":146,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52883537789192,"title":"Google \/ Pixel 10 Pro XL \/ Privacy","option1":"Google","option2":"Pixel 10 Pro XL","option3":"Privacy","sku":"SE0-F1212-0611-25-M","requires_shipping":true,"taxable":true,"featured_image":{"id":74976906412296,"product_id":10057764733192,"position":138,"created_at":"2025-11-28T11:52:24+01:00","updated_at":"2025-11-28T11:52:29+01:00","alt":null,"width":3000,"height":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","variant_ids":[52883537789192]},"available":true,"name":"se® noglass - der unzerbrechliche Displayschutz - Google \/ Pixel 10 Pro XL \/ Privacy","public_title":"Google \/ Pixel 10 Pro XL \/ Privacy","options":["Google","Pixel 10 Pro XL","Privacy"],"price":2499,"weight":160,"compare_at_price":0,"inventory_quantity":35,"inventory_management":"shopify","inventory_policy":"continue","barcode":"4262485466641","featured_media":{"alt":null,"id":62275419308296,"position":145,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713","\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934","\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941","\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943","\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943","\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947","\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"],"featured_image":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","options":["Marke","Modell","Variante"],"media":[{"alt":null,"id":53688413159688,"position":1,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2.jpg?v=1743087649","width":3000},{"alt":null,"id":53290362962184,"position":2,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/kratzfest.jpg?v=1743087649","width":1500},{"alt":null,"id":53290363027720,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/easy-system.jpg?v=1743087649","width":1500},{"alt":null,"id":53290363486472,"position":4,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/look-feel-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53290364174600,"position":5,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/besser-als-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53290365550856,"position":6,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/unzerstoerbar.jpg?v=1743087649","width":1500},{"alt":null,"id":53290365583624,"position":7,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/perfekte-abdeckung.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676206856,"position":8,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676239624,"position":9,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676305160,"position":10,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676337928,"position":11,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676370696,"position":12,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2.jpg?v=1743087649","width":3000},{"alt":null,"id":53668676469000,"position":13,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung.jpg?v=1743087649","width":1500},{"alt":null,"id":53668676632840,"position":14,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest.jpg?v=1743087649","width":1500},{"alt":null,"id":53688426627336,"position":15,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt.jpg?v=1743058731","width":3000},{"alt":null,"id":53688427577608,"position":16,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy.jpg?v=1743058735","width":3000},{"alt":null,"id":53668713103624,"position":17,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/aded974ac14f45e799a1c133f50a28ff.thumbnail.0000000000.jpg?v=1742973895"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.SD-480p-1.0Mbps-44846011.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.HD-1080p-3.3Mbps-44846011.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.HD-720p-2.1Mbps-44846011.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/aded974ac14f45e799a1c133f50a28ff\/aded974ac14f45e799a1c133f50a28ff.m3u8?v=0","width":1080}]},{"alt":null,"id":53668752130312,"position":18,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_836dbce1-e4f4-4ee3-a501-f6c9f616acd0.jpg?v=1743058678","width":1500},{"alt":null,"id":53668752228616,"position":19,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0f4ad6-d855-4bdb-9097-d930defd32ec.jpg?v=1743058671","width":1500},{"alt":null,"id":53668752261384,"position":20,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt.jpg?v=1743058663","width":1500},{"alt":null,"id":53668752359688,"position":21,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt.jpg?v=1743058658","width":3000},{"alt":null,"id":53668752326920,"position":22,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_bdc79170-483a-4552-bf52-eba724f52c07.jpg?v=1743058651","width":1500},{"alt":null,"id":53668752392456,"position":23,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_484e00eb-be67-4040-a986-0660868703db.jpg?v=1743058646","width":1500},{"alt":null,"id":53668752425224,"position":24,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_335f630f-98f4-4046-ad57-874b96c86603.jpg?v=1743058641","width":1500},{"alt":null,"id":53668754096392,"position":25,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/d5305e0e43cf44898908f99ca1778315.thumbnail.0000000000.jpg?v=1742974103"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.SD-480p-1.0Mbps-44846177.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.HD-1080p-3.3Mbps-44846177.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.HD-720p-2.1Mbps-44846177.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/d5305e0e43cf44898908f99ca1778315\/d5305e0e43cf44898908f99ca1778315.m3u8?v=0","width":1080}]},{"alt":null,"id":53668774609160,"position":26,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_e24e65d1-be60-4e79-918a-ba4f1b4e9217.jpg?v=1743058634","width":1500},{"alt":null,"id":53668774641928,"position":27,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy.jpg?v=1743058628","width":1500},{"alt":null,"id":53668774674696,"position":28,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_381ea29f-2de5-49ef-bb17-6c7fd6327893.jpg?v=1743058628","width":1500},{"alt":null,"id":53668774707464,"position":29,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_e79f2894-cd82-4d9f-98cd-8f56c414bab0.jpg?v=1743058622","width":1500},{"alt":null,"id":53668774740232,"position":30,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_fec26caa-0d20-4ec1-bdf8-6a0fa5b5f03e.jpg?v=1743058622","width":1500},{"alt":null,"id":53668774805768,"position":31,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_c1d358b0-5511-4dde-b9bf-0b4224e7f346.jpg?v=1743058618","width":1500},{"alt":null,"id":53668775985416,"position":32,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy.jpg?v=1743058618","width":3000},{"alt":null,"id":53668779688200,"position":33,"preview_image":{"aspect_ratio":1.0,"height":1080,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/b122125ad01340498fdc4b2b41c71b3f.thumbnail.0000000000.jpg?v=1742974230"},"aspect_ratio":1.0,"duration":13010,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.SD-480p-1.0Mbps-44846287.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.HD-1080p-3.3Mbps-44846287.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.HD-720p-2.1Mbps-44846287.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/b122125ad01340498fdc4b2b41c71b3f\/b122125ad01340498fdc4b2b41c71b3f.m3u8?v=0","width":1080}]},{"alt":null,"id":53668783423752,"position":34,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/07338a506c5a4f1f801144fd70943f7d.thumbnail.0000000000.jpg?v=1742974259"},"aspect_ratio":0.563,"duration":4960,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.SD-480p-1.2Mbps-44846308.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.HD-1080p-4.8Mbps-44846308.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.HD-720p-3.0Mbps-44846308.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/07338a506c5a4f1f801144fd70943f7d\/07338a506c5a4f1f801144fd70943f7d.m3u8?v=0","width":606}]},{"alt":null,"id":53668799578376,"position":35,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/792a28b8b5b245d29aa0c176ce4d4505.thumbnail.0000000000.jpg?v=1742974329"},"aspect_ratio":0.563,"duration":5920,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.SD-480p-1.2Mbps-44846370.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.HD-1080p-4.8Mbps-44846370.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.HD-720p-3.0Mbps-44846370.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/792a28b8b5b245d29aa0c176ce4d4505\/792a28b8b5b245d29aa0c176ce4d4505.m3u8?v=0","width":606}]},{"alt":null,"id":53668815175944,"position":36,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/0c71024a93ea40738766822e3d5914e1.thumbnail.0000000000.jpg?v=1742974391"},"aspect_ratio":0.563,"duration":5340,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.SD-480p-1.2Mbps-44846413.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.HD-1080p-4.8Mbps-44846413.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.HD-720p-3.0Mbps-44846413.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/0c71024a93ea40738766822e3d5914e1\/0c71024a93ea40738766822e3d5914e1.m3u8?v=0","width":606}]},{"alt":null,"id":53688601379080,"position":37,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_84940967-0ed2-4223-9c56-182727b1c9f1.jpg?v=1743059520","width":1500},{"alt":null,"id":53688601411848,"position":38,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_99ba97ca-cb1b-4389-9347-7acbfee852fa.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601444616,"position":39,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_8578e8ee-84bf-44c0-963e-b70693287327.jpg?v=1743059521","width":1500},{"alt":null,"id":53688601477384,"position":40,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_f1009040-1e98-4ff0-a090-57cf86eb66c5.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601510152,"position":41,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_916cffcf-209d-4140-8c5a-c86f858cfba0.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601575688,"position":42,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_534c8e70-57a3-4f5b-9e45-68ed878689f5.jpg?v=1743059522","width":1500},{"alt":null,"id":53688601805064,"position":43,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_v2_f34f265d-7fae-44d1-a734-2faf234e9629.jpg?v=1743059523","width":3000},{"alt":null,"id":53688609341704,"position":44,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_8e617755-8bec-4688-89f6-33c07fb66bb4.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609374472,"position":45,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_4d7a626e-70ed-4d11-923a-0eb5adb87b67.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609440008,"position":46,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_dfddbce3-76e8-4fb8-8a43-ba770acf0b24.jpg?v=1743059556","width":1500},{"alt":null,"id":53688609407240,"position":47,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_9d9de3dc-0069-4aae-b35d-572e1a25adc3.jpg?v=1743059555","width":1500},{"alt":null,"id":53688609505544,"position":48,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_5f2d709a-eef3-4a81-b980-e9741b87f1e6.jpg?v=1743059556","width":1500},{"alt":null,"id":53688609669384,"position":49,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_944dce74-bb6a-4db5-86e0-69bb72ae3f62.jpg?v=1743059557","width":1500},{"alt":null,"id":53688609964296,"position":50,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_matt_9926ad24-72da-4521-ae50-8e0115d7a492.jpg?v=1743059560","width":3000},{"alt":null,"id":53688614158600,"position":51,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_679e2b1b-a2ee-4dd3-a6d4-7d208b2d3920.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614191368,"position":52,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_2f61655b-d517-4284-8d94-7b834bdb9e15.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614224136,"position":53,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_d351053f-e767-4bf3-a994-1e59b7888a4c.jpg?v=1743059584","width":1500},{"alt":null,"id":53688614584584,"position":54,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_eefc7fa7-fe20-4e26-9042-d06d4d2f340f.jpg?v=1743059585","width":1500},{"alt":null,"id":53688615108872,"position":55,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_0e9a3455-47b6-456b-aff8-4704d093dd8e.jpg?v=1743059586","width":1500},{"alt":null,"id":53688615141640,"position":56,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_637c00f9-9c63-4476-940d-8f3a3405a519.jpg?v=1743059585","width":1500},{"alt":null,"id":53688615207176,"position":57,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacy_a378cdc6-94ab-445a-9858-8aa2c9740362.jpg?v=1743059588","width":3000},{"alt":null,"id":58473920594184,"position":58,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_5bc624c2-a7cf-460c-bedc-3b8eb37c1ae0.jpg?v=1755859778","width":1500},{"alt":null,"id":58473923117320,"position":59,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_7b071838-d52f-4c70-b477-971988f40dd9.jpg?v=1755859787","width":1500},{"alt":null,"id":58473923182856,"position":60,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_2f57a682-a099-4d1d-815b-e0e1496d117e.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923215624,"position":61,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_3ea1b37d-7ae4-44a9-a6d7-9a28b1490b17.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923477768,"position":62,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_8a03da69-7c07-40c6-a222-2415ed250440.jpg?v=1755859788","width":1500},{"alt":null,"id":58473923510536,"position":63,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_afe34a5d-502a-4f0c-a36c-7758268ce2c7.jpg?v=1755859789","width":1500},{"alt":null,"id":58473924559112,"position":64,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_e6508145-7d5c-405b-bf58-07652d71a544.jpg?v=1755859791","width":3000},{"alt":null,"id":58473937797384,"position":65,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_58753a74-a20f-4d25-b46a-a541031c43dc.jpg?v=1755859832","width":1500},{"alt":null,"id":58473938190600,"position":66,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_a1ba2728-026a-4b2b-a829-eec528f9b3b3.jpg?v=1755859834","width":1500},{"alt":null,"id":58473939796232,"position":67,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_998be7ca-60d3-4c93-aa7d-b4cd348fd994.jpg?v=1755859837","width":1500},{"alt":null,"id":58473940156680,"position":68,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-matt_03c60c22-9844-4d5b-a8cd-e19b3bac8a67.jpg?v=1755859839","width":1500},{"alt":null,"id":58473940222216,"position":69,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_fe89b65a-33fa-4d03-b0a4-b0d9e9e24339.jpg?v=1755859840","width":1500},{"alt":null,"id":58473940189448,"position":70,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_mattv2.jpg?v=1755859839","width":3000},{"alt":null,"id":58473940484360,"position":71,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_82aeaedb-3102-4747-b453-1308bf14bbd8.jpg?v=1755859840","width":1500},{"alt":null,"id":58473945366792,"position":72,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_privacyv2.jpg?v=1755859868","width":3000},{"alt":null,"id":58473945596168,"position":73,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_0acb5e74-9c77-47f7-9db3-7296587915f8.jpg?v=1755859868","width":1500},{"alt":null,"id":58473947005192,"position":74,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1a0e9727-544a-46ec-9f52-b392fe6ef14e.jpg?v=1755859873","width":1500},{"alt":null,"id":58473947103496,"position":75,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas-privacy_8d028317-f9fc-49ee-b4f1-873ef7b1fbb4.jpg?v=1755859874","width":1500},{"alt":null,"id":58473947463944,"position":76,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_11a60216-04a9-4dc9-9c13-1b46a2d1a157.jpg?v=1755859874","width":1500},{"alt":null,"id":58473947529480,"position":77,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_210a5440-b1b8-4871-9c45-f6c11846590d.jpg?v=1755859875","width":1500},{"alt":null,"id":58473947595016,"position":78,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_480be7a1-181e-467d-8a47-358aec3ca1d9.jpg?v=1755859875","width":1500},{"alt":null,"id":58709903442184,"position":79,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309648.jpg?v=1756375417","width":3000},{"alt":null,"id":58710772744456,"position":80,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309578.jpg?v=1756378110","width":3000},{"alt":null,"id":58711047241992,"position":81,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309718.jpg?v=1756378572","width":3000},{"alt":null,"id":58743261036808,"position":82,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-309800.jpg?v=1756462670","width":3000},{"alt":null,"id":58743270441224,"position":83,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-309870.jpg?v=1756462678","width":3000},{"alt":null,"id":58743281320200,"position":84,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-309940.jpg?v=1756462688","width":3000},{"alt":null,"id":58743292920072,"position":85,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310010.jpg?v=1756462698","width":3000},{"alt":null,"id":58743299145992,"position":86,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310080.jpg?v=1756462706","width":3000},{"alt":null,"id":58743310713096,"position":87,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310150.jpg?v=1756462715","width":3000},{"alt":null,"id":58743322804488,"position":88,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310220.jpg?v=1756462724","width":3000},{"alt":null,"id":58743330078984,"position":89,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310290.jpg?v=1756462732","width":3000},{"alt":null,"id":58743341285640,"position":90,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310360.jpg?v=1756462741","width":3000},{"alt":null,"id":58743353770248,"position":91,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310430.jpg?v=1756462751","width":3000},{"alt":null,"id":58743368548616,"position":92,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310500.jpg?v=1756462761","width":3000},{"alt":null,"id":58743374971144,"position":93,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310570.jpg?v=1756462769","width":3000},{"alt":null,"id":58743378149640,"position":94,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310640.jpg?v=1756462779","width":3000},{"alt":null,"id":58743380836616,"position":95,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310710.jpg?v=1756462790","width":3000},{"alt":null,"id":58743381917960,"position":96,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310780.jpg?v=1756462797","width":3000},{"alt":null,"id":58743631741192,"position":97,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-310850.jpg?v=1756463771","width":3000},{"alt":null,"id":58743636951304,"position":98,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-310920.jpg?v=1756463779","width":3000},{"alt":null,"id":58743643537672,"position":99,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-310990.jpg?v=1756463789","width":3000},{"alt":null,"id":58832422895880,"position":100,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311696.jpg?v=1756711497","width":3000},{"alt":null,"id":58832425681160,"position":101,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311766.jpg?v=1756711505","width":3000},{"alt":null,"id":58832427385096,"position":102,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311836.jpg?v=1756711515","width":3000},{"alt":null,"id":58832430301448,"position":103,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-311906.jpg?v=1756711525","width":3000},{"alt":null,"id":58832438100232,"position":104,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-311976.jpg?v=1756711533","width":3000},{"alt":null,"id":58832442097928,"position":105,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312256.jpg?v=1756711543","width":3000},{"alt":null,"id":58832445702408,"position":106,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312046.jpg?v=1756711553","width":3000},{"alt":null,"id":58832448061704,"position":107,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312326.jpg?v=1756711561","width":3000},{"alt":null,"id":58832452780296,"position":108,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312116.jpg?v=1756711571","width":3000},{"alt":null,"id":58832455500040,"position":109,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312396.jpg?v=1756711580","width":3000},{"alt":null,"id":58832458383624,"position":110,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-312186.jpg?v=1756711590","width":3000},{"alt":null,"id":58832465625352,"position":111,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-312466.jpg?v=1756711598","width":3000},{"alt":null,"id":61862847873288,"position":112,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1_-_noglass-hero-2025_81e457a5-e8ef-4ce9-a080-8fe8f7fd5654.jpg?v=1763130713","width":3000},{"alt":null,"id":61862926975240,"position":113,"preview_image":{"aspect_ratio":1.0,"height":1280,"width":1280,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/preview_images\/e1c4bac856ee47439f36378cd3372db5.thumbnail.0000000000.jpg?v=1763130906"},"aspect_ratio":1.0,"duration":6660,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.SD-480p-0.9Mbps-62736999.mp4?v=0","width":480},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.HD-1080p-2.5Mbps-62736999.mp4?v=0","width":1080},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.HD-720p-1.6Mbps-62736999.mp4?v=0","width":720},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/smart-engineered.com\/cdn\/shop\/videos\/c\/vp\/e1c4bac856ee47439f36378cd3372db5\/e1c4bac856ee47439f36378cd3372db5.m3u8?v=0","width":1080}]},{"alt":null,"id":61862991724808,"position":114,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/2_-_besser-als-glas_1c60ced6-f5ac-43d2-bbc1-b41d54261ec3.jpg?v=1763130934","width":1500},{"alt":null,"id":61862995558664,"position":115,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/3_-_look-feel-glas_2039cef1-1b36-49b4-9bb5-beebabb890de.jpg?v=1763130941","width":1500},{"alt":null,"id":61862996443400,"position":116,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/7_-_perfekte-abdeckung_7948b5c5-9539-4f36-857a-8acee26d4b03.jpg?v=1763130943","width":1500},{"alt":null,"id":61862996869384,"position":117,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/6_-_kratzfest_ac1e4ec3-29c6-44db-8d3e-422ec6df9c0a.jpg?v=1763130943","width":1500},{"alt":null,"id":61862998835464,"position":118,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/5_-_easy-system_4be48646-ac10-48f6-84e2-5113782d1fa4.jpg?v=1763130947","width":1500},{"alt":null,"id":61862999392520,"position":119,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/4_-_unzerstoerbar_8428b721-5dbb-46dc-8d1f-20c18005ba0b.jpg?v=1763130949","width":1500},{"alt":null,"id":62154740826376,"position":120,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316675.jpg?v=1763969005","width":3000},{"alt":null,"id":62154742825224,"position":121,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316690.jpg?v=1763969012","width":3000},{"alt":null,"id":62154744070408,"position":122,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316718.jpg?v=1763969020","width":3000},{"alt":null,"id":62154745053448,"position":123,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316746.jpg?v=1763969027","width":3000},{"alt":null,"id":62154746265864,"position":124,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316774.jpg?v=1763969039","width":3000},{"alt":null,"id":62154747445512,"position":125,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316824.jpg?v=1763969047","width":3000},{"alt":null,"id":62154750525704,"position":126,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316858.jpg?v=1763969060","width":3000},{"alt":null,"id":62154753605896,"position":127,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316886.jpg?v=1763969069","width":3000},{"alt":null,"id":62154755244296,"position":128,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316914.jpg?v=1763969076","width":3000},{"alt":null,"id":62154756849928,"position":129,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316955.jpg?v=1763969088","width":3000},{"alt":null,"id":62154759307528,"position":130,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-316976.jpg?v=1763969094","width":3000},{"alt":null,"id":62154760454408,"position":131,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-316998.jpg?v=1763969102","width":3000},{"alt":null,"id":62154761371912,"position":132,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025matt-317026.jpg?v=1763969109","width":3000},{"alt":null,"id":62154762551560,"position":133,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacy-317054.jpg?v=1763969119","width":3000},{"alt":null,"id":62155251581192,"position":134,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2-316802.jpg?v=1763970954","width":3000},{"alt":null,"id":62275320381704,"position":135,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315573.jpg?v=1764327061","width":3000},{"alt":null,"id":62275322216712,"position":136,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315646.jpg?v=1764327069","width":3000},{"alt":null,"id":62275325362440,"position":137,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315703.jpg?v=1764327076","width":3000},{"alt":null,"id":62275334930696,"position":138,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315783.jpg?v=1764327084","width":3000},{"alt":null,"id":62275358425352,"position":139,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-315853.jpg?v=1764327095","width":3000},{"alt":null,"id":62275372876040,"position":140,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-315923.jpg?v=1764327104","width":3000},{"alt":null,"id":62275387556104,"position":141,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-315993.jpg?v=1764327111","width":3000},{"alt":null,"id":62275408199944,"position":142,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316063.jpg?v=1764327124","width":3000},{"alt":null,"id":62275410755848,"position":143,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316133.jpg?v=1764327131","width":3000},{"alt":null,"id":62275415179528,"position":144,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025v2jpg-316203.jpg?v=1764327139","width":3000},{"alt":null,"id":62275419308296,"position":145,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025privacyjpg-316343.jpg?v=1764327149","width":3000},{"alt":null,"id":62500093821192,"position":146,"preview_image":{"aspect_ratio":1.0,"height":3000,"width":3000,"src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832"},"aspect_ratio":1.0,"height":3000,"media_type":"image","src":"\/\/smart-engineered.com\/cdn\/shop\/files\/1-noglass-hero-2025mattjpg-316273.jpg?v=1764858832","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
productCollections: [{"id":512665649416,"handle":"alle-produkte","title":"Alle Produkte","updated_at":"2025-12-13T23:20:01+01:00","body_html":"","published_at":"2024-03-27T11:23:20+01:00","sort_order":"best-selling","template_suffix":"","disjunctive":false,"rules":[{"column":"variant_price","relation":"greater_than","condition":"0"},{"column":"type","relation":"not_equals","condition":"Bundle"}],"published_scope":"web"},{"id":521099739400,"handle":"displayschutz-kabel","title":"Displayschutz + Kabel","updated_at":"2025-12-13T23:20:01+01:00","body_html":"","published_at":"2024-09-17T09:43:42+02:00","sort_order":"alpha-asc","template_suffix":"","disjunctive":true,"rules":[{"column":"tag","relation":"equals","condition":"smartphone"},{"column":"tag","relation":"equals","condition":"ladekabel"}],"published_scope":"web"},{"id":480174211336,"handle":"displayschutz-fuer-smartphones","title":"Displayschutz für Smartphones","updated_at":"2025-12-13T23:20:01+01:00","body_html":"","published_at":"2022-08-25T09:54:28+02:00","sort_order":"best-selling","template_suffix":"","disjunctive":false,"rules":[{"column":"tag","relation":"equals","condition":"smartphone"},{"column":"type","relation":"not_equals","condition":"Bundle"},{"column":"type","relation":"not_equals","condition":"noglass"}],"published_scope":"web","image":{"created_at":"2023-10-28T10:12:23+02:00","alt":null,"width":1800,"height":300,"src":"\/\/smart-engineered.com\/cdn\/shop\/collections\/1698480741_1672313391_1663061418_1662374408_buehne-blau_a59010ae-816f-49c7-b0aa-428ad6555467.png?v=1712662108"}},{"id":481159577864,"handle":"enspiegelte-matte-schutzfolien-fur-dein-display","title":"Enspiegelte \/ Matte Schutzfolien für Dein Display.","updated_at":"2025-12-13T23:20:01+01:00","body_html":"Unsere matte Antireflex-Schutzfolie für Displays bietet viele Vorteile, darunter die Verringerung der Blendung durch Umgebungslicht und die Reduzierung von Reflexionen von nahe gelegenen Objekten, was die Sichtbarkeit und Lesbarkeit verbessert. Es hilft auch, das Display vor Kratzern und Staub zu schützen und sorgt für ein gleichmäßigeres Seherlebnis. Darüber hinaus kann es auch dazu beitragen, das Kontrastverhältnis des Displays zu verbessern, indem die Lichtreflexion reduziert wird, was zu einem klareren und lebendigeren Bild führt.","published_at":"2022-10-12T09:53:28+02:00","sort_order":"best-selling","template_suffix":"gem-1661505815-template","disjunctive":false,"rules":[{"column":"tag","relation":"equals","condition":"matt"}],"published_scope":"web","image":{"created_at":"2023-10-28T14:36:21+02:00","alt":null,"width":1800,"height":300,"src":"\/\/smart-engineered.com\/cdn\/shop\/collections\/1698496580_1698480752_1672648193_buehne-blau_374bb919-bf5d-4f74-a8dc-fde5e74d25b5.png?v=1698496582"}},{"id":172706201684,"handle":"newest-products","title":"Newest Products","updated_at":"2025-12-13T23:20:01+01:00","body_html":null,"published_at":"2020-08-12T15:31:03+02:00","sort_order":"created-desc","template_suffix":null,"disjunctive":true,"rules":[{"column":"title","relation":"contains","condition":"Newest"},{"column":"title","relation":"not_contains","condition":"Newest"}],"published_scope":"web"},{"id":553973219592,"handle":"noglass","title":"Noglass","updated_at":"2025-12-13T23:20:01+01:00","body_html":"","published_at":"2025-08-15T10:43:59+02:00","sort_order":"best-selling","template_suffix":"","disjunctive":false,"rules":[{"column":"tag","relation":"equals","condition":"noglass"},{"column":"title","relation":"not_contains","condition":"DRAFT COPY"}],"published_scope":"web"}],
};
window.essentialProductId = 10057764733192
window.essentialProductTags = ["klar","matt","noglass","privacy","smartphone"]
window.essentialCollectionId = null
window.essentialCountdownTimerPageTemplate = "product.se-noglass"
.essential-countdown-timer-img-reset {
/* wipe common globals */
box-sizing: content-box;
display: inline;
width: auto;
height: auto;
max-width: none;
max-height: none;
margin: 0;
padding: 0;
border: none;
border-radius: 0;
box-shadow: none;
background: none;
object-fit: fill;
object-position: 50% 50%;
filter: none;
opacity: 1;
position: static;
float: none;
clear: none;
vertical-align: baseline;
transform: none;
transition: none;
animation: none;
/* typography sometimes leaks via universal selectors */
font: inherit;
line-height: normal;
letter-spacing: normal;
text-align: start;
}
.easysearch-hidden,.easysearch-hidden-item,.easysearch-holder .easysearch-preload-loader.easysearch-hidden{display:none!important}.easysearch-text-center{text-align:center!important}.easysearch-text-left{text-align:left!important}.easysearch-text-right{text-align:right!important}.easysearch-container{padding:20px}.easysearch-main-holder{display:flex;align-items:center;justify-content:center}.easysearch-logo-holder{font-size:0;line-height:0}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-icon-success,.easysearch-fitment-results:not(.easysearch-fitment-fail) .easysearch-fitment-icon-fail,.easysearch-fitment-widget .easysearch-clear-holder label,.easysearch-ft-hidden-page-row,.easysearch-garage-collapsed-title:empty,.easysearch-garage-opened-title:empty,.easysearch-garage-overlay-logo:empty,.easysearch-header-holder:empty,.easysearch-item-selector+*,.easysearch-item[data-tags],.easysearch-logo-holder:empty,.easysearch-vertical-mode .easysearch-btn-garage-holder label,.easysearch-vertical-mode .easysearch-btn-holder label,.easysearch-vertical-mode .easysearch-clear-holder label{display:none}.easysearch-logo{max-width:60px;max-height:60px;margin-right:20px}.easysearch-btn-holder,.easysearch-clear-holder,.easysearch-holder .easysearch-preload-loader,.easysearch-select-holder{display:inline-block!important;margin:0 6px 6px!important;text-align:left;vertical-align:top}.easysearch-btn-holder,.easysearch-select-holder-last{margin-right:18px!important}.easysearch-actions-holder{display:inline-block;position:relative;vertical-align:top}.easysearch-btn-holder label,.easysearch-clear-holder label,.easysearch-holder .easysearch-preload-loader label,.easysearch-select-holder label{overflow:hidden!important;margin:0 30px 0 0!important;font:400 13px/18px arial!important;font-family:inherit!important;white-space:nowrap!important}.easysearch-preload-loader>div{font-size:0}.easysearch-btn-garage,.easysearch-clear-holder a,.easysearch-select-holder select{display:block!important;overflow:hidden!important;width:100%!important;margin:0!important;font:400 13px/18px arial!important;font-family:inherit!important}.easysearch-select-holder select{padding:8px 4px 8px 8px;border:1px solid #c4cdd5;border-radius:3px;font:400 13px/20px arial!important;font-family:inherit!important;box-shadow:none;outline:0!important;appearance:auto}.easysearch-dark-mode .easysearch-select-holder select{background-color:#2e2e2e;border-color:#8a8a8a;color:#fff}.easysearch-btn-garage,.easysearch-clear-holder a{padding:8px 0!important}.easysearch-btn-garage>span{display:inline}@supports (-ms-ime-align:auto){.easysearch-select-holder select{cursor:default!important}}.easysearch-loading .easysearch-btn-holder,.easysearch-loading .easysearch-select-holder{opacity:.6}.easysearch-btn{display:inline-block!important;position:relative!important;padding:8px 15px!important;height:auto!important;border-radius:3px!important;cursor:pointer!important;box-sizing:border-box;user-select:none;-webkit-appearance:none;color:#fff;font:400 13px/20px arial!important;font-family:inherit!important;letter-spacing:normal!important;text-decoration:none!important;text-transform:none!important;white-space:nowrap!important}.easysearch-btn-holder .easysearch-btn{display:block!important}#easysearch-search[disabled],.easysearch-btn-garage[disabled],.easysearch-btn-search[disabled],.easysearch-select-holder select:disabled{opacity:.7}.easysearch-ft-header-holder.easysearch-active .easysearch-ft-header-actions,.easysearch-vertical-mode .easysearch-actions-holder,.easysearch-vertical-mode .easysearch-btn-garage-holder,.easysearch-vertical-mode .easysearch-main-holder{display:block}.easysearch-vertical-mode .easysearch-logo-holder{text-align:center}.easysearch-vertical-mode .easysearch-logo{margin:0 0 12px}.easysearch-vertical-mode .easysearch-holder{position:relative;text-align:left}.easysearch-vertical-mode .easysearch-holder .easysearch-select-holder{display:block!important;width:auto;margin:0 0 12px!important;clear:both!important}.easysearch-vertical-mode .easysearch-clear-holder{position:absolute;right:0}.easysearch-vertical-mode .easysearch-btn-holder,.easysearch-vertical-mode .easysearch-clear-holder,.easysearch-vertical-mode .easysearch-holder label{margin:0!important}.easysearch-vertical-mode .easysearch-holder .easysearch-preload-loader{position:absolute;top:50%;left:50%;margin:-18px 0 0 -12px!important}@media only screen and (max-width:400px){.easysearch-vertical-mode .easysearch-actions-holder{text-align:left}}.easysearch-fitment-widget{margin-bottom:20px}.easysearch-fitment-search-widget{padding:20px 0;border:1px solid #f3f3f2;border-width:1px 0}.easysearch-fitment-widget .easysearch-holder{text-align:left}.easysearch-fitment-loader,.easysearch-ft-loader{padding:12px 18px 8px;border:1px solid #f3f3f2;border-radius:4px}.easysearch-fitment-results{display:flex;padding:10px;border:1px solid #11ae66;border-radius:12px}.easysearch-fitment-results.easysearch-fitment-fail{border-color:#f4534d}.easysearch-fitment-results .easysearch-fitment-icon-holder{flex:0 0 50px}.easysearch-fitment-results .easysearch-fitment-icon-holder .easysearch-fitment-icon{display:flex;width:40px;height:40px;justify-content:center;align-items:center;background:#11ae66;border-radius:8px}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-icon-holder .easysearch-fitment-icon{background:#f4534d}.easysearch-fitment-results .easysearch-fitment-icon-holder .easysearch-fitment-icon svg{fill:white}.easysearch-fitment-widget .easysearch-fitment-header{margin:0 0 12px;padding:0;font-size:16px;line-height:19px;font-weight:700}.easysearch-fitment-results .easysearch-fitment-header{margin:0;color:#11ae66}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-header{color:#f4534d}.easysearch-fitment-results .easysearch-fitment-details{flex:1}.easysearch-fitment-results .easysearch-fitment-params{padding-right:5px}.easysearch-fitment-results .easysearch-fitment-change{vertical-align:top;color:#11ae66;font-size:14px;line-height:22px;cursor:pointer}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-change{color:#f4534d;text-decoration:underline}.easysearch-fitment-widget .easysearch-clear-holder>a{font-size:15px;line-height:36px;text-decoration:none}.easysearch-fitment-widget .easysearch-fitment-link{text-decoration:underline}.easysearch-fitment-widget .easysearch-fitment-text{vertical-align:top;font-size:15px;line-height:23px}.easysearch-fitment-other-results{padding-top:5px}.easysearch-ft-table-holder{overflow-x:auto}.easysearch-ft-table{min-width:100%;border-collapse:collapse}.easysearch-ft-table td,.easysearch-ft-table th,.easysearch-garage-overlay-actions .easysearch-btn{white-space:nowrap}.easysearch-ft-header-holder{display:flex;position:relative;text-align:left}.easysearch-ft-table:not(.easysearch-ft-table-quick-sort) .easysearch-ft-header-actions-holder{position:relative}.easysearch-ft-table-quick-sort .easysearch-ft-header-actions-holder{flex:1;display:flex;justify-content:space-between;align-items:center}.easysearch-ft-header-actions{display:none;position:absolute;z-index:5;background:#fff;border-radius:8px;box-shadow:2px 4px 10px 0 #0000001a;white-space:nowrap}.easysearch-ft-table-quick-sort .easysearch-ft-header-actions{top:100%;right:0;min-width:180px}.easysearch-ft-header-actions-icon{padding:0 8px;cursor:pointer}.easysearch-ft-header-actions-icon svg{transition:.3s}.easysearch-ft-table:not(.easysearch-ft-table-quick-sort) .easysearch-ft-header-holder.easysearch-active .easysearch-ft-header-actions-icon svg{transform:rotate(180deg)}.easysearch-ft-general-filter-holder{margin-bottom:8px}.easysearch-ft-column-filter-holder,.easysearch-ft-sort-holder{padding:8px 12px}.easysearch-ft-table-quick-sort .easysearch-ft-sort-holder{padding:0 8px}.easysearch-ft-sort{display:flex;gap:8px;align-items:center;cursor:pointer}.easysearch-ft-header-holder[data-order="1"] .easysearch-ft-sort-toggle svg path+path,.easysearch-ft-header-holder[data-order="2"] .easysearch-ft-sort-toggle svg path:first-child,.easysearch-ft-sort-asc svg path+path,.easysearch-ft-sort-desc svg path:first-child{opacity:.5}.easysearch-ft-holder .easysearch-ft-filter,.easysearch-ft-holder .easysearch-ft-per-page{padding:8px 12px;color:currentColor;border:1px solid #e5e5e5;border-radius:4px;font-size:13px;outline:0;box-shadow:none}.easysearch-ft-holder .easysearch-ft-filter{width:100%;padding-left:40px;background-position:12px 50%;background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 10C3.791 10 2 8.209 2 6C2 3.791 3.791 2 6 2C8.209 2 10 3.791 10 6C10 8.209 8.209 10 6 10ZM15.707 14.293L10.887 9.473C11.585 8.492 12 7.296 12 6C12 2.687 9.313 0 6 0C2.687 0 0 2.687 0 6C0 9.313 2.687 12 6 12C7.296 12 8.492 11.585 9.473 10.887L14.293 15.707C14.488 15.902 14.744 16 15 16C15.256 16 15.512 15.902 15.707 15.707C16.098 15.316 16.098 14.684 15.707 14.293Z' fill='%235C5F62'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:16px}.easysearch-ft-widget input[type=search]::-webkit-search-cancel-button:hover,.easysearch-ft-widget input[type=search]::-webkit-search-decoration:hover{cursor:pointer}.easysearch-ft-pagination-actions,.easysearch-ft-pagination-holder{display:flex;gap:8px 16px;flex-wrap:wrap;align-items:center}.easysearch-ft-pagination-holder{padding-top:8px;justify-content:space-between}.easysearch-ft-pagination-nav{display:flex;gap:4px;align-items:center}.easysearch-ft-nav-button,.easysearch-ft-nav-ellipses{display:block;height:30px;width:30px;border:1px solid transparent;border-radius:50%;line-height:30px;text-align:center}.easysearch-ft-nav-arrow{padding:4px}.easysearch-ft-nav-arrow,.easysearch-ft-nav-button{outline-offset:0;box-shadow:none;cursor:pointer}.easysearch-ft-nav-button:focus,.easysearch-ft-nav-button:hover,.easysearch-ft-nav-current{border-color:currentColor}.easysearch-ft-nav-arrow.easysearch-ft-nav-arrow-disabled{opacity:.5;pointer-events:none}.easysearch-garage-widget{--es-garage-color-bg:#fff;--es-garage-color-text:#222;--es-garage-color-accent:#4ac30a;--es-garage-color-border:#86868680;--es-garage-offset-top:100px;position:fixed;z-index:100;top:var(--es-garage-offset-top);right:0;width:333px;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-border);border-radius:0 0 0 12px;color:var(--es-garage-color-text);text-align:center;transform:translateX(100%);transition:.3s}.easysearch-garage-widget.easysearch-dark-mode{--es-garage-color-bg:#222;--es-garage-color-text:#fff;--es-garage-color-accent:#E1FFD0}.easysearch-garage-holder .easysearch-container,.easysearch-garage-widget .easysearch-container{padding:0}.easysearch-garage-widget .easysearch-widget{background:0 0}.easysearch-garage-content{display:flex;flex-direction:column;justify-content:center}.easysearch-garage-overlay{padding:16px 24px}.easysearch-garage-overlay-container{display:flex;gap:12px;align-items:center}.easysearch-garage-overlay-content{flex:1;display:flex;gap:12px;align-items:center;justify-content:space-between}.easysearch-garage-logo-holder,.easysearch-garage-overlay-logo{overflow:hidden;display:flex}.easysearch-garage-overlay-logo{min-width:20px;max-width:32px;max-height:32px}.easysearch-garage-logo-holder{max-width:20px;max-height:20px}.easysearch-garage-logo-holder img,.easysearch-garage-logo-holder svg,.easysearch-garage-overlay-logo img,.easysearch-garage-overlay-logo svg{width:auto;height:auto;max-width:100%;max-height:100%}.easysearch-garage-overlay-selected-values{font-weight:600}.easysearch-garage-widget.easysearch-garage-opened{transform:translateX(0)}.easysearch-garage-holder .easysearch-garage-subheading{margin-top:0}.easysearch-garage-holder .easysearch-garage-list-wrapper,.easysearch-garage-holder .easysearch-garage-select-wrapper{overflow-y:auto;max-height:calc(100vh - var(--es-garage-offset-top) - 80px);padding:30px}.easysearch-garage-holder .easysearch-garage-list-wrapper{display:flex;flex-direction:column}.easysearch-garage-holder .easysearch-garage-toggle{position:absolute;top:-1px;left:0;display:flex;min-width:56px;padding:8px 16px;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-border);border-bottom:none;border-radius:12px 12px 0 0;color:var(--es-garage-color-text);text-align:center;transform:rotate(-90deg) translate(-100%,-100%);transform-origin:top left;transition:width .3s}.easysearch-garage-widget.easysearch-garage-opened .easysearch-garage-toggle{width:56px}.easysearch-garage-holder .easysearch-garage-toggle::before{content:"";position:absolute;top:calc(100% - 2px);left:0;width:100%;height:4px;background-color:var(--es-garage-color-bg)}.easysearch-garage-btn-close,.easysearch-garage-btn-open{position:relative;display:flex;gap:12px;align-items:center;height:30px;width:100%;padding:0;background-color:transparent;border:none;color:var(--es-garage-color-text);opacity:1;cursor:pointer}.easysearch-garage-btn-open,.easysearch-garage-item-primary-selected-values{font-size:16px;font-weight:700}.easysearch-garage-btn-close{width:30px;font-size:0}.easysearch-garage-widget.easysearch-garage-opened .easysearch-garage-btn-open,.easysearch-garage-widget:not(.easysearch-garage-opened) .easysearch-garage-btn-close{position:absolute;z-index:-1;width:0;opacity:0}.easysearch-garage-collapsed-title,.easysearch-garage-opened-title{overflow:hidden;max-width:25ch;white-space:nowrap;text-overflow:ellipsis}.easysearch-garage-btn-close>span,.easysearch-garage-btn-open>span,.previewer-garage-btn-close svg,.previewer-garage-btn-open svg{display:inline-block;vertical-align:middle}.easysearch-garage-btn-open img{display:inline-block}.easysearch-garage-heading{margin-top:0;margin-bottom:16px;color:var(--es-garage-color-text);font-size:16px;font-weight:700;text-transform:uppercase}.easysearch-garage-subheading{margin-bottom:4px;color:var(--es-garage-color-text);font-size:16px;font-weight:500;line-height:1.3;opacity:.65}.easysearch-garage-actions-holder,.easysearch-garage-form-select+.easysearch-garage-btn{margin-top:16px}.easysearch-garage-holder .easysearch-actions-holder{display:flex;flex-direction:column;gap:8px}.easysearch-garage-holder .easysearch-btn-holder{width:100%;margin:0}.easysearch-garage-btn{display:inline-block;width:100%;min-height:auto;padding:8px 20px;margin:0;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-text);border-radius:6px;color:var(--es-garage-color-text);font-size:14px;font-weight:600;line-height:20px;white-space:normal;text-align:center;text-decoration:none;transition:.3s;cursor:pointer}.easysearch-garage-btn-primary{background-color:var(--es-garage-color-text);border:1px solid var(--es-garage-color-bg);color:var(--es-garage-color-bg)}.easysearch-garage-btn-primary:not([disabled]):hover{background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-text);color:var(--es-garage-color-text)}.easysearch-garage-form-select{position:relative;margin-top:8px}.easysearch-garage-item{position:relative;display:flex;justify-content:space-between;align-items:center;padding:16px;margin-top:12px;border:1px solid #8a8a8a;border-radius:12px;text-align:left;cursor:pointer}.easysearch-garage-item[data-selected="1"]{border:1px solid var(--es-garage-color-accent);outline:1px solid var(--es-garage-color-accent)}.easysearch-garage-item[data-selected="1"]::before{content:attr(data-selected-item-text);position:absolute;right:30px;top:-10px;display:block;overflow:hidden;max-width:calc(100% - 60px);padding:3px 6px;background-color:var(--es-garage-color-accent);border-radius:10px;color:var(--es-garage-color-bg);font-size:12px;font-weight:500;line-height:1;text-transform:capitalize;text-overflow:ellipsis;white-space:nowrap}.easysearch-garage-item .easysearch-garage-item-left{max-width:calc(100% - 30px)}.easysearch-garage-item-primary-selected-values,.easysearch-garage-item-secondary-selected-values{display:flex;gap:0 4px;flex-wrap:wrap}.easysearch-garage-item-primary-selected-values>span,.easysearch-garage-item-secondary-selected-values>span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.easysearch-garage-item-secondary-selected-values{font-size:14px;opacity:.65}.easysearch-garage-btn-delete{width:30px;height:30px;padding:0;margin-right:-8px;background:0 0;border:none;color:var(--es-garage-color-text);font-size:0;cursor:pointer}.easysearch-btn-garage-holder{display:inline-block;vertical-align:bottom;margin-bottom:8px}@media screen and (min-width:768px){.easysearch-garage-widget:not(.easysearch-garage-opened):hover{transform:translateX(95%)}}@media screen and (max-width:490px){.easysearch-garage-overlay-container{align-items:normal}.easysearch-garage-overlay-content{flex-wrap:wrap}.easysearch-garage-overlay-title{display:block}}@media screen and (max-width:576px){.easysearch-garage-widget{width:calc(100% - 47px)}.easysearch-garage-holder .easysearch-garage-list-wrapper{padding:30px 16px}.easysearch-garage-widget.easysearch-garage-bottom-view{top:auto;left:0;right:0;bottom:0;width:100%;border-radius:0;transform:translateY(100%)}.easysearch-garage-widget.easysearch-garage-bottom-view.easysearch-garage-opened{transform:translateY(0)}.easysearch-garage-bottom-view .easysearch-garage-toggle{top:0;left:-1px;justify-content:center;width:calc(100% + 2px);transform:translateY(-100%)}.easysearch-garage-bottom-view.easysearch-garage-opened .easysearch-garage-toggle{width:56px}}#easysearch-search{background:#4fd716ff !important}.easysearch-garage-widget { --es-garage-offset-top: 100px; z-index: 99; }.easysearch-container { background-color: #253458 !important; color: #ffffff !important; } .easysearch-select-holder select { width:100% !important; color:#000000 !important; font-size:large !important; } .easysearch-select-holder label { font-size: 18px !important; } #easysearch-search { width:100% !important; font-size:20px !important; }
Wähle deine Marke
bitte wählen...Loading...
Wähle dein Modell
bitte wählen...
Jetzt konfigurieren
.easysearch-hidden{display:none !important;}
(() => {
const data = {
shop: 'smart-engineered.myshopify.com',
localeIso: 'de',
allCollectionSize: 495
,settings: {"form":{"db":"\/\/cdn.shopify.com\/s\/files\/1\/1101\/5888\/t\/2\/assets\/smart-engineered_myshopify_com.csv?v=1761834766","activity":"1","ranged_field":-1,"widget_main_v":0,"hidden_during_import":false,"keep_filter_mode":0,"filtering_mode":1,"search_within_collection":"0","up_mode":0,"add_model_info":0,"main_layout_mode":0,"main_color_mode":0,"main_clear_btn_mode":0,"main_autosubmit":0,"main_btn_show":1,"main_title_show":0,"main_collapsible":0,"main_logo_image":"","fitment_color_mode":0,"fitment_clear_btn_mode":0,"fitment_autosubmit":0,"fitment_btn_show":1,"fitment_title_show":0,"fitment_collapsible":0,"fitment_logo_image":"","ft_general_filter":0,"ft_pagination":0,"ft_quick_sort":0,"garage_color_mode":0,"garage_position":0,"garage_icon_type":1,"garage_logo_image":"","garage_replace_main_form":1,"garage_title_show":1,"styles":".easysearch-hidden,.easysearch-hidden-item,.easysearch-holder .easysearch-preload-loader.easysearch-hidden{display:none!important}.easysearch-text-center{text-align:center!important}.easysearch-text-left{text-align:left!important}.easysearch-text-right{text-align:right!important}.easysearch-container{padding:20px}.easysearch-main-holder{display:flex;align-items:center;justify-content:center}.easysearch-logo-holder{font-size:0;line-height:0}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-icon-success,.easysearch-fitment-results:not(.easysearch-fitment-fail) .easysearch-fitment-icon-fail,.easysearch-fitment-widget .easysearch-clear-holder label,.easysearch-ft-hidden-page-row,.easysearch-garage-collapsed-title:empty,.easysearch-garage-opened-title:empty,.easysearch-garage-overlay-logo:empty,.easysearch-header-holder:empty,.easysearch-item-selector+*,.easysearch-item[data-tags],.easysearch-logo-holder:empty,.easysearch-vertical-mode .easysearch-btn-garage-holder label,.easysearch-vertical-mode .easysearch-btn-holder label,.easysearch-vertical-mode .easysearch-clear-holder label{display:none}.easysearch-logo{max-width:60px;max-height:60px;margin-right:20px}.easysearch-btn-holder,.easysearch-clear-holder,.easysearch-holder .easysearch-preload-loader,.easysearch-select-holder{display:inline-block!important;margin:0 6px 6px!important;text-align:left;vertical-align:top}.easysearch-btn-holder,.easysearch-select-holder-last{margin-right:18px!important}.easysearch-actions-holder{display:inline-block;position:relative;vertical-align:top}.easysearch-btn-holder label,.easysearch-clear-holder label,.easysearch-holder .easysearch-preload-loader label,.easysearch-select-holder label{overflow:hidden!important;margin:0 30px 0 0!important;font:400 13px\/18px arial!important;font-family:inherit!important;white-space:nowrap!important}.easysearch-preload-loader\u003ediv{font-size:0}.easysearch-btn-garage,.easysearch-clear-holder a,.easysearch-select-holder select{display:block!important;overflow:hidden!important;width:100%!important;margin:0!important;font:400 13px\/18px arial!important;font-family:inherit!important}.easysearch-select-holder select{padding:8px 4px 8px 8px;border:1px solid #c4cdd5;border-radius:3px;font:400 13px\/20px arial!important;font-family:inherit!important;box-shadow:none;outline:0!important;appearance:auto}.easysearch-dark-mode .easysearch-select-holder select{background-color:#2e2e2e;border-color:#8a8a8a;color:#fff}.easysearch-btn-garage,.easysearch-clear-holder a{padding:8px 0!important}.easysearch-btn-garage\u003espan{display:inline}@supports (-ms-ime-align:auto){.easysearch-select-holder select{cursor:default!important}}.easysearch-loading .easysearch-btn-holder,.easysearch-loading .easysearch-select-holder{opacity:.6}.easysearch-btn{display:inline-block!important;position:relative!important;padding:8px 15px!important;height:auto!important;border-radius:3px!important;cursor:pointer!important;box-sizing:border-box;user-select:none;-webkit-appearance:none;color:#fff;font:400 13px\/20px arial!important;font-family:inherit!important;letter-spacing:normal!important;text-decoration:none!important;text-transform:none!important;white-space:nowrap!important}.easysearch-btn-holder .easysearch-btn{display:block!important}#easysearch-search[disabled],.easysearch-btn-garage[disabled],.easysearch-btn-search[disabled],.easysearch-select-holder select:disabled{opacity:.7}.easysearch-ft-header-holder.easysearch-active .easysearch-ft-header-actions,.easysearch-vertical-mode .easysearch-actions-holder,.easysearch-vertical-mode .easysearch-btn-garage-holder,.easysearch-vertical-mode .easysearch-main-holder{display:block}.easysearch-vertical-mode .easysearch-logo-holder{text-align:center}.easysearch-vertical-mode .easysearch-logo{margin:0 0 12px}.easysearch-vertical-mode .easysearch-holder{position:relative;text-align:left}.easysearch-vertical-mode .easysearch-holder .easysearch-select-holder{display:block!important;width:auto;margin:0 0 12px!important;clear:both!important}.easysearch-vertical-mode .easysearch-clear-holder{position:absolute;right:0}.easysearch-vertical-mode .easysearch-btn-holder,.easysearch-vertical-mode .easysearch-clear-holder,.easysearch-vertical-mode .easysearch-holder label{margin:0!important}.easysearch-vertical-mode .easysearch-holder .easysearch-preload-loader{position:absolute;top:50%;left:50%;margin:-18px 0 0 -12px!important}@media only screen and (max-width:400px){.easysearch-vertical-mode .easysearch-actions-holder{text-align:left}}.easysearch-fitment-widget{margin-bottom:20px}.easysearch-fitment-search-widget{padding:20px 0;border:1px solid #f3f3f2;border-width:1px 0}.easysearch-fitment-widget .easysearch-holder{text-align:left}.easysearch-fitment-loader,.easysearch-ft-loader{padding:12px 18px 8px;border:1px solid #f3f3f2;border-radius:4px}.easysearch-fitment-results{display:flex;padding:10px;border:1px solid #11ae66;border-radius:12px}.easysearch-fitment-results.easysearch-fitment-fail{border-color:#f4534d}.easysearch-fitment-results .easysearch-fitment-icon-holder{flex:0 0 50px}.easysearch-fitment-results .easysearch-fitment-icon-holder .easysearch-fitment-icon{display:flex;width:40px;height:40px;justify-content:center;align-items:center;background:#11ae66;border-radius:8px}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-icon-holder .easysearch-fitment-icon{background:#f4534d}.easysearch-fitment-results .easysearch-fitment-icon-holder .easysearch-fitment-icon svg{fill:white}.easysearch-fitment-widget .easysearch-fitment-header{margin:0 0 12px;padding:0;font-size:16px;line-height:19px;font-weight:700}.easysearch-fitment-results .easysearch-fitment-header{margin:0;color:#11ae66}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-header{color:#f4534d}.easysearch-fitment-results .easysearch-fitment-details{flex:1}.easysearch-fitment-results .easysearch-fitment-params{padding-right:5px}.easysearch-fitment-results .easysearch-fitment-change{vertical-align:top;color:#11ae66;font-size:14px;line-height:22px;cursor:pointer}.easysearch-fitment-results.easysearch-fitment-fail .easysearch-fitment-change{color:#f4534d;text-decoration:underline}.easysearch-fitment-widget .easysearch-clear-holder\u003ea{font-size:15px;line-height:36px;text-decoration:none}.easysearch-fitment-widget .easysearch-fitment-link{text-decoration:underline}.easysearch-fitment-widget .easysearch-fitment-text{vertical-align:top;font-size:15px;line-height:23px}.easysearch-fitment-other-results{padding-top:5px}.easysearch-ft-table-holder{overflow-x:auto}.easysearch-ft-table{min-width:100%;border-collapse:collapse}.easysearch-ft-table td,.easysearch-ft-table th,.easysearch-garage-overlay-actions .easysearch-btn{white-space:nowrap}.easysearch-ft-header-holder{display:flex;position:relative;text-align:left}.easysearch-ft-table:not(.easysearch-ft-table-quick-sort) .easysearch-ft-header-actions-holder{position:relative}.easysearch-ft-table-quick-sort .easysearch-ft-header-actions-holder{flex:1;display:flex;justify-content:space-between;align-items:center}.easysearch-ft-header-actions{display:none;position:absolute;z-index:5;background:#fff;border-radius:8px;box-shadow:2px 4px 10px 0 #0000001a;white-space:nowrap}.easysearch-ft-table-quick-sort .easysearch-ft-header-actions{top:100%;right:0;min-width:180px}.easysearch-ft-header-actions-icon{padding:0 8px;cursor:pointer}.easysearch-ft-header-actions-icon svg{transition:.3s}.easysearch-ft-table:not(.easysearch-ft-table-quick-sort) .easysearch-ft-header-holder.easysearch-active .easysearch-ft-header-actions-icon svg{transform:rotate(180deg)}.easysearch-ft-general-filter-holder{margin-bottom:8px}.easysearch-ft-column-filter-holder,.easysearch-ft-sort-holder{padding:8px 12px}.easysearch-ft-table-quick-sort .easysearch-ft-sort-holder{padding:0 8px}.easysearch-ft-sort{display:flex;gap:8px;align-items:center;cursor:pointer}.easysearch-ft-header-holder[data-order=\"1\"] .easysearch-ft-sort-toggle svg path+path,.easysearch-ft-header-holder[data-order=\"2\"] .easysearch-ft-sort-toggle svg path:first-child,.easysearch-ft-sort-asc svg path+path,.easysearch-ft-sort-desc svg path:first-child{opacity:.5}.easysearch-ft-holder .easysearch-ft-filter,.easysearch-ft-holder .easysearch-ft-per-page{padding:8px 12px;color:currentColor;border:1px solid #e5e5e5;border-radius:4px;font-size:13px;outline:0;box-shadow:none}.easysearch-ft-holder .easysearch-ft-filter{width:100%;padding-left:40px;background-position:12px 50%;background-image:url(\"data:image\/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 10C3.791 10 2 8.209 2 6C2 3.791 3.791 2 6 2C8.209 2 10 3.791 10 6C10 8.209 8.209 10 6 10ZM15.707 14.293L10.887 9.473C11.585 8.492 12 7.296 12 6C12 2.687 9.313 0 6 0C2.687 0 0 2.687 0 6C0 9.313 2.687 12 6 12C7.296 12 8.492 11.585 9.473 10.887L14.293 15.707C14.488 15.902 14.744 16 15 16C15.256 16 15.512 15.902 15.707 15.707C16.098 15.316 16.098 14.684 15.707 14.293Z' fill='%235C5F62'\/%3E%3C\/svg%3E\");background-repeat:no-repeat;background-size:16px}.easysearch-ft-widget input[type=search]::-webkit-search-cancel-button:hover,.easysearch-ft-widget input[type=search]::-webkit-search-decoration:hover{cursor:pointer}.easysearch-ft-pagination-actions,.easysearch-ft-pagination-holder{display:flex;gap:8px 16px;flex-wrap:wrap;align-items:center}.easysearch-ft-pagination-holder{padding-top:8px;justify-content:space-between}.easysearch-ft-pagination-nav{display:flex;gap:4px;align-items:center}.easysearch-ft-nav-button,.easysearch-ft-nav-ellipses{display:block;height:30px;width:30px;border:1px solid transparent;border-radius:50%;line-height:30px;text-align:center}.easysearch-ft-nav-arrow{padding:4px}.easysearch-ft-nav-arrow,.easysearch-ft-nav-button{outline-offset:0;box-shadow:none;cursor:pointer}.easysearch-ft-nav-button:focus,.easysearch-ft-nav-button:hover,.easysearch-ft-nav-current{border-color:currentColor}.easysearch-ft-nav-arrow.easysearch-ft-nav-arrow-disabled{opacity:.5;pointer-events:none}.easysearch-garage-widget{--es-garage-color-bg:#fff;--es-garage-color-text:#222;--es-garage-color-accent:#4ac30a;--es-garage-color-border:#86868680;--es-garage-offset-top:100px;position:fixed;z-index:100;top:var(--es-garage-offset-top);right:0;width:333px;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-border);border-radius:0 0 0 12px;color:var(--es-garage-color-text);text-align:center;transform:translateX(100%);transition:.3s}.easysearch-garage-widget.easysearch-dark-mode{--es-garage-color-bg:#222;--es-garage-color-text:#fff;--es-garage-color-accent:#E1FFD0}.easysearch-garage-holder .easysearch-container,.easysearch-garage-widget .easysearch-container{padding:0}.easysearch-garage-widget .easysearch-widget{background:0 0}.easysearch-garage-content{display:flex;flex-direction:column;justify-content:center}.easysearch-garage-overlay{padding:16px 24px}.easysearch-garage-overlay-container{display:flex;gap:12px;align-items:center}.easysearch-garage-overlay-content{flex:1;display:flex;gap:12px;align-items:center;justify-content:space-between}.easysearch-garage-logo-holder,.easysearch-garage-overlay-logo{overflow:hidden;display:flex}.easysearch-garage-overlay-logo{min-width:20px;max-width:32px;max-height:32px}.easysearch-garage-logo-holder{max-width:20px;max-height:20px}.easysearch-garage-logo-holder img,.easysearch-garage-logo-holder svg,.easysearch-garage-overlay-logo img,.easysearch-garage-overlay-logo svg{width:auto;height:auto;max-width:100%;max-height:100%}.easysearch-garage-overlay-selected-values{font-weight:600}.easysearch-garage-widget.easysearch-garage-opened{transform:translateX(0)}.easysearch-garage-holder .easysearch-garage-subheading{margin-top:0}.easysearch-garage-holder .easysearch-garage-list-wrapper,.easysearch-garage-holder .easysearch-garage-select-wrapper{overflow-y:auto;max-height:calc(100vh - var(--es-garage-offset-top) - 80px);padding:30px}.easysearch-garage-holder .easysearch-garage-list-wrapper{display:flex;flex-direction:column}.easysearch-garage-holder .easysearch-garage-toggle{position:absolute;top:-1px;left:0;display:flex;min-width:56px;padding:8px 16px;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-border);border-bottom:none;border-radius:12px 12px 0 0;color:var(--es-garage-color-text);text-align:center;transform:rotate(-90deg) translate(-100%,-100%);transform-origin:top left;transition:width .3s}.easysearch-garage-widget.easysearch-garage-opened .easysearch-garage-toggle{width:56px}.easysearch-garage-holder .easysearch-garage-toggle::before{content:\"\";position:absolute;top:calc(100% - 2px);left:0;width:100%;height:4px;background-color:var(--es-garage-color-bg)}.easysearch-garage-btn-close,.easysearch-garage-btn-open{position:relative;display:flex;gap:12px;align-items:center;height:30px;width:100%;padding:0;background-color:transparent;border:none;color:var(--es-garage-color-text);opacity:1;cursor:pointer}.easysearch-garage-btn-open,.easysearch-garage-item-primary-selected-values{font-size:16px;font-weight:700}.easysearch-garage-btn-close{width:30px;font-size:0}.easysearch-garage-widget.easysearch-garage-opened .easysearch-garage-btn-open,.easysearch-garage-widget:not(.easysearch-garage-opened) .easysearch-garage-btn-close{position:absolute;z-index:-1;width:0;opacity:0}.easysearch-garage-collapsed-title,.easysearch-garage-opened-title{overflow:hidden;max-width:25ch;white-space:nowrap;text-overflow:ellipsis}.easysearch-garage-btn-close\u003espan,.easysearch-garage-btn-open\u003espan,.previewer-garage-btn-close svg,.previewer-garage-btn-open svg{display:inline-block;vertical-align:middle}.easysearch-garage-btn-open img{display:inline-block}.easysearch-garage-heading{margin-top:0;margin-bottom:16px;color:var(--es-garage-color-text);font-size:16px;font-weight:700;text-transform:uppercase}.easysearch-garage-subheading{margin-bottom:4px;color:var(--es-garage-color-text);font-size:16px;font-weight:500;line-height:1.3;opacity:.65}.easysearch-garage-actions-holder,.easysearch-garage-form-select+.easysearch-garage-btn{margin-top:16px}.easysearch-garage-holder .easysearch-actions-holder{display:flex;flex-direction:column;gap:8px}.easysearch-garage-holder .easysearch-btn-holder{width:100%;margin:0}.easysearch-garage-btn{display:inline-block;width:100%;min-height:auto;padding:8px 20px;margin:0;background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-text);border-radius:6px;color:var(--es-garage-color-text);font-size:14px;font-weight:600;line-height:20px;white-space:normal;text-align:center;text-decoration:none;transition:.3s;cursor:pointer}.easysearch-garage-btn-primary{background-color:var(--es-garage-color-text);border:1px solid var(--es-garage-color-bg);color:var(--es-garage-color-bg)}.easysearch-garage-btn-primary:not([disabled]):hover{background-color:var(--es-garage-color-bg);border:1px solid var(--es-garage-color-text);color:var(--es-garage-color-text)}.easysearch-garage-form-select{position:relative;margin-top:8px}.easysearch-garage-item{position:relative;display:flex;justify-content:space-between;align-items:center;padding:16px;margin-top:12px;border:1px solid #8a8a8a;border-radius:12px;text-align:left;cursor:pointer}.easysearch-garage-item[data-selected=\"1\"]{border:1px solid var(--es-garage-color-accent);outline:1px solid var(--es-garage-color-accent)}.easysearch-garage-item[data-selected=\"1\"]::before{content:attr(data-selected-item-text);position:absolute;right:30px;top:-10px;display:block;overflow:hidden;max-width:calc(100% - 60px);padding:3px 6px;background-color:var(--es-garage-color-accent);border-radius:10px;color:var(--es-garage-color-bg);font-size:12px;font-weight:500;line-height:1;text-transform:capitalize;text-overflow:ellipsis;white-space:nowrap}.easysearch-garage-item .easysearch-garage-item-left{max-width:calc(100% - 30px)}.easysearch-garage-item-primary-selected-values,.easysearch-garage-item-secondary-selected-values{display:flex;gap:0 4px;flex-wrap:wrap}.easysearch-garage-item-primary-selected-values\u003espan,.easysearch-garage-item-secondary-selected-values\u003espan{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.easysearch-garage-item-secondary-selected-values{font-size:14px;opacity:.65}.easysearch-garage-btn-delete{width:30px;height:30px;padding:0;margin-right:-8px;background:0 0;border:none;color:var(--es-garage-color-text);font-size:0;cursor:pointer}.easysearch-btn-garage-holder{display:inline-block;vertical-align:bottom;margin-bottom:8px}@media screen and (min-width:768px){.easysearch-garage-widget:not(.easysearch-garage-opened):hover{transform:translateX(95%)}}@media screen and (max-width:490px){.easysearch-garage-overlay-container{align-items:normal}.easysearch-garage-overlay-content{flex-wrap:wrap}.easysearch-garage-overlay-title{display:block}}@media screen and (max-width:576px){.easysearch-garage-widget{width:calc(100% - 47px)}.easysearch-garage-holder .easysearch-garage-list-wrapper{padding:30px 16px}.easysearch-garage-widget.easysearch-garage-bottom-view{top:auto;left:0;right:0;bottom:0;width:100%;border-radius:0;transform:translateY(100%)}.easysearch-garage-widget.easysearch-garage-bottom-view.easysearch-garage-opened{transform:translateY(0)}.easysearch-garage-bottom-view .easysearch-garage-toggle{top:0;left:-1px;justify-content:center;width:calc(100% + 2px);transform:translateY(-100%)}.easysearch-garage-bottom-view.easysearch-garage-opened .easysearch-garage-toggle{width:56px}}#easysearch-search{background:#4fd716ff !important}.easysearch-garage-widget { --es-garage-offset-top: 100px; z-index: 99; }.easysearch-container { background-color: #253458 !important; color: #ffffff !important; } .easysearch-select-holder select { width:100% !important; color:#000000 !important; font-size:large !important; } .easysearch-select-holder label { font-size: 18px !important; } #easysearch-search { width:100% !important; font-size:20px !important; }","colors":{"main_bg":"ffffff","main_title_color":"000000","main_btn_search_bg":"4fd716ff","main_btn_clear_bg":"e6e6e6","fitment_bg":"ffffff","fitment_title_color":"000000","fitment_btn_search_bg":"00db61ff","fitment_btn_clear_bg":"e6e6e6"},"texts":{"main_title":"","main_btn_search":"Jetzt konfigurieren","main_btn_clear":"Filter löschen.","main_loading":"Loading...","fitment_title":"Verify fitment with your vehicle","fitment_btn_verify":"Verify","fitment_btn_clear":"Clear filters","fitment_btn_change":"(Change vehicle)","fitment_btn_other":"Other products that fit your vehicle","fitment_success":"FITS your:","fitment_fail":"DOES NOT FIT your:","ft_title":"Compatibility","ft_subtitle":"%quantity% vehicle(s) are compatible with this part.","ft_filter_gen":"Filter table","ft_filter_col":"Filter column","ft_btn_sort_asc":"Sort Ascending","ft_btn_sort_desc":"Sort Descending","ft_pg_showing":"Showing: %showing% of %quantity%","ft_pg_per_page":"Lines per page","garage_title_collapsed":"GARAGE","garage_title_opened":"Your garage","garage_empty_state":"You have no vehicles in garage yet","garage_select_item":"Select your vehicle","garage_shopping_for":"Shopping for:","garage_btn_add":"Add a vehicle","garage_btn_cancel":"Cancel","garage_btn_add_to_garage":"Add to garage","garage_btn_change":"Change vehicle","garage_selected_item":"Selected"},"locales":{"de":{"main_title":"","main_btn_search":"Jetzt konfigurieren","main_btn_clear":"Filter löschen.","main_loading":"Loading...","fitment_title":"Verify fitment with your vehicle","fitment_btn_verify":"Verify","fitment_btn_clear":"Clear filters","fitment_btn_change":"(Change vehicle)","fitment_btn_other":"Other products that fit your vehicle","fitment_success":"FITS your:","fitment_fail":"DOES NOT FIT your:","ft_title":"Compatibility","ft_subtitle":"%quantity% vehicle(s) are compatible with this part.","ft_filter_gen":"Filter table","ft_filter_col":"Filter column","ft_btn_sort_asc":"Sort Ascending","ft_btn_sort_desc":"Sort Descending","ft_pg_showing":"Showing: %showing% of %quantity%","ft_pg_per_page":"Lines per page","garage_title_collapsed":"GARAGE","garage_title_opened":"Your garage","garage_empty_state":"You have no vehicles in garage yet","garage_select_item":"Select your vehicle","garage_shopping_for":"Shopping for:","garage_btn_add":"Add a vehicle","garage_btn_cancel":"Cancel","garage_btn_add_to_garage":"Add to garage","garage_btn_change":"Change vehicle","garage_selected_item":"Selected"},"en":{"main_title":"","main_btn_search":"Configure Now","main_btn_clear":"Clear Filter","main_loading":"","fitment_title":"","fitment_btn_verify":"","fitment_btn_clear":"","fitment_btn_change":"","fitment_btn_other":"","fitment_success":"","fitment_fail":"","ft_title":"","ft_subtitle":"","ft_filter_gen":"","ft_filter_col":"","ft_btn_sort_asc":"","ft_btn_sort_desc":"","ft_pg_showing":"","ft_pg_per_page":"","garage_title_collapsed":"","garage_title_opened":"","garage_empty_state":"","garage_select_item":"","garage_shopping_for":"","garage_btn_add":"","garage_btn_cancel":"","garage_btn_add_to_garage":"","garage_btn_change":"","garage_selected_item":""},"fr":{"main_title":"","main_btn_search":"","main_btn_clear":"","main_loading":"","fitment_title":"","fitment_btn_verify":"","fitment_btn_clear":"","fitment_btn_change":"","fitment_btn_other":"","fitment_success":"","fitment_fail":"","ft_title":"","ft_subtitle":"","ft_filter_gen":"","ft_filter_col":"","ft_btn_sort_asc":"","ft_btn_sort_desc":"","ft_pg_showing":"","ft_pg_per_page":"","garage_title_collapsed":"","garage_title_opened":"","garage_empty_state":"","garage_select_item":"","garage_shopping_for":"","garage_btn_add":"","garage_btn_cancel":"","garage_btn_add_to_garage":"","garage_btn_change":"","garage_selected_item":""},"it":{"main_title":"","main_btn_search":"","main_btn_clear":"","main_loading":"","fitment_title":"","fitment_btn_verify":"","fitment_btn_clear":"","fitment_btn_change":"","fitment_btn_other":"","fitment_success":"","fitment_fail":"","ft_title":"","ft_subtitle":"","ft_filter_gen":"","ft_filter_col":"","ft_btn_sort_asc":"","ft_btn_sort_desc":"","ft_pg_showing":"","ft_pg_per_page":"","garage_title_collapsed":"","garage_title_opened":"","garage_empty_state":"","garage_select_item":"","garage_shopping_for":"","garage_btn_add":"","garage_btn_cancel":"","garage_btn_add_to_garage":"","garage_btn_change":"","garage_selected_item":""}},"restriction_level":1,"active_widgets":"1","tag_filter":"0","layout_mode":"0","autoredirect":"0","btn_show":"1","btn_text":"Jetzt konfigurieren","btn_color":"4fd716ff","search_tag_filter":"0"},"fields":[{"field_id":"20014","hide_title":0,"sort_order":1,"texts":{"title":"Wähle deine Marke","placeholder":"bitte wählen..."},"locales":{"de":{"title":"Wähle deine Marke","placeholder":"bitte wählen..."},"en":{"title":"Choose your Brand","placeholder":"choose here..."},"fr":{"title":"","placeholder":""},"it":{"title":"","placeholder":""}},"title":"Wähle deine Marke","placeholder":"bitte wählen..."},{"field_id":"20015","hide_title":0,"sort_order":1,"texts":{"title":"Wähle dein Modell","placeholder":"bitte wählen..."},"locales":{"de":{"title":"Wähle dein Modell","placeholder":"bitte wählen..."},"en":{"title":"Choose your Model","placeholder":"choose here..."},"fr":{"title":"","placeholder":""},"it":{"title":"","placeholder":""}},"title":"Wähle dein Modell","placeholder":"bitte wählen..."}]},productTags:["klar","matt","noglass","privacy","smartphone"],productCollections:["alle-produkte","displayschutz-kabel","displayschutz-fuer-smartphones","enspiegelte-matte-schutzfolien-fur-dein-display","newest-products","noglass"],productVariant: '50942302781704'};
if( window?.easysearch?.eventStates['easysearch_ready'] ) easysearch.initDataByLiquid(data);
else document.addEventListener('easysearch_ready', () => easysearch.initDataByLiquid(data));
})();
(() => {
if( window.innerWidth < 480 ) {
for( const el of document.querySelectorAll('.easysearch-main-widget .easysearch-container:not(.easysearch-vertical-mode)') ) el.classList.add('easysearch-vertical-mode');
}
if( window?.easysearch?.settings?.form ) easysearch.mainAppendOverlay();
else document.addEventListener('easysearch_settings_inited', () => easysearch.mainAppendOverlay());
})();
[H4] Lieferzeit:
[H4]
[H5]
.
Bilder
Es konnten 334 Bilder auf dieser Webseite gefunden werden.
Auf noglass.kaufen fehlen bei 44 von 334 Bilddateien ALT-Attribute. Beschreibende Alternativtexte helfen Suchmaschinen und verbessern zugleich die Zugänglichkeit der Seite.
Text/HTML Verhältnis
Anteil : 1%
Das Text-zu-HTML-Verhältnis von noglass.kaufen liegt nur bei 1% und damit unter dem empfohlenen Mindestwert von 15%. Mehr eigener, sichtbarer Inhalt würde der Seite helfen, ihr Thema klarer zu vermitteln.
Flash
noglass.kaufen verzichtet auf Flash-Inhalte. Dadurch bleibt die Seite technisch zeitgemäßer und für Nutzer wie Suchmaschinen leichter zugänglich.
IFrame
Bei noglass.kaufen wurden keine IFrames erkannt. Das reduziert technische Abhängigkeiten und macht die Seite für Analyse, Indexierung und Wartung übersichtlicher.
SEO Links
Eine klare Linkstruktur erleichtert Suchmaschinen das Crawlen, verteilt interne Relevanz und hilft Besuchern, wichtige Inhalte schnell zu finden.
URL Rewrite
Die URLs von noglass.kaufen sind gut lesbar und wirken suchmaschinenfreundlich. Sprechende Links helfen Nutzern und Crawlern, den Inhalt einer Seite bereits anhand der Adresse besser einzuschätzen.
Underscores in the URLs
In den URLs von noglass.kaufen wurden keine Unterstriche gefunden. Bindestriche sind für lesbare Webadressen meist die bessere Wahl.
In-page links
We found a total of 14 links including 0 link(s) to files
Die Suchbegriffsauswertung zeigt, welche Themen die Seite tatsächlich vermittelt und ob wichtige Begriffe in Inhalt und Seitenelementen konsistent vorkommen.
Suchbegriffswolke
bitteeurwählewählendeinwirunddirektchangedeutsch
Keywords Consistency
Suchbegriff
Inhalt
Seitentitel
Suchbegriffe
Seitenbeschreibung
Überschriften
eur
8
deutsch
6
dein
4
wir
3
direkt
2
Benutzerfreundlichkeit
Gute Benutzerfreundlichkeit stärkt Vertrauen und erleichtert die Nutzung. Geprüft werden unter anderem URL, Favicon, Sprache und Druckdarstellung.
URL
Domain : noglass.kaufen
Länge : 14
Favoriten Icon
Ein Favicon ist für noglass.kaufen vorhanden. Das ist ein kleines, aber sichtbares Signal für Markenwirkung und Nutzerorientierung.
Druckeigenschaften
Für noglass.kaufen wurden keine speziellen Druck-CSS-Angaben gefunden. Eigene Print-Styles können helfen, Navigation, Farben und Layout beim Drucken sinnvoll zu reduzieren.
Sprache
Die Spracheinstellung von noglass.kaufen ist vorhanden: de. Diese Angabe macht das Dokument für Crawler und assistive Technologien klarer interpretierbar.
Dublin Core
noglass.kaufen verzichtet auf Dublin-Core-Metadaten. Falls die Seite stark dokumenten- oder publikationsorientiert ist, könnten solche Angaben ergänzt werden.
Dokument
Sauberes HTML, eine korrekte Zeichencodierung und moderne Standards verbessern Kompatibilität, Zugänglichkeit und die zuverlässige Verarbeitung der Seite.
Doctype
HTML 5
Verschlüsselung
noglass.kaufen deklariert den Zeichensatz UTF-8. Das ist wichtig, damit Sonderzeichen, Umlaute und typografische Zeichen korrekt dargestellt werden.
W3C Validität
Fehler : 0
Warnungen : 0
E-Mail Datenschutz
noglass.kaufen sollte offen sichtbare E-Mail-Adressen absichern. Eine geschützte Darstellung verringert die Wahrscheinlichkeit automatisierter Spam-Erfassung. Mit diesem kostenlosen Werkzeug lassen sich Adressen besser schützen.
Veraltetes HTML
Veraltete Tags
Vorkommen
<u>
1
noglass.kaufen enthält deprecated HTML-Markup. Eine Bereinigung kann Wartbarkeit, Validierung und technische Zukunftssicherheit verbessern.
Tipps zur Webseitengeschwindigkeit
Bei noglass.kaufen wurden keine verschachtelten Tabellen erkannt. Das ist positiv für sauberes Markup und responsive Gestaltung.
Auf noglass.kaufen wurden Inline-CSS-Angaben gefunden. Wenn möglich, sollten diese Regeln in Stylesheets verlagert werden, damit Gestaltung und Inhalt sauberer getrennt sind.
Bei noglass.kaufen ist die CSS-Struktur relativ umfangreich: 24 Dateien wurden erkannt. Prüfen Sie, ob ungenutzte oder getrennte Stylesheets zusammengeführt werden können.
noglass.kaufen verwendet 51 JavaScript-Dateien und liegt damit über dem Richtwert von 12. Weniger Skripte oder gebündelte Dateien können die Ladezeit verbessern.
Gzip ist für noglass.kaufen aktiv. Komprimierte Antworten sparen Datenvolumen und beschleunigen die Auslieferung der Seite.
Mobile
Mobile Optimierung ist wichtig, weil viele Besucher Smartphones nutzen. Viewport, Icons und ungeeignete Technologien beeinflussen Darstellung und Bedienbarkeit.
Mobile Optimierung
Apple Icon
META Viewport Tag
Flash Inhalt
Optimierung
Sitemap, robots.txt, Komprimierung und Analysesysteme beeinflussen, wie effizient eine Website gecrawlt, ausgeliefert und gezielt weiterentwickelt werden kann.
XML-Sitemap
Fehlt
noglass.kaufen sollte eine XML-Sitemap bereitstellen. Gerade bei größeren oder häufig geänderten Projekten erleichtert sie die Erfassung durch Suchmaschinen.
Robots.txt
http://noglass.kaufen/robots.txt
Eine robots.txt ist für noglass.kaufen vorhanden. Das ist die richtige Stelle, um Suchmaschinen den Umgang mit bestimmten Bereichen der Website zu erklären.
Analytics
Fehlt
noglass.kaufen scheint kein Analytics-System einzusetzen. Ein datenschutzkonform eingebundenes Analyse-Tool kann helfen, Optimierungen gezielter zu planen.
PageSpeed Insights
PageSpeed Insights bewertet Leistung, Barrierefreiheit, bewährte Verfahren und SEO für Desktop und Mobilgeräte und macht technische Bremsen sichtbar.
Gerät
Kategorien
Website-Überprüfung
Website-Überprüfung ist ein kostenloses SEO Werkzeug zur Analyse Ihrer Webseite