/** Shopify CDN: Minification failed

Line 115:8 Expected identifier but found whitespace
Line 115:10 Unexpected "{"
Line 115:19 Expected ":"
Line 129:19 Expected identifier but found whitespace
Line 129:21 Unexpected "{"
Line 129:30 Expected ":"
Line 154:19 Expected identifier but found whitespace
Line 154:21 Unexpected "{"
Line 154:30 Expected ":"
Line 178:13 Expected identifier but found whitespace
... and 14 more hidden warnings

**/
/* Sticky Header Wrapper */
.lume-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: black;
}

.lume-header-wrapper.is-scrolled {
  background: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(239, 239, 239, 0.1);
  padding: 1.25rem 2rem;
  position: relative;
  transition: padding 0.3s ease;
}

.lume-header-wrapper.is-scrolled .site-header {
  padding: 0.875rem 2rem;
}

.header-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.logo-wrapper {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.logo-link {
  display: inline-block;
}

.logo-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
  color: {{ section.settings.nav_text_color }};
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: {{ section.settings.cart_badge_color }};
  color: white;
  font-size: 0.625rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.cart-count.hidden {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: {{ section.settings.nav_text_color }};
  transition: all 0.3s ease;
}

/* Nav Icon Styles */
.nav-icon {
  position: relative;
}

.nav-icon svg {
  display: block;
  stroke: #fff;
  width: 22px;
  height: 22px;
}

/* --- MOBILE DRAWER (Slides from Right) --- */
.lume-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: {{ section.settings.header_bg_color }};
  z-index: 2000;
  transition: right 0.3s ease-in-out;
  padding: 60px 25px;
}

.lume-mobile-drawer.is-open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: {{ section.settings.nav_text_color }};
}

.drawer-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.drawer-icons .nav-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: {{ section.settings.nav_text_color }};
}

.drawer-icons .nav-icon svg {
  stroke: {{ section.settings.nav_text_color }};
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-item {
  padding: 10px 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: {{ section.settings.nav_text_color }};
  font-size: 20px;
  font-weight: 500;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  display: none;
}

.drawer-overlay.is-open {
  display: block;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-wrapper {
    flex: 1;
    text-align: center;
    padding: 0;
  }

  /* Mobile submenu styles */
  .mobile-nav-item {
    position: relative;
  }

  .mobile-nav-item ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
  }

  .mobile-nav-item.active > ul {
    max-height: 500px;
  }

  .mobile-nav-link.has-submenu::after {
    content: '▶';
    float: right;
    transition: transform 0.3s ease;
  }

  .mobile-nav-item.active > .mobile-nav-link.has-submenu::after {
    transform: rotate(90deg);
  }
}

/* =========================
   SUBMENU STYLES
   ========================= */

/* ===== DROPDOWN SUBMENU ===== */
.menu-list__list-item {
  position: relative;
}

.menu-list__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--color-background, #fff);
  border: 1px solid var(--color-border, #ddd);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
  padding: 5px 0;
}

@media screen and (min-width: 750px) {
  .menu-list__list-item:hover > .menu-list__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.menu-list__submenu .menu-list__link {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  color: var(--color-foreground, #333);
  text-decoration: none;
}

.menu-list__submenu .menu-list__link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Caret for parent items */
.menu-list__link[aria-haspopup='true']::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

/* ===== MOBILE ACCORDION ===== */
@media screen and (max-width: 749px) {
  .menu-list__submenu {
    position: static;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    transition: max-height 0.3s ease;
  }

  .menu-list__list-item.active > .menu-list__submenu {
    max-height: 600px;
  }

  .menu-list__link[aria-haspopup='true']::after {
    border-top: none;
    border-left: 4px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease;
  }

  .menu-list__list-item.active > .menu-list__link[aria-haspopup='true']::after {
    transform: rotate(90deg);
  }
}

/* Additional Nav Menu Item Styles for Desktop Dropdowns */
.nav-menu li {
  position: relative;
}

.nav-menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  min-width: 180px;
  z-index: 999;
  list-style: none;
  padding: 5px 0;
}

.nav-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu li ul li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
}

.nav-menu li ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.has-submenu::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}
