Adobe Acrobat Standard - 12 Months Subscription Key EU

Egyéb

Adobe Acrobat Standard - 12 Months Subscription Key EU

82,624 Ft 99,149 Ft
208.18 € 249.81 €

Adobe Acrobat Standard - 3 Months Subscription Key

Egyéb

Adobe Acrobat Standard - 3 Months Subscription Key

1,669 Ft 2,003 Ft
4.21 € 5.05 €

Adobe Acrobat Standard - 3 Months Subscription Key RoW

Egyéb

Adobe Acrobat Standard - 3 Months Subscription Key RoW

640 Ft 768 Ft
1.61 € 1.94 €

Adobe Acrobat Standard - 3 Months Subscription Key RoW v2

Egyéb

Adobe Acrobat Standard - 3 Months Subscription Key RoW v2

551 Ft 661 Ft
1.39 € 1.67 €

Adobe AI Assistant for Acrobat - 1 Year Subscription Key

Egyéb

Adobe AI Assistant for Acrobat - 1 Year Subscription Key

30,752 Ft 36,902 Ft
77.48 € 92.98 €

Adobe Creative Cloud All Apps - 1 Month Subscription Key

Egyéb

Adobe Creative Cloud All Apps - 1 Month Subscription Key

2,659 Ft 3,191 Ft
6.70 € 8.04 €

Adobe Creative Cloud All Apps - 1 Month Subscription Key EU/ASIA

Egyéb

Adobe Creative Cloud All Apps - 1 Month Subscription Key EU/ASIA

3,059 Ft 3,671 Ft
7.71 € 9.25 €

Adobe Creative Cloud All Apps - 1 Month Subscription Key RoW

Egyéb

Adobe Creative Cloud All Apps - 1 Month Subscription Key RoW

2,392 Ft 2,870 Ft
6.03 € 7.23 €

Adobe Creative Cloud All Apps - 12 Months Subscription Key

Egyéb

Adobe Creative Cloud All Apps - 12 Months Subscription Key

139,050 Ft 166,860 Ft
350.35 € 420.42 €

Adobe Creative Cloud All Apps - 3 Months Subscription Key

Egyéb

Adobe Creative Cloud All Apps - 3 Months Subscription Key

14,778 Ft 17,734 Ft
37.23 € 44.68 €

Adobe Creative Cloud All Apps - 3 Months Subscription Key EU/ASIA

Egyéb

Adobe Creative Cloud All Apps - 3 Months Subscription Key EU/ASIA

13,861 Ft 16,633 Ft
34.92 € 41.91 €

Adobe Creative Cloud All Apps 3 Months

Egyéb

Adobe Creative Cloud All Apps 3 Months

15,942 Ft 19,130 Ft
40.17 € 48.20 €

Adobe Creative Cloud Photography Plan - 1 Month Subscription Key RoW

Egyéb

Adobe Creative Cloud Photography Plan - 1 Month Subscription Key RoW

4,997 Ft 5,996 Ft
12.59 € 15.11 €

Adobe Creative Cloud Photography Plan - 1TB Cloudstorage Subscription Key (1 Year / 1 PC)

Egyéb

Adobe Creative Cloud Photography Plan - 1TB Cloudstorage Subscription Key (1 Year / 1 PC)

127,114 Ft 152,537 Ft
320.28 € 384.33 €

Adobe Creative Cloud Photography Plan - 3 Months Subscription Key RoW

Egyéb

Adobe Creative Cloud Photography Plan - 3 Months Subscription Key RoW

16,630 Ft 19,956 Ft
41.90 € 50.28 €

Adobe Express Premium - 12 Months Subscription Key

Egyéb

Adobe Express Premium - 12 Months Subscription Key

6,563 Ft 7,876 Ft
16.54 € 19.84 €

Adobe Express Premium - 6 Months Subscription Key

Egyéb

Adobe Express Premium - 6 Months Subscription Key

1,943 Ft 2,332 Ft
4.90 € 5.87 €

Adobe Photoshop Beginner Course Bundle Alpha Academy Code

Egyéb

Adobe Photoshop Beginner Course Bundle Alpha Academy Code

8,343 Ft 10,012 Ft
21.02 € 25.23 €

Adobe Photoshop Elements 2025 (3 Years / 1 Device)

Egyéb

Adobe Photoshop Elements 2025 (3 Years / 1 Device)

48,566 Ft 58,279 Ft
122.37 € 146.84 €

Adobe Photoshop Elements 2025 (3 Years / 2 Devices)

Egyéb

Adobe Photoshop Elements 2025 (3 Years / 2 Devices)

57,706 Ft 69,247 Ft
145.40 € 174.47 €

Adobe Photoshop Elements 2025 US (3 Years / 1 Device)

Egyéb

Adobe Photoshop Elements 2025 US (3 Years / 1 Device)

57,706 Ft 69,247 Ft
145.40 € 174.47 €

Adobe Photoshop Lightroom - 1TB Cloudstorage (1 Year / 1 PC)

Egyéb

Adobe Photoshop Lightroom - 1TB Cloudstorage (1 Year / 1 PC)

69,052 Ft 82,862 Ft
173.98 € 208.78 €

Adobe Photoshop Lightroom 5.7 For Windows (Lifetime / 1 PC)

Egyéb

Adobe Photoshop Lightroom 5.7 For Windows (Lifetime / 1 PC)

6,257 Ft 7,508 Ft
15.77 € 18.92 €

Adobe Photoshop Lightroom 5.7 For Windows EU (Lifetime / 1 PC)

Egyéb

Adobe Photoshop Lightroom 5.7 For Windows EU (Lifetime / 1 PC)

7,492 Ft 8,990 Ft
18.88 € 22.65 €

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'); }); } }); });