/** Shopify CDN: Minification failed

Line 130:6 Expected ":"

**/
.countdown-offer {
  position: relative;
  width: 100%;
  border-radius: 0;
  margin-inline: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2rem;
  background-color: #cc5000;
  gap: 0.5rem;
}

.countdown-offer__bg { display: none; }
.countdown-offer__bg.desktop { display: none; }
.countdown-offer__bg.mobile { display: none; }
.countdown-offer__bg img { display: none; }

.countdown-offer__content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.countdown-offer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.countdown-offer__title {
  margin: 0;
  line-height: 1.2;
  color: white;
  font-size: 1.6rem;
}

.countdown-offer__description {
  font-size: 1.4rem;
  max-width: 55.6rem;
  margin: 0;
  line-height: 1.5;
  color: white;
}

.countdown-offer__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: white;
}

.countdown-offer__timer {
  display: grid;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  grid-template-columns: repeat(4, 1fr);
  flex-shrink: 0;
}

.countdown-offer__timer .countdown__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.countdown-offer__timer .countdown-days,
.countdown-offer__timer .countdown-hours,
.countdown-offer__timer .countdown-minutes,
.countdown-offer__timer .countdown-seconds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.8rem 0.8rem 0.4rem 0.4rem;
  background-color: rgba(255,255,255,0.15);
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05rem;
}

.countdown-offer__timer .countdown__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 0.6rem;
  background-color: rgba(255,255,255,0.15);
  color: white;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  width: 100%;
}

.countdown-offer__block .button { display: none; }
.countdown-offer__badge { display: none; }

@media screen and (min-width: 750px) {
  .countdown-offer__timer {
    gap: 0.8rem;
    grid-template-columns: repeat(4, 6rem);
    max-width: 100%;
  }

  .countdown-offer__timer .countdown-days,
  .countdown-offer__timer .countdown-hours,
  .countdown-offer__timer .countdown-minutes,
  .countdown-offer__timer .countdown-seconds {
    height: 3.5rem;
    fo