✦ Verified product
Bauern-Senf
EUR 4.90
Taste The World
Verified independent store
→
Durch die Einfachheit der Zutaten ist der Bauernsenf eine schnörkellose Ergänzung zu Klassikern der deutschen Kulinarik. So schmeckt ein typischer Senf. Probieren Sie ihn zu Roulad
en, Schweinebraten, Frikadellen, Kartoffelstampf oder Brat- und Bockwurst. .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 422,6 kJ / 101 kcal Fett 5,9g davon gesättigte Fettsäuren 0,6g Kohlenhydrate 2,1g davon Zucker 2,0g Eiweiß 7,1g Salz 1,96g Zutaten & Allergene ▼ Zutaten: Trinkwasser, Senfsaat (gelb und braun), Tafelessig aus Branntwein, Siedesalz, Gewürze (enthält Koriander) 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'); }