Zalando Gift Card 50 CHF (Switzerland)

Ajándékkártya

Zalando Gift Card 50 CHF (Switzerland)

36,672 Ft 44,006 Ft
92.40 € 110.88 €

Zalando Gift Card 50 EUR (Austria)

Ajándékkártya

Zalando Gift Card 50 EUR (Austria)

34,144 Ft 40,973 Ft
86.03 € 103.23 €

Zalando Gift Card 50 EUR (Belgium)

Ajándékkártya

Zalando Gift Card 50 EUR (Belgium)

26,742 Ft 32,090 Ft
67.38 € 80.85 €

Zalando Gift Card 50 EUR (Finland)

Ajándékkártya

Zalando Gift Card 50 EUR (Finland)

26,839 Ft 32,207 Ft
67.62 € 81.15 €

Zalando Gift Card 50 EUR (Germany)

Ajándékkártya

Zalando Gift Card 50 EUR (Germany)

24,712 Ft 29,654 Ft
62.26 € 74.72 €

Zalando Gift Card 50 EUR (Italy)

Ajándékkártya

Zalando Gift Card 50 EUR (Italy)

26,922 Ft 32,306 Ft
67.83 € 81.40 €

Zalando Gift Card 50 EUR (Spain)

Ajándékkártya

Zalando Gift Card 50 EUR (Spain)

26,839 Ft 32,207 Ft
67.62 € 81.15 €

Zalando Gift Card 50 GBP (UK)

Ajándékkártya

Zalando Gift Card 50 GBP (UK)

31,865 Ft 38,238 Ft
80.29 € 96.34 €

Zalando Gift Card 50 NOK (Norway)

Ajándékkártya

Zalando Gift Card 50 NOK (Norway)

2,486 Ft 2,983 Ft
6.26 € 7.52 €

Zalando Gift Card 50 PLN (Poland)

Ajándékkártya

Zalando Gift Card 50 PLN (Poland)

6,430 Ft 7,716 Ft
16.20 € 19.44 €

Zalando Gift Card 50 SEK (Sweden)

Ajándékkártya

Zalando Gift Card 50 SEK (Sweden)

2,559 Ft 3,071 Ft
6.45 € 7.74 €

Zalando Gift Card 500 CZK (Czech Republic)

Ajándékkártya

Zalando Gift Card 500 CZK (Czech Republic)

13,988 Ft 16,786 Ft
35.24 € 42.29 €

Zalando Gift Card 500 DKK (Denmark)

Ajándékkártya

Zalando Gift Card 500 DKK (Denmark)

35,814 Ft 42,977 Ft
90.24 € 108.28 €

Zalando Gift Card 500 PLN (Poland)

Ajándékkártya

Zalando Gift Card 500 PLN (Poland)

62,363 Ft 74,836 Ft
157.13 € 188.56 €

Zalando Gift Card 500 SEK (Sweden)

Ajándékkártya

Zalando Gift Card 500 SEK (Sweden)

23,577 Ft 28,292 Ft
59.40 € 71.29 €

Zalando Kids 100 NOK Gift Card NO

Ajándékkártya

Zalando Kids 100 NOK Gift Card NO

5,267 Ft 6,320 Ft
13.27 € 15.92 €

Zalando Kids 100 SEK Gift Card SE

Ajándékkártya

Zalando Kids 100 SEK Gift Card SE

5,423 Ft 6,508 Ft
13.66 € 16.40 €

Zalando Kids 1000 NOK Gift Card NO

Ajándékkártya

Zalando Kids 1000 NOK Gift Card NO

50,616 Ft 60,739 Ft
127.53 € 153.04 €

Zalando Kids 1000 SEK Gift Card SE

Ajándékkártya

Zalando Kids 1000 SEK Gift Card SE

52,962 Ft 63,554 Ft
133.44 € 160.13 €

Zalando Kids 1500 SEK Gift Card SE

Ajándékkártya

Zalando Kids 1500 SEK Gift Card SE

74,896 Ft 89,875 Ft
188.71 € 226.45 €

Zalando Kids 200 NOK Gift Card NO

Ajándékkártya

Zalando Kids 200 NOK Gift Card NO

10,457 Ft 12,548 Ft
26.35 € 31.62 €

