/** Shopify CDN: Minification failed

Line 261:1 Expected "}" to go with "{"

**/
.custom-header {
  --ls-pink: #ec1a6d;
  --ls-pink-light: #fbd9e6;
}

/* Drawer / mobile-only chrome must never render on desktop */
@media (min-width: 990px) {
  .custom-header .mobile-header,
  .custom-header .mobile-search-bar,
  .custom-header .mobile-nav-backdrop,
  .custom-header .mobile-nav-drawer {
    display: none !important;
  }
}

/* Cart count bubble (Shopify cart-drawer / cart-notification scripts target this class) */
.custom-header .header-icon-link.cart-link,
.custom-header .mobile-header__icon-btn.cart-link {
  position: relative;
}
.custom-header .cart-count-bubble {
  position: absolute;
  top: -6px;
  right: -12px !important;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ls-pink);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}
.custom-header .cart-count-bubble span {
  color: #fff;
  font-size: 11px;
}

/* Mobile nav sliding sub-panels (right -> left drill-down, smooth both ways) */
.custom-header .mobile-nav-drawer {
  display: flex;
  flex-direction: column;
}
.custom-header .mobile-nav-panels {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.custom-header .mobile-nav-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.32s;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.custom-header .mobile-nav-panel.is-root {
  position: relative;
  inset: auto;
  transform: none;
  visibility: visible;
  transition: none;
  box-shadow: none;
  z-index: 1;
  height: 100%;
}
.custom-header .mobile-nav-panel.is-active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-header .mobile-nav-root-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.custom-header .mobile-nav-shopall-wrap {
  padding: 16px 20px 20px;
}
.custom-header .mobile-nav-shopall {
  display: block;
  text-align: center;
  background: var(--ls-pink);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 999px;
}
.custom-header .mobile-nav-footer-section {
  background: var(--ls-pink-light);
  flex: 1;
  padding: 20px 20px 28px;
}
.custom-header .mobile-nav-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-header .mobile-nav-footer-links li + li {
  margin-top: 16px;
}
.custom-header .mobile-nav-footer-links a,
.custom-header .mobile-nav-footer-links button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}
.custom-header .mobile-nav-promos {
  display: flex;
  gap: 16px;
  padding: 18px 16px 6px;
}
.custom-header .mobile-nav-promo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.custom-header .mobile-nav-promo__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}
.custom-header .mobile-nav-promo__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-header .mobile-nav-promo__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.custom-header .mobile-nav-panel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 16px 18px;
}
.custom-header .mobile-nav-panel-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}
.custom-header .mobile-nav-panel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-header .mobile-nav-panel-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}
.custom-header .mobile-nav-panel__back {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: inherit;
}
.custom-header .mobile-nav-panel__back svg {
  flex-shrink: 0;
}
.custom-header .mobile-nav-panel__title {
  padding: 4px 16px 10px;
  font-weight: 600;
  font-size: 15px;
}

/* Hamburger / close icon swap on the mobile nav toggle */
.custom-header [data-mobile-nav-open] {
  position: relative;
}
.custom-header [data-mobile-nav-open] .icon-menu,
.custom-header [data-mobile-nav-open] .icon-close {
  display: block;
}
.custom-header [data-mobile-nav-open] .icon-close {
  display: none;
}
.custom-header [data-mobile-nav-open].is-active .icon-menu {
  display: none;
}
.custom-header [data-mobile-nav-open].is-active .icon-close {
  display: block;
}

/* ==========================================================================
   DESKTOP HEADER (topbar, main header, nav, mega menu, community panel,
   predictive search)
   ========================================================================== */
.custom-header .site-header {
  font-family: inherit;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Top bar */
.custom-header .topbar {
  background: #fdf05a;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #421B1A;
}
.custom-header .topbar__inner {
  max-width: 1600px;
  margin: 0 auto;
 