/** Shopify CDN: Minification failed

Line 123:0 Unexpected "<"
Line 127:2 Comments in CSS use "/* ... */" instead of "//"
Line 129:7 Expected ":"
Line 130:4 Expected identifier but found "setInterval("
Line 141:11 Expected identifier but found "addEventListener("
Line 143:41 Comments in CSS use "/* ... */" instead of "//"

**/
.collection-hero__inner {
  display: flex;
  flex-direction: column;
}

.collection-hero--with-image .collection-hero__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 0;
  margin: 0px;
  padding: 0px;
  gap: 150px;
}

.collection-hero.collection-hero--with-image {
  padding: 0rem !important;
  border-top: 1px solid rgba(0,0,0,.1);
}


@media screen and (min-width: 750px) {
  .collection-hero.collection-hero--with-image {
    padding: calc(4rem + var(--page-width-margin)) 0 calc(4rem + var(--page-width-margin));
    overflow: hidden;
  }

}

.collection-hero__text-wrapper {
  flex-basis: 100%;
}

@media screen and (min-width: 750px) {
  .collection-hero {
    padding: 0;
  }

  .collection-hero__inner {
    align-items: center;
    flex-direction: row;
    padding-bottom: 0;
  }
}

.collection-hero__title {
  font-size: 1.6rem;
  margin: 0rem 0;
}

.collection-hero__title + .collection-hero__description {
  max-width: 300px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.collection-hero__description.rte {
  max-width: 500px !important;
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .collection-hero__description {
    max-width: 66.67%;
  }

  .collection-hero--with-image .collection-hero__description {
    max-width: 100%;
  }
}

.collection-hero--with-image .collection-hero__title {
  margin: 0;
  padding: 0rem 0rem;
}

.collection-hero--with-image .collection-hero__text-wrapper {
  padding: 1.5rem 0rem;
}

.collection-hero__image-container {
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

@media screen and (max-width: 749px) {
  .collection-hero__image-container {
    height: 20rem;
  }
}

@media screen and (min-width: 750px) {
  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 1.5rem 0rem;
    flex-basis: 50%;
  }

  .collection-hero__image-container {
    align-self: stretch;
    flex: 1 0 50%;
    min-height: 40rem;
  }
}
<div class="countdown">
  Next Drop in: <span id="countdown-timer"></span>
</div>
<script>
  // Countdown Timer JavaScript Example
  function startCountdown(durationInMinutes, display) {
    let timer = durationInMinutes * 60, minutes, seconds;
    setInterval(function () {
      minutes = parseInt(timer / 60, 10);
      seconds = parseInt(timer % 60, 10);
      minutes = minutes < 10 ? "0" + minutes : minutes;
      seconds = seconds < 10 ? "0" + seconds : seconds;
      display.textContent = minutes + ":" + seconds;
      if (--timer < 0) {
        timer = durationInMinutes * 60;
      }
    }, 1000);
  }
  document.addEventListener("DOMContentLoaded", function () {
    const countdownElement = document.getElementById('countdown-timer');
    startCountdown(5, countdownElement); // 5-minute timer for example
  });
</script>
base
<div class="layered-section">
    <div class="image">
        <img src="{{ 'hero-background.jpg' | asset_url }}" alt="Hero Background Image" style="width: 100%;">
        <img src="{{ 'hero-overlay.jpg' | asset_url }}" alt="Hero Overlay Image" class="overlay-image">
    </div>
</div>
