/** Shopify CDN: Minification failed

Line 197:19 Expected identifier but found whitespace
Line 197:21 Unexpected "{"
Line 197:30 Expected ":"
Line 198:8 Expected identifier but found whitespace
Line 198:10 Unexpected "{"
Line 198:19 Expected ":"
Line 238:8 Expected identifier but found whitespace
Line 238:10 Unexpected "{"
Line 238:19 Expected ":"
Line 260:8 Expected identifier but found whitespace
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collection-section{
    display: flex; 
    width: 100vw;
    height: 100%; 
    min-height: 100vh;
  }
  .collection-sidenav{
    background-color: #202020;
    width: 300px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
  }
  .collection-products-container{
    width: 100%;  
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px; 
  }

  .collection-sidenav-logo{
    position: fixed;
  } 

  .mobile-logo-container{ 
    display: none;
  }


  @media screen and (max-width: 991px){
.product-title-collection-mobile { 
  color: var(--mobile-product-collection-title-color) !important;
}

.product-price-collection-mobile {
  color: var(--mobile-product-collection-price-color) !important;
}
    
.bg-image.enter-screen.desktop {
  display: none ;
} 

.bg-image.enter-screen.mobile {
  display: block ;
}

.bg-color.enter-screen.desktop {
  display: none;
  }
  
.bg-color.enter-screen.mobile {
  display: block ;
  } 
    
    .collection-sidenav{ 
    display: none;
  }
    
    .mobile-logo-container{ 
    display: flex;
  }
  }
/* Custom styles to ensure white background */
aside.hamburger-sidebar {
  background: white;
  opacity: 1;
}

/* Hide hamburger on shipping policy and about us pages only - CSS fallback */
/* Note: Terms, Privacy, and Refund policy pages will show hamburger */

.hamburger-sidebar a {
  color: #000000;
}

.hamburger-sidebar-wrapper {
  position: relative;
  z-index: 1000;
}

/* Hamburger Button - Mobile Only */
.hamburger-menu-btn {
  position: fixed;
  top: 40px !important;
  right: 20px;
  left: auto;
  z-index: 1001;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  gap: 5px;
}

/* Show hamburger button only on mobile */
@media screen and (max-width: 767px) {
  .hamburger-menu-btn {
    display: flex;
  }
}

.hamburger-menu-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hamburger-menu-btn.active {
  justify-content: center;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0px !important;
  right: 5px;
  margin-top: -1.5px;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0px !important;
  right: 5px;
  margin-top: -1.5px;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar - Full Screen on Mobile */
.hamburger-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: {{ section.settings.sidebar_bg_color | default: '#ffffff' }};
  color: {{ section.settings.sidebar_text_color | default: '#000000' }};
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: none;
}

.hamburger-sidebar.active {
  transform: translateX(0);
}

/* Hide sidebar on desktop */
@media screen and (min-width: 768px) {
  .hamburger-sidebar {
    display: none;
  }
  
  .sidebar-overlay {
    display: none;
  }
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-logo img {
  max-width: 150px;
  height: auto;
}

.sidebar-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: {{ section.settings.sidebar_text_color | default: '#000000' }};
}

/* Sidebar Navigation */
.sidebar-nav {
  padding: 20px 0;
}

.sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav-item {
  margin: 0;
  padding: 0;
}

.sidebar-nav-link {
  display: block;
  padding: 15px 20px;
  color: {{ section.settings.sidebar_text_color | default: '#000000' }};
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
  background-color: rgba(0, 0, 0, 0.05);
  border-left-color: {{ section.settings.sidebar_link_hover_color | default: '#007bff' }};
  color: {{ section.settings.sidebar_link_hover_color | default: '#007bff' }};
}

/* Sub Navigation */
.sidebar-subnav {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.05);
}

.sidebar-subnav-item {
  margin: 0;
  padding: 0;
}

.sidebar-subnav-link {
  display: block;
  padding: 12px 20px 12px 40px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.sidebar-subnav-link:hover,
.sidebar-subnav-link.active {
  background-color: rgba(0, 0, 0, 0.08);
  color: {{ section.settings.sidebar_link_hover_color | default: '#007bff' }};
}

/* Responsive */
@media screen and (max-width: 767px) {
  .hamburger-menu-btn {
    top: 15px;
    right: 15px;
  }
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}