/* ---------- Overlay ---------- */
.popup-overlay,
.popup-overlay-blocking {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index:9999;
}
.popup-overlay.active,
.popup-overlay-blocking.active {
  opacity:1;
  visibility:visible;
}

/* ---------- Popup Content (Center) ---------- */
.popup-content {
  position:absolute;
  top:50%; left:50%;
  transform: translate(-50%, -50%);
  width:90%;
  max-width:500px;
  background:#fff;
  border-radius:6px;
  padding:20px;
  text-align:center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ---------- Blocking Popup ---------- */
.popup-overlay-blocking.active {
  pointer-events:auto;
}
body .popup-overlay-blocking.active * {
  pointer-events:none;
}
.popup-overlay-blocking.active .popup-content,
.popup-overlay-blocking.active .popup-content * {
  pointer-events:auto;
}

/* ---------- Κείμενο Κλειστού ---------- */
.csh-closed-notice {
  color: #DD3333; 
  font-weight:600;
  margin-bottom:20px;
  line-height:1.4;
  font-size:1.1rem;
}

/* ---------- Κείμενα Ανοιχτού ---------- */
.csh-open-lines {
  color:#DD3333;
  font-weight:600;
  line-height:1.4;
  margin-bottom:20px;
  font-size:1.1rem;
}

/* ---------- Κουμπιά Popup ---------- */
.popup-content button {
  display:inline-block;
  margin:0 5px 10px;
  padding:10px 20px;
  cursor:pointer;
  background:#DD3333;
  color:#fff;
  border:none;
  border-radius:4px;
  font-size:0.95rem;
  transition: background 0.2s ease;
}
.popup-content button:hover {
  background:#bb2d2d;
}

/* ---------- Link Κουμπιού για Πόντους ---------- */
.csh-open-btn {
  display:inline-block;
  margin:0 5px 10px;
  padding:10px 20px;
  background:#DD3333;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  font-size:0.95rem;
  transition: background 0.2s ease;
}
.csh-open-btn:hover {
  background:#bb2d2d;
}

/* ---------- Εμφάνιση Ωραρίων ---------- */
.csh-operating-hours {
  text-align:center;
  margin-top:20px;
}
.csh-operating-hours ul {
  display:inline-block;
  text-align:left;
  padding:0; 
  margin:0;
}
.csh-operating-hours li {
  list-style:none;
  margin-bottom:5px;
}

/* ---------- Responsive Mobile ---------- */
@media (max-width:600px){
  .popup-content {
    width:95%;
    max-width:400px;
    padding:15px;
  }
  .csh-closed-notice,
  .csh-open-lines {
    font-size:1rem;
  }
  .popup-content button,
  .csh-open-btn {
    font-size:0.85rem;
    padding:8px 16px;
  }
}
