Starry Sky Baby Stroller Seat Cushion - Grey Star
Rs. 1,549.00
Rs. 1,536.00
- It Measures: 65cm*36cm(25.6in*14.2in), Weight: 290 gm. Light weight car seat pad for babies 0-1 year olds.
- Fabric: Ultra-soft, breathable cotton on one side and comfortable mesh on the other facilitate reversibly, all year long usage. Polyester cotton filler makes it last longer.
- Easy hand wash without dismantling the product. Ensures hygienic surroundings for your toddler. Attachable to car seats and strollers to secure the baby. Hassle-free seatbelt installment.
- Universal Size fit for infant carriers, car seats, pushchair, prams or strollers.
- Uniquely tailored butterfly shape and split leg cushion perfectly maintain baby’s posture and provides all-round body support.
function filterVariantImages(selectedTitle) {
const allImages = document.querySelectorAll('.variant-image');
allImages.forEach(image => {
const altText = image.getAttribute('data-alt');
if (!altText || altText.trim() === selectedTitle.trim()) {
image.style.display = 'block';
} else {
image.style.display = 'none';
}
});
}
document.addEventListener("DOMContentLoaded", function() {
const variantSelect = document.querySelector('#product-selectors');
if (!variantSelect) return;
// Run once on page load
const initialText = variantSelect.options[variantSelect.selectedIndex].text.split(' - ')[0];
filterVariantImages(initialText);
// Update on change
variantSelect.addEventListener('change', function() {
const selectedText = this.options[this.selectedIndex].text.split(' - ')[0];
filterVariantImages(selectedText);
});
});