Lemon Room at I Castagnini

Lemon Room

Sleeps 2 people

22 m2

1 x Queen Bed

Garden View

Offering free toiletries, this double room includes a private bathroom with a shower, a bidet and a hairdryer. Among the room amenities are a wardrobe, a tiled floor, heating as well as outdoor furniture and garden views. The unit has 1 bed.

View photo gallery

GALLERY

Room Amenities

  • TV
  • Wifi
  • Minibar
  • Coat rack
  • Air conditioning
  • Hair dryer
  • Shower
  • Flat screen TV
  • Outdoor furniture
  • Free toiletries
  • Bidet
  • Toilet
  • Bathtub or shower
  • Hairdryer
  • Toilet paper
  • Garden view
  • Landmark view
  • City view
  • Fan
  • Drying rack for clothing
  • Towels
  • Private apartment in building
  • Socket near the bed
  • Detached
  • Linens
  • Tile/Marble floor
  • Heating
  • Wardrobe or closet
  • Mosquito net
  • Clothes rack
  • Upper floors accessible by stairs only
  • Sdraio stagione primavera estate

I Castagnini

Localitá Castagnini 27

Montecatini Val di Cecina , 56040, Italy

[email protected]

+393386572680

+393334949276

If you see this, leave this form field blank.
I agree with the privacy policy

The data collected on this form is processed by I Castagnini and Amenitiz Solutions to manage the contact request information on the website https://www.icastagnini.com in accordance with our Privacy Policy.

I Castagnini
Ciao! Sono l'assistente virtuale de I Castagnini. Come posso aiutarti? 🌿
const IC_WORKER_URL = "https://castagnini-chatbot-proxy.marco-norchi.workers.dev/"; let icHistory = []; function icToggleChat() { const win = document.getElementById('ic-chat-window'); win.style.display = (win.style.display === 'flex') ? 'none' : 'flex'; } async function icSendMessage() { const input = document.getElementById('ic-chat-input'); const text = input.value.trim(); if (!text) return; icAddMessage('user', text); icHistory.push({ role: 'user', content: text }); input.value = ''; icAddMessage('bot', '...'); try { const response = await fetch(IC_WORKER_URL, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ messages: icHistory }) }); const data = await response.json(); icRemoveLastBotMessage(); if (data.reply) { icAddMessage('bot', data.reply); icHistory.push({ role: 'assistant', content: data.reply }); } else { icAddMessage('bot', 'Mi dispiace, si è verificato un errore. Riprova tra poco.'); } } catch (err) { icRemoveLastBotMessage(); icAddMessage('bot', 'Mi dispiace, non riesco a rispondere in questo momento.'); } } function icAddMessage(role, text) { const container = document.getElementById('ic-chat-messages'); const div = document.createElement('div'); div.className = 'ic-msg ' + role; div.innerHTML = ''; div.querySelector('.bubble').textContent = text; container.appendChild(div); container.scrollTop = container.scrollHeight; } function icRemoveLastBotMessage() { const container = document.getElementById('ic-chat-messages'); container.removeChild(container.lastElementChild); }