/* ============================================================ EBS Digital - Salla Custom JavaScript Copy and paste this entire file into: Salla Dashboard > Store Design > Advanced > Customize with JavaScript ============================================================ */ (function() { 'use strict'; // ====== Remove Kimi/AI badges ====== function removeBadges() { var selectors = '[class*="kimi"], [class*="Kimi"], [id*="kimi"], [id*="Kimi"], [aria-label*="Kimi"], [title*="Kimi"], [data-testid*="kimi"], [data-testid*="Kimi"]'; document.querySelectorAll(selectors).forEach(function(el) { el.remove(); }); } removeBadges(); setInterval(removeBadges, 1000); [1000, 2000, 3000, 5000].forEach(function(t) { setTimeout(removeBadges, t); }); // ====== Scroll Animations ====== function initScrollAnimations() { var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { entry.target.style.opacity = '1'; entry.target.style.transform = 'translateY(0)'; } }); }, { threshold: 0.1 }); document.querySelectorAll('.ebs-animate').forEach(function(el) { el.style.opacity = '0'; el.style.transform = 'translateY(24px)'; el.style.transition = 'all 0.6s ease'; observer.observe(el); }); } // ====== Smooth Scroll for Anchor Links ====== function initSmoothScroll() { document.querySelectorAll('a[href^="#"]').forEach(function(link) { link.addEventListener('click', function(e) { var target = document.querySelector(this.getAttribute('href')); if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth' }); } }); }); } // ====== Initialize Everything ====== function init() { addWhatsAppButton(); initScrollAnimations(); initSmoothScroll(); initPlanSelection(); initContactForm(); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else { init(); } })();/* Add custom Js styles below */ // ====== Snapchat Pixel ID ======