/* --- Popup modul --- */

/* Překryvná vrstva přes celou stránku */
#custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Poloprůhledné černé pozadí */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Styl pro zobrazení popupu */
#custom-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Samotný kontejner popupu */
#custom-popup-container {
  position: relative;
  background-color: #ffffff;
  padding: 40px 25px 25px 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

/* Křížek pro zavření vpravo nahoře */
#custom-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

#custom-popup-close:hover {
  color: #000;
}

/* Obsah načtený ze stránky */
#custom-popup-content .p-detail-inner {
  padding: 0; /* Odstraní výchozí padding Shoptetu */
}

/* Odkaz pro trvalé zavření */
#custom-popup-no-show {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
}

#custom-popup-no-show:hover {
  color: #333;
}
