/* runtime.css — styling for our re-implemented interactions only.
   Scoped with distinctive class names so it never collides with captured Wix CSS. */

.elcon-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}
.elcon-lightbox.open { display: flex; }
.elcon-lightbox .lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.elcon-lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  padding: 12px;
  opacity: 0.85;
}
.elcon-lightbox button:hover { opacity: 1; }
.elcon-lightbox .lb-close { top: 12px; right: 16px; font-size: 48px; }
.elcon-lightbox .lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.elcon-lightbox .lb-next { right: 8px; top: 50%; transform: translateY(-50%); }
html.lb-active { overflow: hidden; }

.elcon-form-note {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  font-family: roboto, sans-serif;
}
.field-error { outline: 2px solid #e53935 !important; }

/* Wix back-to-top button: hidden at the top of the page, fades in once scrolled
   (matches the live behavior; our captured frame may have left it visible). */
#BACK_TO_TOP_BUTTON {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}
html.show-back-to-top #BACK_TO_TOP_BUTTON {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}
