document.addEventListener("DOMContentLoaded", function () { var exchangeRate = 0.04; // Kurz CZK -> EUR var currencySwitcher = document.getElementById("currency-switcher"); if (currencySwitcher) { currencySwitcher.addEventListener("change", function () { var selectedCurrency = this.value; document.querySelectorAll(".price").forEach(function (priceElement) { var originalPrice = parseFloat(priceElement.getAttribute("data-price")); if (selectedCurrency === "eur") { priceElement.textContent = (originalPrice * exchangeRate).toFixed(2) + " €"; } else { priceElement.textContent = originalPrice + " Kč"; } }); }); } });