/** Shopify CDN: Minification failed

Line 33:3 Unexpected "{"
Line 608:5 Unexpected "{"

**/
/* Header Overhaul Styles - Fixed Layout and Styling */

/* Header Base Styles with Smooth Transitions */
.header {
  position: relative;
  transition: transform 300ms ease, opacity 300ms ease;
  /* border-bottom: 1px solid rgb(var(--color-foreground)) */
}

.header-wrapper {
  transition: transform 300ms ease, opacity 300ms ease;
  border-bottom: 1px solid rgb(var(--color-foreground), 0.1);
}

/* Hide announcement bar when header is hidden */
.announcement-bar-section {
  transition: opacity 300ms ease;
}

.header-wrapper.header--scroll-up .announcement-bar-section {
  opacity: 0;
  pointer-events: none;
}

/* Header CTA Buttons - Layout Only */
.header__cta-buttons {
   {
    /* TODO change back */
  }
  opacity: 0 !important;
  pointer-events: none !important;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  transition: opacity 300ms ease, transform 300ms ease;
  margin-left: auto;
  justify-content: flex-end;
}

/* Desktop Header Styles */
@media screen and (min-width: 750px) {
  /* Desktop Layout: Logo → Navigation → Shopping Bag → CTA Buttons */
  .header {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: center;
  }

  @media screen and (max-width: 749px) {
    .header {
      display: flex;
      align-items: center;
      gap: 2rem;
      width: 100%;
      justify-content: flex-start;
    }
  }

  .header__heading {
    flex-shrink: 0;
  }

  /* Navigation area */
  .header nav,
  .header .header__menu {
    flex: 1;
  }

  /* Shopping bag and CTA buttons group */
  .header__icons {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .header__cta-buttons {
    margin: 0;
    flex: 1;
  }

  /* Hide mobile utilities on desktop */
  .header__mobile-icons {
    display: none;
  }

  .header__desktop-utilities {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile Header Styles - Always Show CTA Buttons */
@media screen and (max-width: 749px) {
  /* Mobile header layout - main header bar */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }

  /* Menu drawer toggle */
  header-drawer {
    order: 1;
    flex-shrink: 0;
  }

  /* Logo positioning */
  .header__heading {
    order: 2;
    flex: 1;
    text-align: center;
    margin: 0 1rem;
  }

  .header--mobile-left .header__heading {
    order: 1;
    text-align: left;
    flex: 1;
    margin-left: 1rem;
  }

  /* Mobile icons (cart) */
  .header__mobile-icons {
    order: 3;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  /* CTA Buttons - Always visible below main header */
  .header__cta-buttons {
    flex: 1;
    width: 100%;
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem 0;
    margin-top: 1rem;
    border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }

  .header__cta-buttons .button {
    flex: 1;
    text-align: center;
    padding: 0px;
  }

  /* Hide desktop utilities on mobile */
  .header__desktop-utilities {
    display: none;
  }

  /* Ensure mobile cart icon is visible */
  .header__icon--cart.small-hide {
    display: none;
  }

  #mobile-cart-icon-bubble {
    display: flex;
  }
}

/* Header Scroll States - Fixed to match JavaScript classes */
.header-wrapper {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-wrapper.header--scroll-up {
  transform: translateY(-100%);
}

/* Keep existing sticky header states for compatibility */
.shopify-section-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.shopify-section-header-hidden {
  transform: translateY(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.shopify-section-header-sticky.animate {
  animation: slideDown 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth slide down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0.8;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Menu Drawer CTA Buttons */
.menu-drawer__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
  margin-bottom: 1rem;
}

.menu-drawer__cta-buttons .button {
  width: 100%;
  text-align: center;
}

/* Navigation Adjustments */
@media screen and (min-width: 750px) {
  /* Ensure navigation flows properly in grid */
  .header nav {
    justify-self: center;
  }

  .header__submenu-photos nav {
    flex: 2;
    padding-left: 20px;
  }

  .header__icons {
    justify-self: end;
  }

  .header__cta-buttons {
    justify-self: end;
  }
}

/* Focus states for accessibility - rely on standard button focus states */

/* Performance optimizations and smooth transitions */
.header,
.header__cta-buttons,
.menu-drawer__cta-buttons,
.header-wrapper,
.announcement-bar-section {
  will-change: transform, opacity;
}

/* Prevent layout shifts during transitions */
.header-wrapper {
  contain: layout style;
}

/* Smooth transitions for all header states */
.header--scrolled {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scroll-up {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure announcement bar transitions smoothly */
.announcement-bar-section {
  overflow: hidden;
  backface-visibility: hidden;
}

.header-wrapper:has(.header--homepage) {
  position: absolute;
  width: 100%;
  background: rgba(var(--color-background), 0);
  border: none !important;
  transition: background 300ms ease, border 300ms ease;
}

/* Homepage Header Styles - Transparent overlay for slideshow */
.header--homepage {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  /* background: transparent; */
  background: rgba(var(--color-background), 0);
  transition: all 300ms ease;
  border: none;
}

.header--homepage .header-wrapper {
  background: rgba(var(--color-background), 0);
  transition: background 300ms ease;
  transition: all 300ms ease;
}

/* Make header text white over slideshow */
.header--homepage .header__heading a,
.header--homepage .header__heading span {
  color: white;
}

/* Logo switching on homepage */
.header--homepage .header__heading-logo--regular {
  display: none;
}

.header--homepage .header__heading-logo--white {
  display: block;
}

/* Show regular logo when scrolled */
.header-wrapper.header--scrolled
  .header--homepage
  .header__heading-logo--regular {
  display: block;
}

.header-wrapper.header--scrolled
  .header--homepage
  .header__heading-logo--white {
  display: none;
}

/* Navigation links white */
.header--homepage .header__menu .list-menu__item > .link {
  color: white;
}

.header--homepage .header__menu .list-menu__item > .link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Cart icon white */
.header--homepage .header__icon svg,
.header--homepage .header__icon path {
  fill: white;
}

/* CTA buttons remain styled but with better contrast */
.header--homepage .header__cta-buttons .button--primary {
  background-color: transparent;
  border-color: white;
  color: white;
  outline: 1px solid white !important;
  padding-left: 20px;
  padding-right: 20px;
}

.header--homepage .header__cta-buttons .button--primary:hover {
  background-color: transparent;
  color: white;
  outline: 1.5px solid white !important;
}

.header--homepage .header__cta-buttons .button--secondary {
  background-color: transparent;
  border-color: white;
  color: white;
  outline: 1px solid white !important;
  padding-left: 20px;
  padding-right: 20px;
}

.header--homepage .header__cta-buttons .button--secondary:hover {
  background-color: transparent;
  color: white;
  outline: 1.5px solid white !important;
}

/* Mobile hamburger menu white */
.header--homepage .header__icon--menu svg,
.header--homepage .header__icon--menu path {
  fill: white;
}

/* Add subtle backdrop for better readability on mobile */
@media screen and (max-width: 749px) {
  .header--homepage .header-wrapper {
    /* background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); */
  }
}

/* Override homepage transparent styles when scrolled past threshold */
.header-wrapper.header--scrolled {
  background: rgb(var(--color-background)) !important;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1) !important;
}

.header-wrapper.header--scrolled .header--homepage .header-wrapper {
  background: rgba(var(--color-background), 1);
}

.header-wrapper.header--scrolled .header--homepage .header__heading a,
.header-wrapper.header--scrolled .header--homepage .header__heading span {
  color: rgb(var(--color-foreground));
}

.header-wrapper.header--scrolled
  .header--homepage
  .header__menu
  .list-menu__item
  > .link {
  color: rgb(var(--color-foreground));
}

.header-wrapper.header--scrolled
  .header--homepage
  .header__menu
  .list-menu__item
  > .link:hover {
  color: rgba(var(--color-foreground), 0.8);
}

.header-wrapper.header--scrolled .header--homepage .header__icon svg,
.header-wrapper.header--scrolled .header--homepage .header__icon path {
  fill: rgb(var(--color-foreground));
  /* stroke: rgb(var(--color-foreground)); */
}

.header-wrapper.header--scrolled
  .header--homepage
  .header__cta-buttons
  .button--secondary {
  background-color: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  outline-color: rgba(var(--color-foreground), 1) !important;
}

.header-wrapper.header--scrolled
  .header--homepage
  .header__cta-buttons
  .button--primary {
  background-color: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  outline-color: rgba(var(--color-foreground), 1) !important;
}

.header-wrapper.header--scrolled .header--homepage .header__icon--menu svg,
.header-wrapper.header--scrolled .header--homepage .header__icon--menu path {
  fill: rgb(var(--color-foreground));
  /* stroke: rgb(var(--color-foreground)); */
}

/* Remove mobile backdrop when scrolled */
@media screen and (max-width: 749px) {
  .header-wrapper.header--scrolled .header--homepage .header-wrapper {
    background: rgba(var(--color-background), 1);
    backdrop-filter: none;
  }
}

/* Ensure proper z-index layering */
.section-header {
  z-index: 10;
}

.header-wrapper {
  z-index: 11;
}

.menu-drawer {
  z-index: 101;
}

/* Prevent header movement when mobile menu is open */
.menu-drawer-container[open] .header-wrapper {
  transform: none !important;
}

/* Shopping bag icon visibility */
@media screen and (max-width: 749px) {
  .header__icon--cart.small-hide {
    display: none !important;
  }

  .header__mobile-icons .header__icon--cart {
    display: flex;
  }
}

@media screen and (min-width: 750px) {
  .header__mobile-icons {
    display: none !important;
  }

  .header__icon--cart.small-hide {
    display: flex;
  }
}

/* Remove homepage-specific hiding behavior - always show buttons */

/* Ensure buttons are visible in all states */
.header--scrolled .header__cta-buttons {
  display: flex;
}

/* Add proper spacing for body content when mobile CTA buttons are shown */
@media screen and (max-width: 749px) {
  .section-header {
    margin-bottom: 0;
  }

  /* Ensure content doesn't overlap with mobile CTA buttons */
  .header-wrapper + * {
    margin-top: 1rem;
  }
}

.header__menu-item {
  color: rgba(var(--color-foreground), 1);
}

.header-wrapper.header--scrolled .header--homepage .header__menu-item {
  color: rgba(var(--color-foreground), 1);
}

.header--homepage .header__menu-item {
  color: white;
}

/* Apply scrolled styles when dropdown is open on homepage */
.header--homepage:has(details[open]) .header__heading-logo--regular {
  display: block;
}

.header--homepage:has(details[open]) .header__heading-logo--white {
  display: none;
}

.header-wrapper:has(details[open]) {
  background-color: rgb(var(--color-background));
}

.header--homepage:has(details[open]) .header-wrapper {
  background: rgba(var(--color-background), 1);
}

.header--homepage:has(details[open]) .header__heading a,
.header--homepage:has(details[open]) .header__heading span {
  color: rgb(var(--color-foreground));
}

.header--homepage:has(details[open]) .header__menu .list-menu__item > .link {
  color: rgb(var(--color-foreground));
}

.header--homepage:has(details[open])
  .header__menu
  .list-menu__item
  > .link:hover {
  color: rgba(var(--color-foreground), 0.8);
}

.header--homepage:has(details[open]) .header__icon svg,
.header--homepage:has(details[open]) .header__icon path {
  fill: rgb(var(--color-foreground));
  /* stroke: rgb(var(--color-foreground)); */
}

.header--homepage:has(details[open]) .header__cta-buttons .button--primary {
  background-color: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  outline-color: rgba(var(--color-foreground), 1) !important;
}

.header--homepage:has(details[open]) .header__cta-buttons .button--secondary {
  background-color: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  outline-color: rgba(var(--color-foreground), 1) !important;
}

.header--homepage:has(details[open]) .header__icon--menu svg,
.header--homepage:has(details[open]) .header__icon--menu path {
  fill: rgb(var(--color-foreground));
  /* stroke: rgb(var(--color-foreground)); */
}

.header--homepage:has(details[open]) .header__menu-item {
  color: rgba(var(--color-foreground), 1);
}

.header-wrapper.header--scrolled {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1) !important;
}

@media screen and (max-width: 749px) {
  .header__cta-buttons {
     {
      /* TODO change back */
    }
    display: none!important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: calc(100% + 30px);
    margin-top: 0px;
    flex: auto;
    order: 1;
    padding: 10px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: row-reverse;
    gap: 12px;
    background-color: rgba(var(--color-background), 1);
    border-top: 1px rgb(var(--color-foreground), 0.1) solid;
    border-bottom: 1px rgb(var(--color-foreground), 0.1) solid;
    height: 54px;
    transition: opacity 300ms ease, transform 300ms ease;
  }

  /* Hide CTA buttons on mobile when header should be transparent */
  .header--homepage .header__cta-buttons {
    display: none;
  }

  /* Show CTA buttons when scrolled past transparent state */
  .header-wrapper.header--scrolled .header--homepage .header__cta-buttons {
    display: flex;
    display: flex;
    /* TODO change back */
    display: none;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    padding: 0px;
    margin: 0;
  }

  /* Show CTA buttons when dropdown is open */
  .header--homepage:has(details[open]) .header__cta-buttons {
    display: flex;
    /* width: 100%; */
    position: absolute;
    top: 66px;
    width: 100%;
    left: 0px;
    right: 0px;
    margin: 0px;
    min-width: 100%;
  }

  .header {
    padding-bottom: 0px !important;
    /* height: 120px; */
    /* TODO change back */
    height: 66px;
    padding-top: 0px !important;
    transition: height 300ms ease;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header__heading,
  .header__heading-link {
    height: 66px;
    display: flex;
    align-items: center;
    margin: 0px !important;
  }

  .header--homepage .header__cta-buttons .button {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    border-color: rgba(var(--color-foreground), 1) !important;
    color: rgba(var(--color-foreground), 1) !important;
    outline: 1px solid rgba(var(--color-foreground), 1) !important;
  }

  .header--homepage .header__cta-buttons .button--primary {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    background-color: rgba(var(--color-foreground), 1) !important;
    border-color: rgba(var(--color-foreground), 1) !important;
    color: white !important;
    outline: 1px solid rgba(var(--color-foreground), 1) !important;
  }

  .header--homepage .header__cta-buttons .button:hover {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    border-color: rgba(var(--color-foreground), 1) !important;
    color: rgba(var(--color-foreground), 1) !important;
    outline: 1px solid rgba(var(--color-foreground), 1) !important;
  }

  .header--homepage .header__cta-buttons .button--primary:hover {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    background-color: rgba(var(--color-foreground), 1) !important;
    border-color: rgba(var(--color-foreground), 1) !important;
    color: white !important;
    outline: 1px solid rgba(var(--color-foreground), 1) !important;
  }
}
