🔥 PREMIUM GROW-EQUIPMENT
📦 100% DISKRETER VERSAND
⭐ TOP RATING & SERVICE
🔥 PREMIUM GROW-EQUIPMENT
📦 100% DISKRETER VERSAND
⭐ TOP RATING & SERVICE
🔥 PREMIUM KWEEKUITRUSTING
📦 100% DISCRETE VERZENDING
⭐ TOP BEOORDELING & SERVICE
🔥 PREMIUM KWEEKUITRUSTING
📦 100% DISCRETE VERZENDING
⭐ TOP BEOORDELING & SERVICE
Substrate für Indoor Growing – Erde, Coco & Steinwolle
Zum Hauptinhalt springen Zur Suche springen Zur Hauptnavigation springen
10% SET Bonus
Versand innerhalb von 48h
30 Tage Geld-Zurück-Garantie
Verschiedene Zahlungsmöglichkeiten
Hotline +49 (0) 2874 9038716

Substrate

Substrate

Das richtige Substrat bildet die Grundlage für einen erfolgreichen Anbau. Es bestimmt, wie gut Wasser, Luft und Nährstoffe gespeichert und aufgenommen werden, was direkten Einfluss auf die Entwicklung der Pflanzen hat.

In dieser Kategorie findest du verschiedene Substrate wie Erde, Kokos und andere Growmedien, jeweils mit eigenen Eigenschaften und Vorteilen. Egal ob maximale Kontrolle oder einfache Anwendung – hier findest du das passende Substrat für dein Setup.

Unsere Substrate werden nach Qualität, Struktur und Zuverlässigkeit ausgewählt, damit du eine stabile Basis für deinen Anbau hast.

Wähle das richtige Substrat und schaffe die perfekte Grundlage für dein Setup.

function initGrow24Header() { // 1. MOBILE MENU TOGGLE LOGIC (Moved to top to prevent execution halting) const mobileToggles = document.querySelectorAll('.mobile-menu-toggle'); const navWrappers = document.querySelectorAll('.main-navigation-wrapper'); mobileToggles.forEach(toggle => { toggle.addEventListener('click', function(e) { e.preventDefault(); navWrappers.forEach(wrapper => { wrapper.classList.toggle('menu-open'); }); }); }); // Mobile submenu toggle const navItems = document.querySelectorAll('.nav-item'); navItems.forEach(item => { const link = item.querySelector('.nav-link'); const megaMenu = item.querySelector('.mega-menu'); if (link && megaMenu) { link.addEventListener('click', function(e) { // Only act as a toggle on mobile screens if (window.innerWidth <= 992) { e.preventDefault(); // Close others navItems.forEach(otherItem => { if (otherItem !== item) { otherItem.classList.remove('submenu-open'); } }); item.classList.toggle('submenu-open'); } }); } }); // 2. LANGUAGE DETECTION const currentPath = window.location.pathname; if (currentPath.startsWith('/nl') || currentPath === '/nl/') { document.body.classList.add('is-nl-site'); } else { document.body.classList.add('is-de-site'); } // 3. 100% PASSIVE CART SYNCHRONIZATION function updateBadgeCount(count) { let cleanCount = count.replace(/[^0-9]/g, ''); if (!cleanCount) cleanCount = '0'; // Query dynamically every time to ensure we find the badges even if they were injected late by Shopware CMS const dynamicCustomBadges = document.querySelectorAll('.custom-cart-badge-amount'); dynamicCustomBadges.forEach(b => { if (b.textContent !== cleanCount) { b.textContent = cleanCount; b.setAttribute('data-count', cleanCount); if (parseInt(cleanCount) > 0) { b.classList.remove('pulse-anim'); void b.offsetWidth; b.classList.add('pulse-anim'); } } }); } // Passive polling across all known badge classes setInterval(function() { const nativeBadges = document.querySelectorAll('.header-cart-badge, .cart-item-count, .badge:not(.header-wishlist-badge), .badge-primary:not(.header-wishlist-badge), .offcanvas-cart-header-count, .js-cart-count, .cart-badge, .g24-cart-badge, [class*="cart-badge"], .is-cart-badge, .cart-badge-wrapper'); let foundCount = '0'; for (let badge of nativeBadges) { let badgeValue = badge.textContent || badge.getAttribute('data-count') || ''; if (badgeValue && !badgeValue.includes('€') && !badge.classList.contains('header-cart-total')) { let count = badgeValue.replace(/[^0-9]/g, ''); if (count && parseInt(count) > 0) { foundCount = count; break; } } } updateBadgeCount(foundCount); }, 800); // Initial check setTimeout(() => { const initialBadge = document.querySelector('.header-cart-badge, .cart-item-count, .badge:not(.header-wishlist-badge), .g24-cart-badge, .is-cart-badge, .cart-badge-wrapper'); if (initialBadge && initialBadge.textContent && !initialBadge.textContent.includes('€')) { updateBadgeCount(initialBadge.textContent); } }, 100); // 4. LANGUAGE POPUP LOGIC if (!localStorage.getItem('langChosen')) { const popup = document.getElementById('language-popup'); if (popup) { popup.style.display = 'flex'; } } // 5. MOBILE DOM REORDERING // Ensures our custom search bar is physically BELOW the native Shopware logo/hamburger on mobile if (window.innerWidth <= 992) { const nativeHeader = document.querySelector('.header-main'); const customHeaders = document.querySelectorAll('.lang-header-nl, .lang-header-de'); if (nativeHeader && customHeaders.length > 0) { customHeaders.forEach(customHeader => { // Move our custom header block to be directly after the native Shopware header nativeHeader.parentNode.insertBefore(customHeader, nativeHeader.nextSibling); }); } } // DO NOT manually initialize Shopware plugins here, Shopware auto-binds them via data attributes. // Manual initialization causes double-binding (e.g. clicking "Weiter einkaufen" requires 2 clicks). } // Ensure execution regardless of when this script is loaded (Fix for Shopware Erlebniswelten) if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initGrow24Header); } else { initGrow24Header(); }