/** Shopify CDN: Minification failed

Line 167:0 All "@import" rules must come first
Line 312:1 Expected "}" to go with "{"

**/
.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, no scroll */
.product-image-popup-container-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  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; /* optional horizontal breathing room on desktop */
}

.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;
}
/* 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; /* optional — adds a bit of breathing room for all-caps, remove if you don't want it */
}
@media screen and (max-width: 749px) {
  .product-image-popup-title {
    font-size: 85%; /* 15% smaller on mobile */
  }
}
@media screen and (min-width: 750px) {

  /* Add breathing room on the sides so the arrows have space and aren't clipped at the viewport edge */
  .product-image-main-container {
    padding: 0 70px;
    box-sizing: border-box;
  }

  /* Force the image to grow and fill all 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;
  }

  /* Reposition arrows so they sit fully inside the padded area, not clipped at the edge */
  .product-image-button-next {
    right: 20px !important;
  }

  .product-image-button-prev {
    left: 20px !important;
  }
}
@media screen and (min-width: 750px), screen and (max-width: 749px) {
  .product-image-popup-container {
    position: relative;
  }

.product-image-popup-close.icon-popup-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  cursor: pointer;
}
.product-image-popup-container-sticky.active {
  touch-action: none;
}
/* Clip zoomed/panned image to its container — uses the theme's own .zoom-drag-container as the boundary */
.zoom-drag-container {
  overflow: hidden !important;
}

/* Make every level in the chain actually 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;
}

/* Target the real <img>, nested inside zoom-drag-container */
.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%;
}