Lounge Seating
Commercial Sales Only. Minimum Purchase Required: $7,000.
/* ======================================
CLS FIX – STABLE HEIGHT RESERVATION
BigCommerce Stencil safe script
====================================== */
document.addEventListener("DOMContentLoaded", function () {
// 1. Lock product image container height early
const mainImage = document.querySelector('.productView-image img');
const container = document.querySelector('.productView-image');
if (mainImage && container) {
const setHeight = () => {
const ratio = mainImage.naturalHeight / mainImage.naturalWidth || 1;
const width = container.offsetWidth;
container.style.height = (width * ratio) + "px";
};
if (mainImage.complete) {
setHeight();
} else {
mainImage.addEventListener("load", setHeight);
}
}
// 2. Prevent late review injection jump
const reviewBlock = document.querySelector('#product-reviews');
if (reviewBlock) {
reviewBlock.style.minHeight = "320px";
}
// 3. Stabilize carousel height (if present)
const carousel = document.querySelector('.productCarousel');
if (carousel) {
carousel.style.minHeight = "300px";
}
});