/** Shopify CDN: Minification failed

Line 609:0 Unexpected "}"

**/
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-modal.active {
  display: flex;
  opacity: 1;
}

.zoom-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.zoom-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-btn {
  position: absolute;
  background: rgba(255, 239, 234, 0.6);
  border: 1px solid transparent;
  color: #997273;
  border-radius: 25px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.zoom-btn:hover {
background-color: rgba(255, 239, 234, 1);

  border-color: transparent;
  /* transform: scale(1.1); */
}

.zoom-btn:active {
  transform: scale(0.95);
}

.zoom-close {
  top: 20px;
  right: 20px;
}

.zoom-nav {
  top: 50%;
  transform: translateY(-50%);
}

.zoom-prev {
  left: 15px;
}

.zoom-next {
  right: 15px;
}

.zoom-counter {
  position: absolute;
  top: 20px;
  left: 15px;
  /* transform: translateX(-50%); */
  background: #FFEFEA;
  color: #997273;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index:10001;
}
 /* <button class="zoom-btn zoom-nav zoom-prev" onclick="zoomModal.navigate(-1)" aria-label="Previous">
          <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
            <polyline points="15,18 9,12 15,6"></polyline>
          </svg>
        </button>
        <button class="zoom-btn zoom-nav zoom-next" onclick="zoomModal.navigate(1)" aria-label="Next">
          <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
            <polyline points="9,18 15,12 9,6"></polyline>
          </svg>
        </button> */
/* Instructions positioned at top-left with smooth fade */
/* .zoom-instructions {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 1;
  transition: opacity 0.8s ease;
  z-index: 10001;
  pointer-events: none;
} */

.zoom-instructions.hidden {
  opacity: 0;
}

.instruction-content {
  /* background: rgba(0, 0, 0, 0.8); */
  color: #997273;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 0px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0);
  animation: instructionPulse 2s ease-in-out infinite;
}

@keyframes instructionPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.zoom-image-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zoom-image {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
cursor: zoom-in;
transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
border-radius: 8px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
user-select: none;
-webkit-user-drag: none;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
display: block;
margin-top: 0;
margin-bottom: auto;
align-self: flex-start;
}


.zoom-image.zoomed {
  cursor: grab;
  transform-origin: center center;
  image-rendering: auto;
  image-rendering: high-quality;
}

.zoom-image.dragging {
  cursor: grabbing;
}

.zoom-image.transitioning {
  opacity: 0.7;
}

/* Zoom Controls Container */
.zoom-controls-container {
  position: absolute;
  bottom: 10px;
  left: 50%; /* Default for larger screens */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10001;
}
@media (max-width: 375px) and (max-height: 667px) {
.zoom-controls-container {
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  max-width: 90vw !important;
}

.zoom-thumbnails {
  max-width: 85vw !important;
  overflow-x: auto !important;
  padding: 6px !important;
}

.zoom-thumbnail {
  width: 35px !important;
  height: 35px !important;
  flex-shrink: 0 !important;
}

.zoom-control-btn {
  width: 36px !important;
  height: 36px !important;
  font-size: 14px !important;
}

/* Ensure the main image doesn't get covered */
.zoom-image-container {
  padding-bottom: 80px !important;
}
}

/* EXTRA SMALL PHONES FIX */
@media (max-width: 320px) {
.zoom-controls-container {
  bottom: 5px !important;
}

.zoom-thumbnail {
  width: 30px !important;
  height: 30px !important;
}

.zoom-control-btn {
  width: 32px !important;
  height: 32px !important;
}
}
@media (max-width: 768px) {
  .zoom-controls-container {
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 95vw !important;
  gap: 10px !important;
}

.zoom-thumbnails {
  max-width: calc(100vw - 100px) !important;
  overflow-x: auto !important;
  padding: 8px !important;
}

.zoom-thumbnail {
  width: 40px !important;
  height: 40px !important;
  flex-shrink: 0 !important;
}

.zoom-control-btn {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
}
.zoom-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center centercov !important;
}

.zoom-image-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  height: 100vh !important;
}
}

