/* WEBdesign45 - Lightbox responsive */
.wd45-lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 10vw;
  box-sizing:border-box;
  background:rgba(0,0,0,.90);
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease,visibility .2s ease;
}
.wd45-lightbox-overlay.is-open{opacity:1;visibility:visible}

.wd45-lightbox-dialog{
  position:relative;
  width:100%;
  max-width:1200px;
  max-height:96vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  box-sizing:border-box;
  padding:52px 18px 18px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:18px;
  background:rgba(12,12,12,.96);
  box-shadow:0 12px 50px rgba(0,0,0,.65);
}

.wd45-lightbox-media{
  width:100%;
  max-width:100%;
  max-height:70vh;
  overflow:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  box-sizing:border-box;
}
.wd45-lightbox-image{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:70vh;
  box-shadow:0 8px 40px rgba(0,0,0,.5);
}

.wd45-lightbox-caption{
  width:100%;
  max-width:100%;
  margin-top:14px;
  padding:14px 22px;
  box-sizing:border-box;
  color:#222;
  background:#fff;
  border-radius:12px;
  text-align:center;
  font-size:18px;
  line-height:1.55;
}
.wd45-lightbox-caption strong{display:block;font-size:1em}
.wd45-lightbox-caption span{display:block;margin-top:6px;font-size:1em;color:#666}

/* Fermeture clairement visible, dans le cadre */
.wd45-lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:5;
  width:44px;
  height:44px;
  padding:0;
  border:2px solid rgba(255,255,255,.85);
  border-radius:50%;
  background:#222;
  color:#fff;
  font-size:30px;
  font-weight:700;
  line-height:38px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 2px 12px rgba(0,0,0,.6);
}
.wd45-lightbox-close:hover,.wd45-lightbox-close:focus{
  background:#fff;
  color:#111;
  border-color:#fff;
  outline:none;
}

.wd45-lightbox-tools{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  margin-top:18px;
}
.wd45-lightbox-tools button{
  width:46px;
  height:46px;
  flex:0 0 46px;
}
.wd45-zoom-reset{width:86px!important;flex-basis:86px!important}

.menu-image-placeholder{
  min-height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2f2f2;
  color:#777;
  text-align:center;
  padding:20px;
}
.menu-image-placeholder small{font-size:.8em}

@media(max-width:767px){
  .wd45-lightbox-overlay{padding:10px 10vw}
  .wd45-lightbox-dialog{
    width:100%;
    max-width:none;
    max-height:96vh;
    padding:48px 10px 12px;
    border-radius:14px;
  }
  .wd45-lightbox-media{max-height:60vh}
  .wd45-lightbox-image{max-width:100%;max-height:58vh}
  .wd45-lightbox-caption{font-size:17px;padding:12px 14px}
  .wd45-lightbox-tools{gap:24px;margin-top:16px}
  .wd45-lightbox-close{top:8px;right:8px;width:42px;height:42px;font-size:28px;line-height:36px}
}
