/** Shopify CDN: Minification failed

Line 41:11 Expected identifier but found whitespace
Line 41:19 Unexpected ";"

**/
.header-glass {
  position: sticky;
  border-radius: 66px;
  padding: 1px 1px;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  box-sizing: border-box;
  color: white !important; /* Default text white */
  --color-foreground: white !important; /* for variables */
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: none; /* remove shadow here */
  background: transparent; /* transparent so pseudo-element shows */
  overflow: visible; /* allow pseudo-element visibility */
}

.header-glass::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 66px;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 10px rgba(255, 255, 255, 0.3);
  z-index: -1; /* behind header content */
}

.header-glass > * {
  background: transparent !important;
  box-shadow: none !important;
  transition: none !important;
  color: inherit !important;
}
  overflow: visible; /* allow pseudo-element visibility */

  
