/** Shopify CDN: Minification failed

Line 163:0 Unexpected "}"

**/
:root {
  --pdp-thumb-size: 80px;
  --pdp-thumb-gap: 8px;
  --pdp-thumb-border-color: rgba(0, 0, 0, 0.12);
  --pdp-thumb-active-color: #880320;
  --pdp-thumb-active-width: 2px;
  --pdp-nav-size: 40px;
  --pdp-nav-bg: rgba(255, 255, 255, 0.92);
  --pdp-nav-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  --pdp-radius: 12px;
  --pdp-transition-slide: 420ms cubic-bezier(0.4, 0, 0.2, 1);
  --pdp-transition-fade: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --pdp-zoom-bg: rgba(10, 10, 10, 0.94);
  --pdp-dot-size: 7px;
  --pdp-dot-color: #d9d9d9;
  --pdp-dot-active: #7d7d7d;
}

/* ---------------------------------------------------------------
   Gallery root container
--------------------------------------------------------------- */
.pdp-gallery {
  position: relative;
  width: 100%;
  user-select: none;
}



/* ---------------------------------------------------------------
   DESKTOP + TABLET LANDSCAPE: thumbnail-sidebar layout
   - Thumbs run vertically on the left (or below for stacked)
   - Stage shows one large image
--------------------------------------------------------------- */



/* ---------------------------------------------------------------
   Stage
--------------------------------------------------------------- */
.pdp-gallery__stage-wrap {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--pdp-radius);
  background: transparent;
}

.pdp-gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--pdp-radius);
}

/* Slide base */
.pdp-gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition:
    opacity var(--pdp-transition-fade),
    transform var(--pdp-transition-slide);
  will-change: opacity, transform;
  border-radius: var(--pdp-radius);
}

.pdp-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Slide entering from left (navigating backwards) */
.pdp-gallery__slide.slide-from-left {
  transform: translateX(-60px);
}

/* Images */
.pdp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--pdp-radius);
  cursor: zoom-in;
  transition: transform 280ms ease;
}

.pdp-gallery__img:hover {
  transform: scale(1.012);
}

/* Video wrap */
.pdp-gallery__video-wrap,
.pdp-gallery__model-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  

}

.pdp-gallery__video-wrap iframe,
.pdp-gallery__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--pdp-radius);
}

/* ---------------------------------------------------------------
   Navigation arrows (stage)
--------------------------------------------------------------- */
.pdp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--pdp-nav-size);
  height: var(--pdp-nav-size);
  background: var(--pdp-nav-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: var(--pdp-nav-shadow);
  display: none; /* shown on desktop/landscape via media query */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #c4122e;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pdp-gallery__nav:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.pdp-gallery__nav--prev { left: 10px; }
.pdp-gallery__nav--next { right: 10px; }

.pdp-gallery__nav svg { pointer-events: none; }

/* ---------------------------------------------------------------
   Thumbnails
--------------------------------------------------------------- */
/* .pdp-gallery__thumbs {
  display: none; /* shown on desktop/landscape via media query */
} */

.pdp-gallery__thumb {
  position: relative;
  width: var(--pdp-thumb-size);
  height: var(--pdp-thumb-size);
  padding: 0;
  border: var(--pdp-thumb-active-width) solid var(--pdp-thumb-border-color);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(var(--color-foreground, 0,0,0), 0.03);
  flex-shrink: 0;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 180ms ease;
}

.pdp-gallery__thumb:hover {
  border-color: rgba(136, 3, 32, 0.4);
  transform: scale(1.04);
}

.pdp-gallery__thumb.is-active {
  border-color: var(--pdp-thumb-active-color);
  box-shadow: 0 0 0 1px var(--pdp-thumb-active-color);
}

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.pdp-gallery__thumb-badge {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  display:none;
}

.pdp-gallery__thumb-badge svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------
   Dots — mobile/tablet portrait only
--------------------------------------------------------------- */
.pdp-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding:20px;
}

.pdp-gallery__dot {
  width: var(--pdp-dot-size);
  height: var(--pdp-dot-size);
  border-radius: 50%;
  background: var(--pdp-dot-color);
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
}

.pdp-gallery__dot.is-active {
  background: var(--pdp-dot-active);
  transform: scale(1.3);
}


/* -------- */

/* ---------------------------------------------------------------
   MOBILE / TABLET PORTRAIT: carousel swipe layout
--------------------------------------------------------------- */
@media screen and (max-width: 749px),
       screen and (min-width: 750px) and (max-width: 989px) and (orientation: portrait) {
  .pdp-gallery {
    display: block;
  }

  .pdp-gallery__thumbs { display: none !important; }
  .pdp-gallery__nav { display: none !important; }
  .pdp-gallery__dots { display: flex !important; }

  /* Stage becomes full-width swipeable strip */
  .pdp-gallery__stage {
    display: flex;
    overflow: visible;
    border-radius: var(--pdp-radius);
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .pdp-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none; /* swipe uses JS translateX */
  }

  /* Touch strip managed by JS transform on .pdp-gallery__stage */
  .pdp-gallery__stage.is-swiping {
    cursor: grabbing;
  }

  .pdp-gallery__stage {
    will-change: transform;
  }
}

