/** Shopify CDN: Minification failed

Line 17:8 Expected identifier but found whitespace
Line 17:10 Unexpected "{"
Line 17:19 Expected ":"
Line 17:45 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"

**/
.interactive-left-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: {{ section.settings.panel_width }}px;
  background-color: {{ section.settings.bg_color }};
  z-index: 10000; /* ensure it’s above overlays or content */
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  box-sizing: border-box;
  overflow-y: auto;
  pointer-events: auto; /* ensure interaction allowed */
}

.left-panel-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  pointer-events: auto;
}


.left-panel-nav li {
  margin: 15px 0;
}

.left-panel-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.left-panel-nav a:hover {
  color: #FFD700;
}
@media only screen and (max-width: 767px) {
  .interactive-left-panel {
    display: none !important;
    
  }
}