✦ Verified product
Kutter-Senf
EUR 4.90
Taste The World
Verified independent store
→
Der Kutter-Senf setzt sich aus einer Komposition von dunklem Senfmehl, süßer Chili und geräucherter Paprika zusammen. Er enthält eine dezente Süße ohne Säure und eignet sich ausgez
eichnet zum dippen und würzen. Der Kutter-Senf ist etwas weniger kräftig als der Haven-Senf und stellt eine tolle alternative dar, falls dieser zu stark ist. .accordion-container { max-width: 100%; margin: 10 auto; padding-top: 15px; } .accordion-item { border: 1px solid var(--color-border); margin-bottom: 3px; border-radius: 10px; overflow: hidden; } .accordion-header { background-color: var(--color-background); padding: 10px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; color: var(--color-foreground-heading); border: none; width: 100%; text-align: left; transition: background-color 0.2s ease; } .accordion-header:hover { background-color: rgba(0, 0, 0, 0.02); } .accordion-header.active { background-color: rgba(0, 0, 0, 0.04); } .accordion-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; } .accordion-header.active .accordion-icon { transform: rotate(180deg); } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background-color: rgba(0, 0, 0, 0.01); } .accordion-content.active { max-height: 1000px; } .accordion-body { padding: 5px; color: var(--color-foreground); font-size: 14px; line-height: 1.6; } .nutrition-table { width: 100%; border-collapse: collapse; margin: 0; } .nutrition-table th, .nutrition-table td { padding: 10px 1; text-align: left; border-bottom: 1px solid var(--color-border); } .nutrition-table th { font-weight: 600; color: var(--color-foreground-heading); background-color: rgba(0, 0, 0, 0.02); } .nutrition-table tr:last-child td { border-bottom: none; } .nutrition-value { text-align: right; font-weight: 500; } Schärfegrad: 🟡 🟡 🟡 Nährwertangaben ▼ Pro 100g Energie 691 kJ / 165 kcal Fett 4,3g davon gesättigte Fettsäuren 0,5g Kohlenhydrate 23g davon Zucker 22g Eiweiß 5,2g Salz 2,2g Zutaten & Allergene ▼ Zutaten: Trinkwasser, Senfsaat, Tafelessig aus Branntwein, süße Chilisauce (Zucker, Wasser, rote Chili 16%, Knoblauch, modifizierte Maisstärke, Essigsäure), Aceto Balsamico (Weinessig, konzentrierter Traubenmost, Antioxidationsmittel: Schwefeldioxid, Kaliumdisulfit), Zucker, Salz, Gewürze Versand ▼ Bearbeiten Sie diesen Text, um die Versandinformationen hinzuzufügen. function toggleAccordion(button) { const header = button; const content = header.nextElementSibling; const isActive = header.classList.contains('active'); // Close all other accordions document.querySelectorAll('.accordion-header').forEach(h => { if (h !== header) { h.classList.remove('active'); h.nextElementSibling.classList.remove('active'); } }); // Toggle current accordion header.classList.toggle('active'); content.classList.toggle('active'); }