/** Shopify CDN: Minification failed

Line 199:0 Unexpected "}"

**/
/* ========================================
   BIG HEADER FOR PRODUCT PAGES
   Clean version without shadows
   ======================================== */

/* Main container - no background now */
.big-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px black;
}

/* Top row container - handles its own background and padding */
.big-header-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: white;
  padding: 2rem;
  padding-bottom: 1rem;
}

/* Brand link */
.big-header-brand {
  font-family: 'NeueMontreal', system-ui, sans-serif;
  font-weight: 700;
  color: #000;
  opacity: 0.75;
  font-size: 1.5rem;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.big-header-brand:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Navigation container */
.big-header-nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: white;
  padding: 1rem 2rem 1rem 2rem;
  transition: transform 0.1s ease, opacity 0.1s ease;
  transform: translateY(0);
  opacity: 1;
  position: relative;
  /* border-bottom: dashed grey; */
  border-top: dashed grey;
}

/* Hide navigation when scrolling down */
.big-header.scrolling-down .big-header-nav {
  transform: translateY(-100%);
  opacity: 0;
}

.big-header-nav::-webkit-scrollbar {
  display: none;
}

/* Navigation links container - full width distribution */
.big-header-links {
  display: flex;
  width: 25%;
  gap: 15.5rem
}

.big-header-item {
  position: relative;
  flex: 1;
  display: flex;
}

.big-header-item:first-child .big-header-link {
  text-align: center;
}

.big-header-item:last-child .big-header-link {
  text-align: center;
}

.big-header-item:not(:first-child):not(:last-child) .big-header-link {
  text-align: center;
}

.big-header-link {
  font-family: 'NeueMontreal', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  opacity: 0.75;
  color: black;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  width: 100%;
}

.big-header-link--active {
  opacity: 1;
  text-decoration: underline;
}

.big-header-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Cart link */
.big-header-cart {
  font-family: 'NeueMontreal', system-ui, sans-serif;
  font-weight: 700;
  color: #000;
  opacity: 0.75;
  font-size: 1.5rem;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.big-header-cart:hover {
  opacity: 1;
  text-decoration: underline;
}

.big-header-count {
  margin-left: 0.25rem;
  font-weight: 500;
  opacity: 0.6;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .big-header-top {
    padding: 1rem;
    padding-bottom: 1rem;
  }
  
  .big-header-nav {
    padding: .5rem 1rem .5rem 1rem;
    overflow-x: auto;
  }
  
  .big-header-brand,
  .big-header-cart,
  .big-header-link {
    font-size: 1.5rem;
  }
  
  .big-header-links {
    gap: 4rem;
    justify-content: flex-start;
    min-width: max-content;
  }
  
  .big-header-item {
    flex: none;
    display: block;
  }
  
  .big-header-item:first-child .big-header-link,
  .big-header-item:last-child .big-header-link,
  .big-header-item:not(:first-child):not(:last-child) .big-header-link {
    text-align: left;
  }

}

}

@media screen and (max-width: 480px) {
  .big-header-brand,
  .big-header-cart,
  .big-header-link {
    font-size: 1.5rem;
  }
}