/** Shopify CDN: Minification failed

Line 35:9 Expected identifier but found whitespace
Line 35:11 Unexpected "{"
Line 35:20 Expected ":"
Line 35:48 Expected ":"

**/
/*==============================
  Announcement Bar
==============================*/
.announcement-bar {
  background-color: #F26A52;
  text-align: center;
  padding: 6px 10px;
}

.announcement-bar p {
  font-size: 0.85rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/*==============================
  Desktop Header (Default)
==============================*/
.site-header {
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  height: {{ section.settings.header_height }}px;
}


.headerInnerWrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  position: relative;
}


.grid--full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}


.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}


.header-center {
  flex: 1;
  justify-content: center;
}


.header-left,
.header-right {
  flex: 0 0 auto;
}


/*==============================
  Desktop Absolute Logo Centering
==============================*/
@media (min-width: 769px) {
  .header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex: 1;
  }


  .header-left,
  .header-right {
    z-index: 1;
  }
}


@media (max-width: 1076px) {
  .header-center a img{
    max-width: 300px !important;
  }
}


/*==============================
  Desktop Icons
==============================*/
.header-right,
.cart-user-box {
  display: flex;
  align-items: center;
}

.header-right a,
.cart-user-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

#CartCount {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin-left: 4px;
}

.header-right {
  gap: 35px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-user-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Social icon sizes */
.header-social a svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Cart + search icon sizes */
.cart-user-box a svg {
  width: 22px;
  height: 22px;
  display: block;
}


/* ==============================
   HAMBURGER MENU 
   ============================== */

.site-header__burger-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
}

.site-header__burger-menu button {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.icon-burger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-burger .row {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
}

/* Ensure burger container is visible */
.header-left {
  display: flex !important;
  align-items: center !important;
}



/*==============================
  Tablet Layout (769–1024px)
==============================*/


/*==============================
  Mobile (≤768px)
==============================*/
@media (max-width: 768px) {

  /* Natural header height */
  .site-header {
    height: auto !important;
    padding: 8px 0;
  }

  .headerInnerWrap {
    height: auto;
  }

  /* Shrink logo */
  .header-center img {
    width: 200px !important;
    height: auto !important;
    max-width: calc({{ section.settings.logo_width }}px * 0.55) !important;
  }

  /* Allow natural centering */
  .header-center {
    width: auto !important;
    max-width: none !important;

    /* FIX: Stop desktop absolute centering from leaking into mobile */
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }

  .header-center a {
    width: auto !important;
    display: inline-flex !important;
    justify-content: center;
  }

  /* Hide social icons */
  .header-social {
    display: none !important;
  }

  /* Hide account + search */
  .account-icon-wrap,
  .search-icon-wrap {
    display: none !important;
  }

  /* Keep cart visible */
  .cart-icon-wrap {
    display: flex !important;
  }

  /* Hide burger extra text */
  .site-header__burger-menu span,
  .site-header__burger-menu .menu-text {
    display: none !important;
  }

  /* FIX: Ensure grid doesn't collapse on product/collection pages */
  .grid--full {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .header-left,
  .header-right {
    position: static !important;
    z-index: 1 !important;
    flex: 0 0 auto !important;
  }
}

