/* V94.4 unlock: disable old blocking image popup and use a safe lightbox only */
.athp-lightbox{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}
body.athp-lb-locked,
body[style*="overflow: hidden"]{
  overflow:auto!important;
}

/* Images clickable, but not logos/header/footer */
main img:not(.athp-no-lightbox),
.athp-media img,
.ath-v94-media-rescue img,
[class*="gallery"] img{
  cursor:zoom-in;
}

/* New safe lightbox */
.athp44-lightbox{
  position:fixed;
  inset:0;
  z-index:2147483000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(32,22,14,.78);
  backdrop-filter:blur(7px);
  font-family:Arial,Tahoma,sans-serif;
}
.athp44-lightbox.is-open{
  display:flex;
}
.athp44-box{
  width:min(1120px,96vw);
  max-height:94vh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 292px;
  gap:14px;
  background:#fffaf3;
  border:1px solid rgba(185,138,54,.28);
  border-radius:26px;
  padding:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.38);
  overflow:hidden;
}
.athp44-media{
  min-height:320px;
  max-height:82vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:20px;
  background:#15110d;
}
.athp44-media img{
  max-width:100%;
  max-height:82vh;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
.athp44-panel{
  display:flex;
  flex-direction:column;
  gap:9px;
  min-width:0;
}
.athp44-close{
  align-self:flex-end;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(185,138,54,.28);
  background:#fff;
  color:#3f2a1b;
  font-weight:900;
  font-size:22px;
  cursor:pointer;
}
.athp44-title{
  margin:0 0 4px;
  color:#3f2a1b;
  font-size:18px;
  line-height:1.4;
}
.athp44-panel a,
.athp44-panel button{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(185,138,54,.25);
  background:#fff;
  color:#3f2a1b;
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  font-family:Arial,Tahoma,sans-serif;
}
.athp44-panel .gold{
  border:0;
  background:linear-gradient(135deg,#b98a36,#dfc078);
  color:#fff;
}
.athp44-panel .wa{
  border:0;
  background:#25D366;
  color:#fff;
}
.athp44-note{
  margin:0;
  color:#756556;
  font-size:12px;
  line-height:1.7;
}
@media(max-width:720px){
  .athp44-lightbox{padding:9px}
  .athp44-box{
    grid-template-columns:1fr;
    overflow:auto;
    max-height:96vh;
    border-radius:20px;
  }
  .athp44-media{
    min-height:240px;
    max-height:62vh;
  }
  .athp44-media img{
    max-height:62vh;
  }
}
