#avviso-home-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  z-index: 99999;
  opacity: 1; visibility: visible;
  display:none;
}

#avviso-home-popup {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: white; padding: 0; border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  max-width: 90%; width: 800px; max-height: 90vh;
  z-index: 9999;
  opacity: 0; transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.1s ease, transform 0.3s ease;
  pointer-events: none;
}

#avviso-home-popup.show {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}



#avviso-home-popup.popup-rosso { border-top: 5px solid #e74c3c; }
#avviso-home-popup.popup-arancione { border-top: 5px solid #e98901; }
/* #avviso-home-popup.popup-verde { border-top: 5px solid #2ecc71; } */
.popup-content { display: flex; flex-direction: row; }
#avviso-home-popup.no-image .popup-content { display: block; }
#avviso-home-popup.no-image .popup-text { width: 100%; padding: 20px; }



.popup-text { padding: 20px; width: 70%; box-sizing: border-box; }
.popup-image { width: 30%;  display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.popup-image img { max-width: 100%; max-height: 200px; border-radius: 4px; }
/* Override quando non c'è testo */
#avviso-home-popup .popup-content.no-text .popup-image img {
  max-height: none;
}

#avviso-home-popup p { font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; margin: 15px 0 10px 0; font-size: 18px; line-height: normal; }
#avviso-home-popup button { background: #444; color: white; border: none; padding: 0px 10px; border-radius: 20px; cursor: pointer; }

.avviso-titolo { font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; font-size: 1.5em; font-weight: bold; margin-bottom: 0em; color: #000; }
.avviso-sottotitolo { font-size: 1.3em; font-weight: normal; margin-bottom: 0em; color: #444; padding-bottom: 0; }

#avviso-home-popup.text-light { color: #fff; }
#avviso-home-popup.text-light .avviso-titolo { color: #fff; }
#avviso-home-popup.text-light .avviso-sottotitolo { color: #fff; }
#avviso-home-popup.text-light button { background: #fff; color: #000; font-weight: bold; }
#avviso-home-popup.text-dark { color: #111; }
#avviso-home-popup.text-dark .avviso-titolo { color: #000; }
#avviso-home-popup.text-dark .avviso-sottotitolo { color: #444; }
#avviso-home-popup.text-dark button { background: #222; color: #fff; }

#avviso-close { position: absolute; top: -10px; right: -10px; background: transparent; color: inherit; font-size: 28px; border: none; cursor: pointer; z-index: 10000; line-height: 1; }
#avviso-close:hover { color:#d70073!important }




#avviso-home-popup .popup-content.no-text {
  display: block;
}

#avviso-home-popup .popup-content.no-text .popup-image {
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
}

#avviso-home-popup .popup-content.no-text .popup-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

