/** Shopify CDN: Minification failed

Line 28:19 Unexpected "*"

**/
/* ============================================================
   ESE Header - Mobile Fixes
   ============================================================ */

/* === KILL DAWN SECTION GAPS === */
/* Remove all margin/padding from shopify-section wrappers in header group */
.shopify-section-group-header-group {
  margin: 0 !important;
  padding: 0 !important;
}
.shopify-section-group-header-group + .shopify-section-group-header-group {
  margin-top: 0 !important;
}
/* Kill spacing on ALL shopify-section containers globally */
.shopify-section {
  margin-top: 0 !important;
}
/* Ensure no gap between header and main content */
#MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
}
/* Dawn's default section template margin */
.section-template--*,
[class*="section-template"] {
  margin-top: 0 !important;
}

/* === TOPBAR — remove excess padding === */
.ese-topbar {
  padding: 8px 0;
}
.ese-topbar-section {
  margin: 0 !important;
  padding: 0 !important;
}
.ese-header-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* === TOPBAR MOBILE === */
@media (max-width: 749px) {
  .ese-topbar {
    padding: 6px 0;
    font-size: 12px;
  }
  .ese-topbar__inner {
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 0 12px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  /* Show only first item on mobile, hide the rest */
  .ese-topbar__item { display: none; }
  .ese-topbar__item:first-child {
    display: flex;
    font-size: 12px;
  }
  .ese-topbar__item:nth-child(2) {
    display: flex;
    font-size: 12px;
  }
  .ese-topbar__item:nth-child(2)::before {
    content: '|';
    color: rgba(255,255,255,0.25);
    margin-right: 8px;
  }
}
@media (max-width: 400px) {
  .ese-topbar__item:nth-child(2) { display: none; }
}

/* === HEADER MOBILE === */
@media (max-width: 999px) {
  .ese-header__inner {
    gap: 0 !important;
    padding: 10px 12px !important;
    justify-content: space-between !important;
  }
  .ese-header__mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: -1;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .ese-header__logo {
    flex: 1;
    min-width: 0;
    margin: 0 8px;
  }
  .ese-header__logo img {
    max-height: 36px !important;
  }
  .ese-header__logo-text {
    font-size: 1rem !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ese-header__search { display: none !important; }
  .ese-header__actions {
    gap: 4px !important;
    flex-shrink: 0;
  }
  .ese-header__action {
    padding: 6px !important;
    flex-direction: row !important;
  }
  .ese-header__action span { display: none !important; }
  .ese-header__action svg {
    width: 22px;
    height: 22px;
  }
  .ese-header__cart-count {
    top: -2px !important;
    right: -2px !important;
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
  }
  /* Hide phone on mobile header (it's in mobile nav footer) */
  .ese-header__phone-link { display: none !important; }
  
  /* Nav bar hidden on mobile */
  .ese-header__nav { display: none !important; }
  
  /* USP bar mobile */
  .ese-header__usp { display: none; }
}

/* === MOBILE NAV DRAWER FIXES === */
.ese-mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: -100% !important;
  width: 300px !important;
  max-width: 82vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #0a1628 !important;
  z-index: 10001 !important;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding-top: 0 !important;
  box-shadow: none;
}
.ese-mobile-nav.is-open {
  left: 0 !important;
  box-shadow: 4px 0 30px rgba(0,0,0,0.5);
}

/* Mobile nav close button at top */
.ese-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,180,216,0.08);
}
.ese-mobile-nav__close-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.ese-mobile-nav__close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}
.ese-mobile-nav__close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Overlay/Backdrop */
.ese-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.ese-mobile-nav__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Body scroll lock */
body.ese-nav-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Mobile nav inner */
.ese-mobile-nav__inner {
  padding: 16px 20px !important;
}

/* Search in mobile nav */
.ese-mobile-nav__search {
  margin-bottom: 16px;
}
.ese-mobile-nav__search-input {
  width: 100% !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  font-size: 15px !important;
  outline: none !important;
  box-sizing: border-box !important;
}

/* Nav items */
.ese-mobile-nav__item {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.ese-mobile-nav__link {
  padding: 14px 0 !important;
  font-size: 15px !important;
  color: #e2e8f0 !important;
}
.ese-mobile-nav__sub-link {
  padding: 10px 0 10px 16px !important;
  font-size: 14px !important;
  color: #94a3b8 !important;
}
.ese-mobile-nav__sub-link:hover {
  color: #00b4d8 !important;
}

/* Footer links in mobile nav */
.ese-mobile-nav__footer {
  margin-top: 20px !important;
  padding-top: 16px !important;
}
.ese-mobile-nav__footer-link {
  padding: 10px 0 !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* === STICKY HEADER MOBILE === */
@media (max-width: 999px) {
  .ese-header-wrapper.is-sticky {
    box-shadow: 0 2px 12px rgba(0,0,0,0.2) !important;
  }
  .ese-header-wrapper.is-sticky .ese-topbar { display: none !important; }
  .ese-header-wrapper.is-sticky .ese-header__usp { display: none !important; }
}