diff --git a/index.html b/index.html
index 29becd5..2a9a351 100644
--- a/index.html
+++ b/index.html
@@ -595,10 +595,10 @@
ללא אחסון — תעלו בעצמכם
-
+
+
@@ -863,6 +863,8 @@
font-size: 1rem;
font-weight: 500;
border-radius: var(--radius-md);
+ border: none;
+ cursor: pointer;
transition: all 0.2s;
text-align: center;
}
@@ -945,9 +947,20 @@
closeModal();
}
});
+
+ // Handle package button clicks
+ document.querySelectorAll('.package-btn[data-plan]').forEach(function(btn) {
+ btn.addEventListener('click', function() {
+ var plan = this.getAttribute('data-plan');
+ if (window.SmartPayPopup && typeof window.SmartPayPopup.open === 'function') {
+ window.SmartPayPopup.open({ plan: plan });
+ }
+ });
+ });
})();
+