<!-- FORM + DANH SÁCH PHÒNG TRÊN CÙNG 1 TRANG -->
<div class="booking-form" style="margin:16px auto;max-width:980px;"></div>
<div id="room-list" style="margin:16px auto;max-width:1200px;"></div>
<script src="https://app.oneinventory.com/plugins/ezbe-embed.js"></script>
<script>
// 1) Form tìm phòng – path đặt là đường dẫn của CHÍNH trang hiện tại
window.initBookingForm({
hotel: [{ hotelName: 'Ancient Huế Garden Houses', hotelCode: 'A02D37' }],
target: '.booking-form',
path: window.location.pathname, // => ở lại cùng 1 trang
lang: 'vi',
background: '#ffffff',
buttonBackground: '#fc5b62',
buttonTextColor: '#ffffff',
textColor: '#333333'
});
// 2) Block hiển thị danh sách phòng
window.initBookingEngine({
target: '#room-list',
scrollToTop: true
});
</script>