







Carnaby Chardonnay
An impressive caravan with amazing features and a contemporary style. There are two sizeable bedrooms with plenty of wardrobe space. There is enough storage in the kitchen to meet all of your cooking needs, and has a modern feel.
Read More
There is a fitted “L” shaped sofa in the living area. A coffee table, fitted storage shelves, and an electric fire.
The kitchen features an under-counter refrigerator, a microwave oven, a gas stove and oven, and many storage cabinets. Dining table that stands alone, with two dining chairs and fitted seating on one side.
A spacious master bedroom has a Jack and Jill shower room, a separate WC, fitted wardrobes, a dressing table, and a double bed.
Additionally, there is a sizeable twin bedroom.
document.addEventListener('DOMContentLoaded', function() {
const accordionTitles = document.querySelectorAll('.e-n-accordion-item-title');
accordionTitles.forEach(title => {
title.addEventListener('click', function() {
const textElement = title.querySelector('.e-n-accordion-item-title-text');
// Add fade-out class to start the transition
textElement.classList.add('fade-out');
// Wait for the fade-out transition to finish before changing the text
setTimeout(function() {
// Check the current text and toggle
if (textElement.textContent.trim() === 'Read More') {
textElement.textContent = 'Read Less';
} else {
textElement.textContent = 'Read More';
}
// Remove fade-out class to fade it back in
textElement.classList.remove('fade-out');
}, 300); // Match this duration to the CSS transition duration
});
});
});