/** Shopify CDN: Minification failed

Line 99:14 Expected identifier but found whitespace
Line 99:16 Unexpected "{"
Line 99:34 Expected ":"
Line 99:39 Expected ":"
Line 226:14 Expected identifier but found whitespace
Line 226:16 Unexpected "{"
Line 226:34 Expected ":"
Line 226:39 Expected ":"

**/


/* CSS from section stylesheet tags */
.announcement-bar-gradient {
  width: 100%;
  background: linear-gradient(135deg, #F26A21 0%, #E63C2D 50%, #D81F5A 100%);
  color: #fff;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: 0.01em;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  font-weight: 500;
  text-align: left;
  transition: height 0.2s, font-size 0.2s;
  display: block;
}

/* Ensure no spacing issues with Dawn theme */
body .announcement-bar-gradient {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove any potential spacing from Dawn's header */
.shopify-section + .announcement-bar-gradient,
.announcement-bar-gradient + .shopify-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.announcement-bar-gradient__marquee {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.announcement-bar-gradient__track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  align-items: center;
  height: 100%;
}

.announcement-bar-gradient__content {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  height: 100%;
}

.announcement-bar-gradient__item {
  margin: 0 34px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: inherit;
  height: inherit;
}

.announcement-bar-gradient__sep {
  font-size: 1.35em;
  vertical-align: middle;
  color: #fff;
  margin-right: 34px;
  margin-left: -10px;
  font-weight: bold;
  line-height: inherit;
  height: inherit;
}

/* Prevent any layout shifts */
.announcement-bar-gradient * {
  box-sizing: border-box;
}

/* --- Mobile Font Size Override --- */
@media (max-width: 600px) {
  .announcement-bar-gradient {
    font-size: {{ font_size_mobile }}px !important;
    min-height: 28px !important;
    padding-left: 2px;
    padding-right: 2px;
  }
  .announcement-bar-gradient__item {
    margin-right: 14px;
  }
  .announcement-bar-gradient__sep {
    margin-right: 14px;
    font-size: 1.1em;
    margin-left: -7px;
  }
}

/* Dawn theme compatibility - remove any inherited spacing */
.shopify-section[id*="announcement"] {
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure announcement bar sits flush with header */
.header {
  margin-top: 0 !important;
}
/* ================================
   ANNOUNCEMENT BAR - ABSOLUTE NO HEADER OVERLAP FIX
   ================================ */
.announcement-bar-custom {
  width: 100%;
  color: #fff;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: 0.01em;
  padding: 0;
  margin: 0;
  position: static !important;
  z-index: 1 !important;
  box-sizing: border-box;
  font-weight: 500;
  text-align: left;
  transition: height 0.2s, font-size 0.2s;
  display: block;
}

/* Ensure no spacing issues */
body .announcement-bar-custom {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* CRITICAL FIX: Ensure section containing announcement bar doesn't overlap */
.shopify-section[id*="announcement"] {
  position: static !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* Force header to be positioned normally below */
.shopify-section-header,
header.header,
.header-wrapper {
  position: relative !important;
  z-index: 10 !important;
  margin-top: 0 !important;
}

/* Remove any negative margins or absolute positioning */
.header,
.shopify-section-header {
  top: auto !important;
}

.announcement-bar-custom__marquee {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.announcement-bar-custom__track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  align-items: center;
  height: 100%;
}

.announcement-bar-custom__content {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  height: 100%;
}

.announcement-bar-custom__item {
  margin: 0 34px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: inherit;
  height: inherit;
}

.announcement-bar-custom__sep {
  font-size: 1.35em;
  vertical-align: middle;
  color: #fff;
  margin-right: 34px;
  margin-left: -10px;
  font-weight: bold;
  line-height: inherit;
  height: inherit;
}

/* Prevent any layout shifts */
.announcement-bar-custom * {
  box-sizing: border-box;
}

/* --- Mobile Font Size Override --- */
@media (max-width: 600px) {
  .announcement-bar-custom {
    font-size: {{ font_size_mobile }}px !important;
    min-height: 28px !important;
    padding-left: 2px;
    padding-right: 2px;
  }
  .announcement-bar-custom__item {
    margin-right: 14px;
  }
  .announcement-bar-custom__sep {
    margin-right: 14px;
    font-size: 1.1em;
    margin-left: -7px;
  }
}

/* Ensure body flow is normal */
body {
  position: relative !important;
}

/* Override any sticky/fixed header positioning that might cause overlap */
.header.shopify-section-header-sticky,
.header--top-center.header--mobile-center.page-width.header--has-menu,
.shopify-section-header-sticky .header {
  position: relative !important;
  top: 0 !important;
  z-index: 10 !important;
}

/* Remove any transforms or absolute positioning from header wrapper */
.header-wrapper {
  transform: none !important;
  position: relative !important;
}