document.querySelector('sheri-bottom-btn').addEventListener('click', async () => {
const userId = localStorage.getItem('userId') || 'alfa_test_user';
const lockerId = 'xbox_series_s_molodezhny_14'; // ID выбранной ячейки/товара
const response = await fetch('https://gosheri.online/api/create-order', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ userId, lockerId, price: 297, tariffName: '3 часа' })
});
const data = await response.json();
if (data.success) {
// Здесь можно перенаправить на Робокассу или в личный кабинет
window.location.href = 'https://gosheri.ru/kabinet';
}
});