/** Shopify CDN: Minification failed

Line 183:12 Unexpected "{"
Line 183:21 Expected ":"
Line 184:16 Expected identifier but found whitespace
Line 184:18 Unexpected "{"
Line 184:27 Expected ":"
Line 184:53 Expected ":"
Line 185:19 Expected identifier but found whitespace
Line 185:21 Unexpected "{"
Line 185:30 Expected ":"
Line 185:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.promo-offer {
    width: 100%;
  }

  .promo-offer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .promo-offer__heading {
    margin: 0;
    font-weight: 700;
  }

  .promo-offer__description {
    max-width: 60rem;
    margin: 0;
  }

  /* Countdown Styles */
  .promo-offer__countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .promo-offer__countdown-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
  }

  .promo-offer__countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .promo-offer__countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 6rem;
    padding: 1rem;
    background: rgba(var(--color-foreground), 0.05);
    border-radius: 0.5rem;
    border: 2px solid rgba(var(--color-foreground), 0.1);
  }

  .promo-offer__countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading-family);
  }

  .promo-offer__countdown-unit {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    opacity: 0.7;
  }

  .promo-offer__teaser {
    font-size: 1.125rem;
    margin: 0;
  }

  /* Stock Counter Styles */
  .promo-offer__stock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .promo-offer__stock-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .promo-offer__stock-icon {
    font-size: 2rem;
  }

  .promo-offer__stock-text {
    font-size: 1.5rem;
    margin: 0;
  }

  .promo-offer__stock-count {
    color: rgb(var(--color-base-accent-1));
    font-size: 1.75rem;
  }

  .promo-offer__stock-subtext {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
  }

  .promo-offer__cta {
    margin-top: 1rem;
  }

  /* Sold Out Styles */
  .promo-offer__sold-out {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(var(--color-foreground), 0.05);
    border-radius: 0.5rem;
  }

  .promo-offer__sold-out-icon {
    font-size: 3rem;
  }

  .promo-offer__sold-out-text {
    font-size: 1.25rem;
    margin: 0;
    max-width: 40rem;
  }

  .promo-offer__error {
    color: rgb(var(--color-base-accent-1));
    padding: 1rem;
    background: rgba(var(--color-base-accent-1), 0.1);
    border-radius: 0.5rem;
  }

  /* Responsive */
  @media screen and (max-width: 749px) {
    .promo-offer__countdown-segment {
      min-width: 4.5rem;
      padding: 0.75rem;
    }

    .promo-offer__countdown-value {
      font-size: 2rem;
    }

    .promo-offer__countdown-unit {
      font-size: 0.75rem;
    }

    .promo-offer__stock-text {
      font-size: 1.25rem;
    }

    .promo-offer__stock-count {
      font-size: 1.5rem;
    }
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
.free-shipping-bar {
  position: fixed;
  top: -32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width: 100%;
  background-color:#717070;
  color: #fff;
  text-align: center;
  z-index: 1000;
  transform: translateZ(0);
  will-change: top;
  min-height:27.5px;
}

.free-shipping-bar.progress-bar {
}

.free-shipping-bar .bar-inner {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding-bottom:0.5rem;
}

.free-shipping-bar .bar-message {
  display:flex;
  flex-direction:row;
  line-height:0.8;
}
  
.free-shipping-bar .bar-message p {
  display:flex;
  margin:0 0 -5px 0!important;
  color:white;
  font-size:1.25rem;
  line-height:1.75rem;
  font-family: var(--font-subhead-family);
}
  
.free-shipping-bar .bar-message p strong, .free-shipping-bar .bar-message p bold {
  color:rgb(251 183 0);
  padding-right:5px;
}

.free-shipping-bar.visible {
  top: 0;
}
  
.free-shipping-bar progress {
  display: block;
  width: 320px;
  height: 10px; /* Adjust as needed */
  margin-top: 10px;
  border: none;
  -webkit-appearance: none; /* Removes default appearance on Webkit browsers */
  appearance: none;
}

.free-shipping-bar progress::-webkit-progress-bar {
  background-color: rgba(255,255,255,0.4);
  border-radius:20px;
}

.free-shipping-bar progress::-webkit-progress-value {
  background-color:#00a1a2;
  border-radius:20px;
}

.free-shipping-bar progress::-moz-progress-bar {
  background-color:#00a1a2;
  border-radius:20px;
}

@media(min-width:768px) {
  .free-shipping-bar {
    min-height:32px
  }

  .free-shipping-bar .bar-message p {
    font-size:1.5rem;
    line-height:2rem;
  }
  
  .free-shipping-bar progress {
    width:400px;
  }
}
input:disabled {cursor:not-allowed;opacity:0.8;pointer-events:none}
.subpage-readmore-btn {
    display: none;
  }