/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 68:21 Expected identifier but found whitespace
Line 68:23 Unexpected "{"
Line 68:32 Expected ":"
Line 69:4 Unexpected "{"
Line 69:5 Expected identifier but found "%"
Line 70:17 Expected identifier but found whitespace
Line 70:19 Unexpected "{"
Line 70:28 Expected ":"
Line 71:4 Unexpected "{"
... and 8 more hidden warnings

**/
<style>
  .promo-bar-container {
    width: 100%;
  }

  .promo-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse; /* This will reverse the order */

  }

  .promo-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
  }

  /* Desktop - show 4 promos */
 .promo-grid-desktop {
  max-width: 1194px;   /* constrains the width to 1194px */
  margin: 0 auto;      /* centers it horizontally */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
}


  /* Mobile - show 1 promo with auto-rotate */
  @media (max-width: 750px) {
    .promo-grid-desktop {
      display: none;
    }

    .promo-slider-mobile {
      display: block;
    }

    .promo-bar-slider[data-autoplay="false"] {
      --autoplay: true;
    }
  }

  @media (min-width: 751px) {
    .promo-slider-mobile {
      display: none;
    }
  }

  .promo-bar-background {
    background-color: {{ section.settings.background_color }};
    {% if section.settings.background_gradient != blank %}
      background: {{ section.settings.background_gradient }};
    {% endif %}
    padding: 15px 0 15px 0;
    transition: background-color 0.3s ease;
  }

  .promo-bar__message {
    color: {{ section.settings.text_color }};
    margin: 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
  }

  .promo-bar__link {
    color: {{ section.settings.text_color }};
    text-decoration: none;
  }

  .promo-bar__link:hover {
    opacity: 0.8;
  }
</style>