let cartCount = 0;
const cartBtn = document.getElementById('cart-btn');
const buyButtons = document.querySelectorAll('.buy-btn');
buyButtons.forEach(button => {
button.addEventListener('click', () => {
cartCount++;
cartBtn.textContent = `Корзина (${cartCount})`;
button.textContent = 'Добавлено!'
button.style.background = '#32d74b';
setTimeout(() => {
button.style.background = '#1d1d1f';
}, 1500);
});
});
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});