/** Shopify CDN: Minification failed

Line 655:0 Unexpected "}"

**/
/* ============================================
   IMAGE HOTSPOT SLIDER - Shopify Section
   ============================================ */

.image-hotspot-section {
  width: 100%;
}

.image-hotspot__container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Main Wrapper */
.image-hotspot {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ============================================
   SLIDER STRUCTURE
   ============================================ */

.image-hotspot__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-hotspot__track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.image-hotspot__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  overflow: hidden;
}

/* Background Image */
.image-hotspot__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-hotspot__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hotspot__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Overlay */
.image-hotspot__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   CONTENT OVERLAY
   ============================================ */

.image-hotspot__content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 48px;
  box-sizing: border-box;
  display: flex;
  pointer-events: none;
}

.image-hotspot__content-wrapper > * {
  pointer-events: auto;
}

/* Horizontal Position */
.image-hotspot__content--h-left {
  justify-content: flex-start;
}

.image-hotspot__content--h-center {
  justify-content: center;
}

.image-hotspot__content--h-right {
  justify-content: flex-end;
}

/* Vertical Position */
.image-hotspot__content--v-top {
  align-items: flex-start;
}

.image-hotspot__content--v-center {
  align-items: center;
}

.image-hotspot__content--v-bottom {
  align-items: flex-end;
}

/* Content Box */
.image-hotspot__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

/* Text Alignment */
.image-hotspot__content--align-left {
  align-items: flex-start;
  text-align: left;
}

.image-hotspot__content--align-center {
  align-items: center;
  text-align: center;
}

.image-hotspot__content--align-right {
  align-items: flex-end;
  text-align: right;
}

/* Headline */
.image-hotspot__headline {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  white-space: pre-line;
}

/* Subtext */
.image-hotspot__subtext {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Button */
.image-hotspot__btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.image-hotspot__btn:hover {
  text-decoration: none;
}

/* ============================================
   HOTSPOT MARKERS
   ============================================ */

.image-hotspot__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.image-hotspot__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-hotspot__marker.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Hotspot Button */
.image-hotspot__marker-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.image-hotspot__marker-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Plus Icon */
.image-hotspot__marker-icon {
  width: 14px;
  height: 14px;
  position: relative;
}

.image-hotspot__marker-icon::before,
.image-hotspot__marker-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}

.image-hotspot__marker-icon::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.image-hotspot__marker-icon::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Active state - X icon */
.image-hotspot__marker.is-active .image-hotspot__marker-icon::before {
  transform: translateX(-50%) rotate(45deg);
}

.image-hotspot__marker.is-active .image-hotspot__marker-icon::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Pulsing Animation */
.image-hotspot__marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: hotspot-pulse 2s ease-out infinite;
  pointer-events: none;
}

.image-hotspot__marker-pulse--delay {
  animation-delay: 0.5s;
}

@keyframes hotspot-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* ============================================
   HOTSPOT DROPDOWN CARD
   ============================================ */

.image-hotspot__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  min-width: 220px;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 10;
}

/* Arrow */
.image-hotspot__dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
}

/* Active state */
.image-hotspot__marker.is-active .image-hotspot__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Position adjustments for edge cases */
.image-hotspot__dropdown--left {
  left: 0;
  transform: translateX(0) translateY(-10px);
}

.image-hotspot__dropdown--left::before {
  left: 16px;
  transform: none;
}

.image-hotspot__marker.is-active .image-hotspot__dropdown--left {
  transform: translateX(0) translateY(0);
}

.image-hotspot__dropdown--right {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-10px);
}

.image-hotspot__dropdown--right::before {
  left: auto;
  right: 16px;
  transform: none;
}

.image-hotspot__marker.is-active .image-hotspot__dropdown--right {
  transform: translateX(0) translateY(0);
}

/* Dropdown above hotspot */
.image-hotspot__dropdown--top {
  top: auto;
  bottom: calc(100% + 12px);
}

.image-hotspot__dropdown--top::before {
  bottom: auto;
  top: 100%;
  border-bottom-color: transparent;
  border-top-color: #fff;
}

