/** Shopify CDN: Minification failed

Line 258:0 All "@import" rules must come first

**/
/* ------------------------------------------------------------------
   Lightbox arrow offsets — distance from the left/right edge of the SCREEN.
   Smaller number = closer to the edge. These are equal and stay equal.
   ------------------------------------------------------------------ */
.product-image-popup-container-sticky {
  --lightbox-arrow-offset: 40px;
}

.product-image-popup-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.product-image-main-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  gap: 12px;
}

.product-image-popup-slider.swiper {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  order: 1;
}

.product-image-popup-slider .swiper-slide,
.product-image-popup--media {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-popup--media-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-image-popup-thumbnail-slider.swiper {
  position: relative;
  order: 2;
  flex: 0 0 auto;
  width: 100%;
  padding: 8px 0;
}

.product-image-popup-thumbnail-slider .swiper-slide {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
}

.product-image-popup-thumbnail-slider .swiper-slide-thumb-active {
  border-color: #000;
}

.product-image-popup-thumbnail-media {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.product-image-popup-thumbnail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ------------------------------------------------------------------
   Fullscreen lightbox overlay.

   akuna-h.css also styles this element (width:100vw, no `left`,
   overflow:auto). We override those here: 100vw includes the scrollbar
   width, and the JS hides the page scrollbar when the lightbox opens, so
   a 100vw overlay ends up wider than the visible viewport.
   ------------------------------------------------------------------ */
.product-image-popup-container-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  overflow: hidden;
  background: #fff;
}

.product-image-popup-container-sticky.active {
  display: flex;
  flex-direction: column;
}

.product-image-popup-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden; /* prevent inner scroll */
}

.product-image-main-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  gap: 12px;
  overflow: hidden;
  padding: 0 24px;
  box-sizing: border-box;
}

.product-image-popup-slider.swiper {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  order: 1;
}

.product-image-popup-slider .swiper-slide,
.product-image-popup--media {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-popup--media-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-image-popup-thumbnail-slider.swiper {
  position: relative;
  order: 2;
  flex: 0 0 auto;
  width: 100%;
  padding: 8px 0 16px;
}

/* ------------------------------------------------------------------
   CUSTOM: lightbox navigation arrows.

   The BOX (50x50, white fill, 1px rgb(209,205,196) border, 3px radius)
   comes from assets/akuna-h.css `.product-image-button` — same treatment
   as the `.icon-popup-close` X button. Edit akuna-h.css to restyle the box.

   POSITIONING: these are `position: fixed`, anchored to the VIEWPORT —
   not to the Swiper container. This is deliberate. The popup's containers
   (.product-image-popup-container-sticky, .product-image-popup-container,
   .product-image-main-container) carry a stack of margins/paddings from
   akuna-h.css that are not symmetric in the viewport, so anchoring the
   arrows to them made the left arrow sit further in than the right one.
   The X close button already uses `position: fixed` for the same reason.
   No ancestor has a `transform`, so fixed resolves against the viewport.

   CHEVRON: previously came from Swiper's built-in ::after icon font,
   supplied by a duplicate jsDelivr CDN copy of Swiper that has been
   removed. It is now an inline SVG in snippets/custom-image-popup.liquid.
   assets/swiper.min.css is Swiper 12 CORE ONLY — no navigation styles.
   ------------------------------------------------------------------ */
.product-image-popup-slider .swiper-button-next::after,
.product-image-popup-slider .swiper-button-prev::after {
  content: none !important;
  display: none !important;
}

.product-image-button {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: 0 !important;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.75) !important;
}

.product-image-button-prev {
  left: var(--lightbox-arrow-offset, 40px) !important;
  right: auto !important;
}

.product-image-button-next {
  right: var(--lightbox-arrow-offset, 40px) !important;
  left: auto !important;
}

.product-image-button svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
  pointer-events: none;
  color: inherit;
}

/* akuna-h.css forces `fill: #000` on these paths; our chevrons are stroked, not
   filled, so override it or the chevron renders as a solid black wedge. */
.product-image-button svg path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
}

.product-image-button.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Remove arrows on mobile — lightbox popup slider */
@media screen and (max-width: 749px) {
  .product-image-button-next,
  .product-image-button-prev {
    display: none !important;
  }
}

/* Remove arrows AND slide counter/numbers on mobile — main product page slider */
@media screen and (max-width: 749px) {
  .product__media-wrapper .slider-buttons,
  .product__media-wrapper .slider-button--prev,
  .product__media-wrapper .slider-button--next,
  .product__media-wrapper .slider-counter {
    display: none !important;
  }
}

/* Import Jost font (skip this block if your theme already loads Jost elsewhere) */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

.product-image-popup-title {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 749px) {
  .product-image-popup-title {
    font-size: 85%;
  }
}

@media screen and (min-width: 750px) {
  /* Keep the image clear of the fixed arrows */
  .product-image-main-container {
    padding: 0 110px;
    box-sizing: border-box;
  }

  /* Force the image to fill available height/width between title and thumbnails */
  .product-image-popup-slider.swiper,
  .product-image-popup-slider .swiper-wrapper,
  .product-image-popup-slider .swiper-slide,
  .product-image-popup--media {
    height: 100% !important;
    width: 100% !important;
  }

  .product-image-popup--media-image {
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
  }
}

.product-image-popup-container {
  position: relative;
}

.product-image-popup-close.icon-popup-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100001;
  cursor: pointer;
}

.product-image-popup-container-sticky.active {
  touch-action: none;
}

/* Clip zoomed/panned image to its container */
.zoom-drag-container {
  overflow: hidden !important;
}

/* Make every level in the chain fill its parent's height */
.product-image-popup-media-block.swiper-slide {
  height: 100% !important;
}

.product-image-popup--media,
.product-image-popup--media-image {
  height: 100% !important;
  width: 100% !important;
  display: block;
}

.zoom-drag-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

.product-image-popup--media,
.product-image-popup--media-image,
.zoom-drag-container {
  height: 100% !important;
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
}

.product-image-popup--media-image::before,
.product-image-popup--media-image::after {
  content: none !important;
  display: none !important;
}

.zoom-drag-container img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block;
}

.product-image-main-container {
  margin-top: 32px !important;
}

.product-image-popup-thumbnail-slider .swiper-slide {
  width: 56px !important;
  height: 56px !important;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.product-image-popup-thumbnail-media,
.product-image-popup-thumbnail-media .media-item.media-image {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 !important;
}

.product-image-popup-thumbnail-media .media-item.media-image::before {
  content: none !important;
  display: none !important;
}

.product-image-popup-thumbnail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
