✦ Verified product
Friesen-Senf
EUR 4.90
Taste The World
Verified independent store
→
Dieser grobkörnige Senf, der nach altem friesischem Rezept mit Kapern und Sardellen hergestellt wird, ist ideal für alle die es herzhaft, würzig und maritim mögen. .accordion-conta
iner { 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 670,7 kJ / 160,3 kcal Fett 10,7g davon gesättigte Fettsäuren 0,8g Kohlenhydrate 4,1g davon Zucker 2,6g Eiweiß 8,8g Salz 2,9g Zutaten & Allergene ▼ Zutaten: Trinkwasser, Senfsaat, Tafelessig aus Branntwein, Apfelessig, Sardellenfilets,Kapern, Gewürze Allergene: Fisch und Fischerzeugnisse 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'); }