/* ---------------------------------------------------------------
   ZOOM MODAL — white full-screen lightbox
--------------------------------------------------------------- */
@media screen and (max-width: 990px){
  .pdp-zoom-modal__inner{
    padding-top: 100px !important;
    padding-bottom: 10px !important
  }

}

.pdp-zoom-modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding-top: 150px; /* adjust to match your actual header height */
}

.pdp-zoom-modal {
  position: fixed;
  top: 0;           /* will be overridden below */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;      /* LOWER than header z-index so header shows on top */
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
}

.pdp-zoom-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop — hidden, white modal replaces it */
.pdp-zoom-modal__backdrop {
  display: none;
}

/* Inner */
.pdp-zoom-modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

/* Track */
.pdp-zoom-modal__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--pdp-transition-slide);
  will-change: transform;
  align-items: center;
  background: #fff;
}

.pdp-zoom-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 60px 80px; */
  box-sizing: border-box;
  opacity: 0;
  transition: opacity var(--pdp-transition-fade);
  background: #fff;
}

@media screen and (max-width: 749px) {
  .pdp-zoom-modal__slide {
    /* padding: 60px 16px 40px; */
  }
}

.pdp-zoom-modal__slide.is-active {
  opacity: 1;
}

.pdp-zoom-modal__slide img,
.pdp-zoom-modal__slide video,
.pdp-zoom-modal__slide iframe {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  cursor: zoom-out;
}

.pdp-zoom-modal__slide .pdp-gallery__video-wrap {
  width: 80vw;
  height: 80vh;
  max-width: 1100px;
}

.pdp-zoom-modal__slide .pdp-gallery__video-wrap iframe,
.pdp-zoom-modal__slide .pdp-gallery__video-wrap video {
  width: 100%;
  height: 100%;
}

.pdp-zoom-modal__close {
  position: fixed;
  top: 90px;        /* fallback, overridden by JS */
  right: 20px;      /* margin from right edge */
  z-index: 99999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  color: #c4122e;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.pdp-zoom-modal__close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: scale(1.08);
}

/* Mobile — slightly less margin on small screens */
@media screen and (max-width: 749px) {
  .pdp-zoom-modal__close {
    right: 12px;
  }
  .pdp-zoom-modal__slide .pdp-gallery__video-wrap iframe,
.pdp-zoom-modal__slide .pdp-gallery__video-wrap video {
width: 100%;
height: auto;
}
}


/* Modal navigation arrows — dark on white */
.pdp-zoom-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  color: #c4122e;
  cursor: pointer;
  z-index: 10;
  transition: background 180ms ease, transform 180ms ease;
}

.pdp-zoom-modal__nav:hover {
  background: rgba(0, 0, 0, 0.14);
  transform: translateY(-50%) scale(1.08);
}

.pdp-zoom-modal__nav--prev { left: 20px; }
.pdp-zoom-modal__nav--next { right: 20px; }

@media screen and (max-width: 749px) {
  .pdp-zoom-modal__nav--prev { left: 8px; }
  .pdp-zoom-modal__nav--next { right: 8px; }
  .pdp-zoom-modal__nav { width: 40px; height: 40px; }
}

/* Counter */
.pdp-zoom-modal__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.07);
  padding: 4px 14px;
  border-radius: 20px;
  display: flex;
  gap: 2px;
  align-items: center;
}

/* Modal open/close animation */
.pdp-zoom-modal.zoom-entering .pdp-zoom-modal__inner {
  animation: zoomModalIn 360ms cubic-bezier(0.2, 0, 0, 1) forwards;
}

.pdp-zoom-modal.zoom-exiting .pdp-zoom-modal__inner {
  animation: zoomModalOut 280ms cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes zoomModalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes zoomModalOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.95); }
}

.pdp-zoom-modal__track.no-transition {
  transition: none !important;
}

body.pdp-modal-open {
  overflow: hidden;
}

/* ============================================
   DESKTOP, TABLET LANDSCAPE & MOBILE LANDSCAPE
   - Thumbnails BELOW main image
   ============================================ */

/* Desktop & Tablet Landscape (width 750px and above) */
@media screen and (min-width: 750px) and (orientation: landscape),
       screen and (min-width: 990px) {
  .pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pdp-gallery__stage-wrap {
    width: 100%;
    margin-top: 0px !important;
  }

  .pdp-gallery__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .pdp-gallery__thumbs {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(80px, 80px));
    gap: 12px;
    justify-content: space-between;
    padding: 8px 0;
    height: auto !important;
    max-height: none !important;
    overflow-y: visible;
  }

  .pdp-gallery__dots {
    display: none !important;
  }

  .pdp-gallery__nav {
    display: flex !important;
  }
}

/* Mobile Landscape Only (height 550px or less) */
@media screen and (max-height: 550px) and (orientation: landscape) {
  .pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pdp-gallery__thumbs {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(70px, 70px));
    gap: 10px;
    justify-content: space-between;
  }

  .pdp-gallery__dots {
    display: none !important;
  }

  .pdp-gallery__nav {
    display: flex !important;
  }

  /* Optional: Adjust stage height for landscape */
  .pdp-gallery__stage {
    max-height: 70vh;
  }
}