/* Dropdown Content */
.image-hotspot__dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-hotspot__product-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.image-hotspot__product-model {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

.image-hotspot__product-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.image-hotspot__product-link:hover {
  opacity: 0.8;
}

/* ============================================
   SLIDER NAVIGATION
   ============================================ */

.image-hotspot__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-hotspot__nav--prev {
  left: 20px;
}

.image-hotspot__nav--next {
  right: 20px;
}

.image-hotspot__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.image-hotspot__nav-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.image-hotspot__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.image-hotspot__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Hide nav if only one slide */
.image-hotspot[data-slide-count="1"] .image-hotspot__nav {
  display: none;
}

/* ============================================
   SLIDER PAGINATION DOTS
   ============================================ */

.image-hotspot__pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
  align-items: center;
}

.image-hotspot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.image-hotspot__dot:hover {
  opacity: 0.8;
}

.image-hotspot__dot.is-active {
  background: currentColor;
  opacity: 1;
  transform: scale(1.2);
}

/* Hide pagination if only one slide */
.image-hotspot[data-slide-count="1"] .image-hotspot__pagination {
  display: none;
}

/* ============================================
   MOBILE CTA BUTTON
   ============================================ */

.image-hotspot__mobile-cta {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.image-hotspot__mobile-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.image-hotspot__mobile-btn:hover {
  text-decoration: none;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet - Large */
@media screen and (max-width: 1024px) {
  .image-hotspot__content-wrapper {
    padding: 40px;
  }
  .image-hotspot__content {
    max-width: 500px;
    gap: 16px;
  }
  .image-hotspot__marker-btn {
    width: 28px;
    height: 28px;
  }
  .image-hotspot__marker-icon {
    width: 12px;
    height: 12px;
  }
  .image-hotspot__dropdown {
    min-width: 200px;
    max-width: 250px;
    padding: 14px;
  }
  .image-hotspot__nav-btn {
    width: 42px;
    height: 42px;
  }
  .image-hotspot__nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Tablet - Small + Mobile shared */
@media screen and (max-width: 768px) {
  .image-hotspot__content-wrapper {
    padding: 24px;
    padding-bottom: 50px;
    align-items: flex-end;
  }
      .image-hotspot__slide {
    min-height: 520px !important;
  }
  .image-hotspot__image {
    object-position: center 1%;
  }

  }
  .image-hotspot__content {
    max-width: 100%;
    gap: 8px;
  }
  .image-hotspot__subtext {
    font-size: 1rem;
  }
  .image-hotspot__btn {
    padding: 10px 24px;
    font-size: 13px;
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-block !important;
    margin-top: 0;
  }
  .image-hotspot__btn--secondary {
    margin-top: 6px;
  }
  /* Hide hotspots on mobile */
  .image-hotspot__markers {
    display: none;
  }
  /* Hide arrows on mobile */
  .image-hotspot__nav {
    display: none;
  }
  /* Move pagination up */
  .image-hotspot__pagination {
    bottom: 65px;
  }
  /* Show mobile CTA */
  .image-hotspot__mobile-cta {
    display: block;
    bottom: 20px;
  }
  .image-hotspot__mobile-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  .image-hotspot__dot {
    width: 8px;
    height: 8px;
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

.image-hotspot__btn:focus,
.image-hotspot__mobile-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.image-hotspot__marker-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.image-hotspot__product-link:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.image-hotspot__nav-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.image-hotspot__dot:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .image-hotspot__btn,
  .image-hotspot__mobile-btn,
  .image-hotspot__marker-btn,
  .image-hotspot__dropdown,
  .image-hotspot__nav-btn,
  .image-hotspot__dot,
  .image-hotspot__track,
  .image-hotspot__marker {
    transition: none;
  }
  .image-hotspot__marker-pulse {
    animation: none;
    display: none;
  }
}

/* ============================================
   BUTTON GROUP - DESKTOP POSITIONING
   ============================================ */
@media (min-width: 769px) {
  .image-hotspot__btn,
  .image-hotspot__btn--secondary {
    position: absolute !important;
    right: 40px !important;
    z-index: 10;
  }
  .image-hotspot__btn            { bottom: 125px !important; }
  .image-hotspot__btn--secondary { bottom: 60px !important; }
}

/* ============================================
   HOVER - DESKTOP POINTER DEVICES ONLY
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  .image-hotspot-section .image-hotspot__btn:hover,
  .image-hotspot-section .image-hotspot__btn--secondary:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    text-decoration: none !important;
  }
  .bento-4__card-btn:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
  }
}
