/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 41:8 Expected identifier but found whitespace
Line 41:10 Unexpected "{"
Line 41:19 Expected ":"
Line 59:8 Expected identifier but found whitespace
Line 59:10 Unexpected "{"
Line 59:19 Expected ":"

**/

/* Prevent horizontal overflow globally */
* {
  box-sizing: border-box;
}

.interactive-image-section {
  padding: 40px 0;
  background: {{ section.settings.bg_color }};
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container3 {
  max-width: 700px;
  margin: auto;
  padding: 0 20px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: {{ section.settings.text_color }};
}

.image-container {
  margin-bottom: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.image-container:last-child {
  margin-bottom: 0;
}

.image-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: {{ section.settings.text_color }};
}

.edit-notice {
  background: #e3f2fd;
  color: #1976d2;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  user-select: none;
  overflow: hidden;
  max-width: 100%;
}

.image-wrapper[data-edit-mode="true"] {
  cursor: crosshair;
  border: 2px dashed #1976d2;
  padding: 10px;
  border-radius: 8px;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.main-image.lazy {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

.main-image.lazy.loaded {
  filter: blur(0);
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.loading-spinner-icon {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Position cursor for edit mode */
.position-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 1000;
  background: rgba(0, 123, 255, 0.1);
  border: 2px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

.cursor-coords {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 4;
}

.hotspot-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  position: relative;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hotspot-dot {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: block;
}

.hotspot-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.hotspot:hover .hotspot-marker {
  transform: scale(1.15);
}

.hotspot-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.hotspot-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.hotspot:hover .hotspot-label {
  opacity: 1;
  visibility: visible;
}

/* Popup Styles */
.product-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  z-index: 5;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.product-popup.active {
  display: flex;
}

.popup-content {
  background: white;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: 1px solid #ddd;
  font-size: 27px;
  cursor: pointer;
  color: #666;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #f8f9fa;
  color: #000;
  transform: rotate(90deg);
}

/* Popup product grid adjustments */
.popup-products .product-item {
  width: 100%;
  max-width: none;
}

.popup-products .product-item__image-wrapper {
  margin-bottom: 10px;
}

.popup-products .product-item__info {
  padding: 10px;
}

.popup-products .product-item__title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.popup-products .product-item__price-list {
  margin-bottom: 10px;
}

.popup-products .product-item__action-button {
  width: 100%;
}

.popup-header {
  padding: 20px 60px 20px 30px;
  border-bottom: 1px solid #eee;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.popup-products {
  padding: 30px;
  padding-bottom: 50px; /* Extra padding at bottom */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  align-content: start;
}


/* Collection link card - styled as a product card on desktop, horizontal on mobile */
.collection-link-card {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.collection-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Desktop layout - vertical like product cards */
.collection-link-card .collection-link-content {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.collection-link-card .product-item__image {
  position: relative;
  padding-bottom: 100%;
  background: white;
  overflow: hidden;
}

.collection-link-card .product-item__primary-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-link-card .collection-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  height: 100%;
}

.collection-link-card .collection-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}

.collection-link-card .product-item__info {
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
}

.collection-link-card .product-item__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.collection-arrow {
  color: #007bff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

/* Mobile layout - horizontal */
@media (max-width: 768px) {
  .collection-link-card .collection-link-content {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
  }
  
  .collection-link-card .product-item__image {
    width: 80px;
    height: 80px;
    padding-bottom: 0;
    flex-shrink: 0;
    border-radius: 4px;
  }
  
  .collection-link-card .product-item__primary-image {
    position: static;
    width: 100%;
    height: 100%;
  }
  
  .collection-link-card .collection-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 4px;
  }
  
  .collection-link-card .collection-placeholder svg {
    width: 40px;
    height: 40px;
  }
  
  .collection-link-card .product-item__info {
    flex: 1;
    padding: 0;
    border-top: none;
    display: flex;
    align-items: center;
  }
  
  .collection-link-card .product-item__info-inner {
    width: 100%;
  }
}

.collection-link-card:hover .collection-arrow {
  gap: 10px;
  font-weight: 500;
}

.loading-spinner {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loading-spinner p {
  margin: 0;
}

.inventory--high {
  color: #28a745;
}

.inventory--low {
color: #28a745;
}

.container3 {
    border: solid rgb(161 161 161 / 90%);
}
.interactive-image-section {
    padding: 10px 0 !important;
}
/* Tablet view adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .popup-products {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .container3 {
    padding: 0 15px;
  }
  
  .popup-content {
    max-height: 85vh;
    max-width: 100%;
    margin: 0 5px;
  }
  
  .popup-products {
    grid-template-columns: 1fr;
    padding: 2px;
    gap:10px;
  }
  
  .popup-products .product-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .popup-products .product-item__image-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 0;
  }
  


  
  .popup-products .product-item__info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .popup-products .product-item__title {
    font-size: 17px;
    margin-bottom: 5px;
  }
  
  .popup-products .product-item__inventory {
    font-size: 13px;
    font-weight:600;
    margin-bottom: 5px;
  }
  
  .popup-products .product-item__price-list .price {
    font-size: 18px;
  }
  
  .popup-products .product-item__action-list {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
  
  .popup-header {
    padding: 15px 50px 15px 20px;
    font-size: 18px;
  }
  
  .popup-close {
    width: 43px;
    height: 43px;
    font-size: 31px;
  }
}

.product-item__variants {
    display: none;
}
section.section.section--text-centered {
    margin-bottom: 8px!important;
    margin-top: 69px!important;
}




.section-navigator-container {
  position: relative;
  z-index: 1;
}

.section-navigator-wrapper {
  position: fixed;
  left: 2rem;
  top: 55%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
  max-height: 70vh;
}

@media screen and (min-width: 1200px) {
  .section-navigator-wrapper {
    display: block;
  }
}

.section-navigator {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  backdrop-filter: blur(10px);
  max-width: 400px;
  max-height: 700px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar */
.section-navigator::-webkit-scrollbar {
  width: 6px;
}

.section-navigator::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.section-navigator::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.section-navigator::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.section-navigator__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-navigator__item {
  margin-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-navigator__item:last-child {
  margin-bottom: 0;
}

.section-navigator__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 43px;
}

.section-navigator__link:hover {
  background: rgba(0, 123, 255, 0.05);
}

.section-navigator__image {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-navigator__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-navigator__title {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hover state */
.section-navigator__item.is-hovered .section-navigator__link {
  background: rgba(0, 123, 255, 0.08);
}

.section-navigator__item.is-hovered .section-navigator__title {
  color: #007bff;
  transform: translateX(3px);
}

.section-navigator__item.is-hovered .section-navigator__image {
  transform: scale(1.05);
}

/* Active state */
.section-navigator__item.is-active .section-navigator__link {
  background: rgba(0, 123, 255, 0.1);
}

.section-navigator__item.is-active .section-navigator__title {
  color: #007bff;
  font-weight: 600;
  transform: translateX(8px);
}

.section-navigator__item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: #007bff;
  border-radius: 0 2px 2px 0;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    transform: translateY(-50%) scaleY(0);
  }
  to {
    transform: translateY(-50%) scaleY(1);
  }
}

/* Responsive adjustments */
@media screen and (min-width: 1400px) {
  .section-navigator-wrapper {
    left: 3rem;
  }
  
  .section-navigator {
    padding: 1rem;
  }
  
  .section-navigator__image {
    width: 40px;
    height: 40px;
  }
  
  .section-navigator__title {
    font-size: 0.8125rem;
    max-width: 120px;
  }
}

@media screen and (min-width: 1600px) {
  .section-navigator-wrapper {
    left: 4rem;
  }
  
  .section-navigator__image {
    width: 45px;
    height: 45px;
  }
  
  .section-navigator__title {
    font-size: 0.875rem;
    max-width: 140px;
  }
}

/* Mobile styles if enabled */
@media screen and (max-width: 1199px) {
  .section-navigator-wrapper.show-on-mobile {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 500px;
  }
  
  .section-navigator {
    padding: 0.75rem;
  }
  
  .section-navigator__list {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .section-navigator__list::-webkit-scrollbar {
    display: none;
  }
  
  .section-navigator__item {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .section-navigator__link {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    text-align: center;
  }
  
  .section-navigator__image {
    width: 30px;
    height: 30px;
  }
  
  .section-navigator__title {
    font-size: 0.75rem;
    max-width: 60px;
  }
  
  .section-navigator__item.is-active::before {
    width: 70%;
    height: 2px;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}

/* Smooth entrance animation */
.section-navigator-wrapper {
  animation: fadeInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

/* Dynamic positioning based on scroll */
.section-navigator-wrapper.scrolled-past-header {
  top: 52%;
  transition: top 0.3s ease-in-out;
}