✦ Verified product
Honig-Dill-Senf
EUR 4.90
Taste The World
Verified independent store
→
Unkompliziert hergestellt aus Honig, Dill und Senf, ist der Honig-Dill-Senf eine schöne Grundlage für Dressings oder Saucen und eignet sich fantastisch für Krusten oder als Dipp fü
r geräuchertem Fisch. Die Senf-gewordene Alternative zur Graved-Lachs-Sauce. .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 507,1 kJ / 121,2 kcal Fett 4,3g davon gesättigte Fettsäuren 0,5g Kohlenhydrate 13,4g davon Zucker 12,5g Eiweiß 5,5g Salz 1,7g Zutaten & Allergene ▼ Zutaten: Trinkwasser, Senfsaat, Tafelessig aus Branntwein, 14% Honig, Apfelessig, 1,1% Dillspitzen, Zucker, Zitronensaftkonzentrat, Siedesalz, 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'); }