Zalando Kids 200 SEK Gift Card SE

Ajándékkártya

Zalando Kids 200 SEK Gift Card SE

10,779 Ft 12,935 Ft
27.16 € 32.59 €

Zalando Kids 2000 SEK Gift Card SE

Ajándékkártya

Zalando Kids 2000 SEK Gift Card SE

109,416 Ft 131,299 Ft
275.68 € 330.82 €

Zalando Kids 300 SEK Gift Card SE

Ajándékkártya

Zalando Kids 300 SEK Gift Card SE

16,484 Ft 19,781 Ft
41.53 € 49.84 €

const mainCategoryItems = document.querySelectorAll('.main-category-item'); const subCategories = document.querySelectorAll('.sub-categories'); // Touch device detection const hasHover = window.matchMedia('(hover: hover)').matches; const isMobile = window.innerWidth <= 991; // Show first category by default if (mainCategoryItems.length > 0 && subCategories.length > 0) { mainCategoryItems[0].classList.add('active'); subCategories[0].classList.add('active'); } // Main category item hover handlers mainCategoryItems.forEach(function(item, index) { item.addEventListener('mouseenter', function() { // Remove active class from all items mainCategoryItems.forEach(function(otherItem) { otherItem.classList.remove('active'); }); // Hide all sub-categories subCategories.forEach(function(subCat) { subCat.classList.remove('active'); }); // Add active class to hovered item item.classList.add('active'); // Show corresponding sub-category if (subCategories[index]) { subCategories[index].classList.add('active'); } }); }); // Touch device support if (!hasHover || isMobile) { let touchStartY = 0; let touchEndY = 0; megaDropdownContent.addEventListener('touchstart', function(e) { touchStartY = e.changedTouches[0].screenY; }); megaDropdownContent.addEventListener('touchend', function(e) { touchEndY = e.changedTouches[0].screenY; handleSwipe(); }); function handleSwipe() { const swipeThreshold = 50; const swipeDistance = touchStartY - touchEndY; // Swipe up to close menu if (swipeDistance > swipeThreshold) { closeMobileMenu(); } } } function closeMobileMenu() { megaDropdownContent.style.display = 'none'; mainCategoryItems.forEach(function(item) { item.classList.remove('active'); }); subCategories.forEach(function(subCat) { subCat.classList.remove('active'); }); } // Mobil kategória menü JavaScript document.addEventListener('DOMContentLoaded', function() { const mobileCategoriesToggle = document.querySelector('.mobile-categories-toggle'); const mobileCategoriesMenu = document.querySelector('.mobile-categories-menu'); const mobileCategoryItems = document.querySelectorAll('.mobile-category-item'); // Mobil kategória menü fő toggle if (mobileCategoriesToggle) { mobileCategoriesToggle.addEventListener('click', function(e) { e.preventDefault(); mobileCategoriesMenu.classList.toggle('active'); }); } // Mobil alkategóriák toggle mobileCategoryItems.forEach(function(item) { const link = item.querySelector('a'); link.addEventListener('click', function(e) { e.preventDefault(); // Zárjuk be az összes másik kategóriát mobileCategoryItems.forEach(function(otherItem) { if (otherItem !== item) { otherItem.classList.remove('active'); } }); // Toggle az aktuális kategória const subcategories = item.querySelector('.mobile-subcategories'); const isActive = item.classList.contains('active'); if (!isActive) { // Ha megnyitjuk, először állítsuk be a display: block-ot subcategories.style.display = 'block'; // Kis késleltetés után adjuk hozzá az active osztályt az animációhoz setTimeout(() => { item.classList.add('active'); }, 10); } else { // Ha bezárjuk, távolítsuk el az active osztályt item.classList.remove('active'); // Várjuk meg az animáció végét, majd rejtsük el setTimeout(() => { if (!item.classList.contains('active')) { subcategories.style.display = 'none'; } }, 300); } }); }); // Kattintás a hamburger menü kívülre zárja a kategória menüt document.addEventListener('click', function(e) { if (!e.target.closest('.mobile-categories-menu') && !e.target.closest('.menu-toggle')) { mobileCategoriesMenu.classList.remove('active'); mobileCategoryItems.forEach(function(item) { item.classList.remove('active'); }); } }); });