/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 21:26 Unexpected "{"
Line 28:10 Unexpected "{"
Line 28:19 Expected ":"
Line 34:10 Unexpected "{"
Line 34:19 Expected ":"
Line 44:10 Unexpected "{"
... and 15 more hidden warnings

**/
#hotspot-{{ section.id }} .hotspot-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}
#hotspot-{{ section.id }} {
  padding-top: 20px;   /* reduce default Shopify padding */
  padding-bottom: 20px;
}


/* LEFT SIDE sticky only inside this section */
#hotspot-{{ section.id }} .hotspot-image {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#hotspot-{{ section.id }} .hotspot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* DOTS */
#hotspot-{{ section.id }} .hotspot-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  background: #fff;             
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); 
  transition: all 0.3s ease;
}
#hotspot-{{ section.id }} .hotspot-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  transform: translate(-50%, -50%) scale(1);
  animation: pulse 1.5s infinite;
}
#hotspot-{{ section.id }} .hotspot-dot.active {
  background: #000;   
  border: 2px solid #fff; 
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
#hotspot-{{ section.id }} .hotspot-dot.active::after {
  display: none;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* RIGHT SIDE scrollable */
#hotspot-{{ section.id }} .hotspot-right {
  background: #f4f1ed;
  padding: 40px;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; 
 
}

/* TEXT + PRODUCT PANELS */
.hotspot-text-panel { display: none; text-align: center; }
.hotspot-text-panel.active { display: block; }
.hotspot-products-panel { display: none; position: relative; width: 100%; text-align: center; }
.hotspot-products-panel.active { display: block; }
.hotspot-product-slide { display: none; }
.hotspot-product-slide.active { display: block; }
.hotspot-product-slide img { max-width: 280px; margin: 0 auto 15px; display: block; border-radius: 8px; }

/* SLIDER BTNS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 22px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 3;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: black;
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
  #hotspot-{{ section.id }} .hotspot-wrapper {
    display: block;
  }
  #hotspot-{{ section.id }} .hotspot-image {
    position: relative;
    height: auto;
  }
  #hotspot-{{ section.id }} .hotspot-right {
    margin-left: 0;
    width: 100%;
    padding: 20px;
  }
}