@media (max-width: 767px) {
.zoom-controls-container {
  left: 50%; /* Override for mobile screens */
}
.zoom-counter {
  left: 15px;
}
.zoom-prev {
  left: 15px;
}

.zoom-next {
  right: 15px;
}

.zoom-thumbnails {
  /* display:none !important; */
}
}


/* Zoom Control Buttons */
.zoom-control-btn {
  /* background: rgba(0, 0, 0, 0.7); */
  background: rgba(255, 239, 234, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #997273;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: bold;
}

.zoom-control-btn:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(255, 239, 234, 1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}


.zoom-control-btn:active {
  transform: scale(0.95);
}

.zoom-control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.zoom-control-btn:disabled:hover {
  /* background: rgba(0, 0, 0, 0.7); */
  background: rgba(255, 239, 234, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.zoom-thumbnails {
  display: flex;
  gap: 8px;
  /* background: rgba(0, 0, 0, 0.5); */
  background: rgba(255, 239, 234, 0.6);
  padding: 12px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(153, 114, 115, 0);
  max-width: 90vw;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.zoom-thumbnails::-webkit-scrollbar {
  display: none;
}

.zoom-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  flex-shrink: 0;
}

.zoom-thumbnail:hover {
  transform: scale(1.1);
  border: 1px solid rgba(153, 114, 115, 0.4);
}

.zoom-thumbnail.active {
  border: 1px solid rgba(153, 114, 115, 0.8);
  transform: scale(1.1);
}

.product-form__input--pill input[type="radio"],
fieldset.product-form__input--pill input[type="radio"],
.product-form__input.product-form__input--pill input[type="radio"] {
display: none !important;
opacity: 0 !important;
position: absolute !important;
left: -9999px !important;
pointer-events: auto !important;
}

.product-form__input--pill input[type="radio"] + label,
fieldset.product-form__input--pill input[type="radio"] + label,
.product-form__input.product-form__input--pill input[type="radio"] + label {
min-width: 63px !important;
max-width: 63px !important;
width: 63px !important;
height: 35px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
margin: 0 !important;
padding: 0 !important;
border: 0.5px solid #3e3e3e !important;
border-radius: 0 !important;
font-size: 1.1rem !important;
font-weight: 200 !important;
font-family: var(--font-forall) !important;
background-color: white !important;
color: #3e3e3e !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
box-sizing: border-box !important;
overflow: hidden !important;
white-space: nowrap !important;
text-overflow: ellipsis !important;
text-decoration: none !important;
position: relative !important;
z-index: 1 !important;
transform: none !important;
box-shadow: none !important;
}

.product-form__input--pill input[type="radio"] + label:hover,
fieldset.product-form__input--pill input[type="radio"] + label:hover,
.product-form__input.product-form__input--pill input[type="radio"] + label:hover {
background-color: white !important;
/* border: 2px solid black !important; */
color: black !important;
/* transform: translateY(-1px) !important; */
}

.product-form__input--pill input[type="radio"]:checked + label,
fieldset.product-form__input--pill input[type="radio"]:checked + label,
.product-form__input.product-form__input--pill input[type="radio"]:checked + label,
.product-form__input--pill input[type="radio"][checked] + label,
fieldset.product-form__input--pill input[type="radio"][checked] + label,
.product-form__input--pill label.size-selected,
fieldset.product-form__input--pill label.size-selected {
background-color: white !important;
border: 2px solid #3e3e3e !important;
color: #3e3e3e !important;
font-size: 1.4rem !important;
font-weight: 400 !important;
transform: scale(1.05) !important;
/* box-shadow: 0 0 0 1px #3e3e3e inset !important; */
z-index: 2 !important;
}

.product-form__input--pill,
fieldset.product-form__input--pill,
.product-form__input.product-form__input--pill {
display: flex !important;
flex-wrap: wrap !important;
justify-content: flex-start !important;
align-items: center !important;
/* gap: 1.2rem !important; */
box-sizing: border-box !important;
margin: 0 auto 1.5rem auto !important;
max-width: 430px !important;
}

/* 📱 Mobile styles */
@media (max-width: 768px) {
/* Styling the active size option */
.product-form__input--pill input[type="radio"]:checked + label {
font-size: 1.2rem;
font-weight: 600;
border: 2px solid #000;
background-color: #f5f5f5;
}

/* Optional base style */
.product-form__input--pill label {
display: inline-block;
padding: 8px 12px;
margin: 4px;
border: 1px solid #ccc;
cursor: pointer;
transition: all 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.product-form__input--pill,
fieldset.product-form__input--pill {
  gap: calc((100vw - 30px - (63px * 5)) / 4) !important;
  justify-content: flex-start !important;
}

.product-form__input--pill input[type="radio"] + label,
fieldset.product-form__input--pill input[type="radio"] + label {
  height: 40px !important;
  font-size: 1.2rem !important;
  padding: 15px !important;
  box-shadow: 0 0 0 0.5px #3e3e3e !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  will-change: transform !important;
}

.product-form__input--pill input[type="radio"]:checked + label,
fieldset.product-form__input--pill input[type="radio"]:checked + label,
.product-form__input--pill label.size-selected,
fieldset.product-form__input--pill label.size-selected {
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  /* border: 1.5px solid #3e3e3e !important;
  background-color: #fafafa !important; */
}
}

/* 💻 Viewport: 769px - 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
.product__info-wrapper {
  padding-right: 30px !important;
  padding-left: 15px !important;
}

.product-form__input--pill,
fieldset.product-form__input--pill {
  gap: 6.1px !important;
}
}

/* 💻 Viewport: 1200px - 1540px */
@media (min-width: 1200px) and (max-width: 1540px) {
.product-form__input--pill,
fieldset.product-form__input--pill {
  gap: 10.2px !important;
}
}

/* 🖥 Viewport: 1541px - 1680px */
@media (min-width: 1541px) and (max-width: 1680px) {
.product-form__input--pill,
fieldset.product-form__input--pill {
  gap: 16px !important;
}
}

/* 🖥 Viewport: 1681px and up */
@media (min-width: 1681px) {
.product-form__input--pill,
fieldset.product-form__input--pill {
  gap: 13px !important;
}
}
  .zoom-btn {
    width: 40px;
    height: 40px;
  }

  .zoom-close {
    top: 20px;
    right: 25px;
  }

  .zoom-nav {
    width: 44px;
    height: 44px;
  }

  .zoom-prev {
    left: 15px;
  }

  .zoom-next {
    right: 25px;
  }

  .zoom-thumbnail {
    width: 40px;
    height: 40px;
  }

  .zoom-control-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .zoom-instructions {
    top: 15px;
    left: 15px;
  }

  .instruction-content {
    padding: 10px 16px;
    font-size: 13px;
  }
}
/* <div id="zoomInstructions" class="zoom-instructions">
          <div class="instruction-content">
            <span>• Drag to explore • Use +/- to zoom</span>
          </div>
        </div> */
  /* Product Page Wishlist Button */
.product-wishlist-btn {
transition: transform 0.2s ease;
color: #997273;
}

.product-wishlist-btn:hover {
transform: scale(1.1);
}

.product-wishlist-btn .heart-icon {
stroke: #997273;
fill: transparent;
transition: all 0.3s ease;
}

.product-wishlist-btn .heart-icon.clicked {
stroke: #997273;
fill: #997273;
animation: heartPop 0.4s ease;
}

@keyframes heartPop {
0% { transform: scale(1); }
50% { transform: scale(1.3); }
100% { transform: scale(1); }
}
