/* --- POPUP --- */#popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); display: none; justify-content: center; align-items: center; z-index: 9999;}#popup-box { background: #ffffff; padding: 40px; max-width: 420px; width: 90%; text-align: center; position: relative;}#popup-close { position: absolute; top: 12px; right: 16px; font-size: 22px; cursor: pointer;}
madre logo bluu.jpeg

MADRE RISTORANTE

Contatti

ORARI

 

 

dal Giovedi al Martedì

CHIUSI IL MERCOLEDI'

19:30 - 22:00

 

 

Latina (LT) - Via Armellini, 32 - 04100

 

@madre.ristorante

Instagram:

Madre Ristorante

Facebook:

Telefono:

+39 327 946 1092

ristorantemadre.lt@gmail.com

Email:

Madre ristorante ® All Right Reserved | Latina (LT) | P.IVA 03300980590 | Web & Graphic Design - Matteo Mercuri


// --- POPUP APERTURA ---window.addEventListener("load", function () { if (!localStorage.getItem("popupSeen")) { setTimeout(function () { var popup = document.getElementById("popup-overlay"); if (popup) { popup.style.display = "flex"; localStorage.setItem("popupSeen", "true"); } }, 800); }});document.addEventListener("click", function (e) { if (e.target.id === "popup-close" || e.target.id === "popup-overlay") { var popup = document.getElementById("popup-overlay"); if (popup) popup.style.display = "none"; }});