/** Shopify CDN: Minification failed

Line 280:1 Expected "}" to go with "{"

**/
/* =========================================================
   NAILSALA ACADEMY — IMAGE LIGHTBOX
   ========================================================= */


/* ---------- Eligible Academy Images ---------- */

.academy-zoomable {
  cursor: zoom-in;
}


/* ---------- Zoom Hint ---------- */

.academy-zoom-wrap {
  position: relative;
}

.academy-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;

  width: auto;
  height: auto;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border-radius: 0;

  font-size: 0;
  line-height: 1;

  pointer-events: none;
  user-select: none;

  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.academy-zoom-hint::after {
  content: "🔍";
  font-size: 28px;
  line-height: 1;
}

/* ---------- Main Overlay ---------- */

#AcademyLightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;

  background: rgba(0, 0, 0, 0.92);

  overflow: hidden;

  overscroll-behavior: contain;
  touch-action: none;
}

#AcademyLightbox.is-open {
  display: flex;
}


/* ---------- Image Stage ---------- */

.academy-lightbox__stage {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  touch-action: none;
}


/* ---------- Enlarged Image ---------- */

.academy-lightbox__image {
  display: block;

  max-width: 94vw;
  max-height: 92vh;

  width: auto;
  height: auto;

  object-fit: contain;

  transform-origin: center center;
  transform: translate3d(0, 0, 0) scale(1);

  cursor: zoom-in;

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;

  touch-action: none;

  will-change: transform;
}


/* ---------- Close Button ---------- */

.academy-lightbox__close {
  position: fixed;

  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));

  z-index: 1000001;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);
  color: #fff;

  font-size: 30px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.academy-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}


/* ---------- Zoom Status ---------- */

.academy-lightbox__zoom-status {
  position: fixed;

  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));

  z-index: 1000001;

  transform: translateX(-50%);

  padding: 7px 11px;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.58);
  color: #fff;

  font-size: 11px;
  font-weight: 600;
  line-height: 1;

  pointer-events: none;
  user-select: none;
}


/* ---------- Prevent Background Scroll ---------- */

html.academy-lightbox-open,
body.academy-lightbox-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}


/* ---------- Desktop ---------- */

@media (hover: hover) and (pointer: fine) {

  .academy-zoomable:hover {
    opacity: 0.97;
  }

  .academy-lightbox__image.is-zoomed {
    cursor: grab;
  }

  .academy-lightbox__image.is-dragging {
    cursor: grabbing;
  }
}


/* ---------- Mobile / Tablet ---------- */

@media (hover: none), (pointer: coarse) {

  .academy-zoom-hint {
    right: 8px;
    bottom: 8px;

    padding: 6px 8px;

    font-size: 10px;
  }

  .academy-lightbox__image {
    max-width: 100vw;
    max-height: 100dvh;
  }

  .academy-lightbox__close {
    width: 46px;
    height: 46px;

    font-size: 31px;
  }
}


/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {

  .academy-lightbox__image {
    transition: none !important;
  }
body {
  outline: 12px solid red !important;
  outline-offset: -12px !important;
}
.academy-zoom-hint::before {
  content: "🔍";
  font-size: 18px;
  line-height: 1;
}
/* Academy image zoom — icon only */

.academy-zoom-hint {
  color: transparent !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  gap: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.academy-zoom-hint::after {
  content: "🔍";
  color: #fff;
  font-size: 18px;
  line-height: 1;
}