/** Shopify CDN: Minification failed

Line 93:0 Expected percentage but found "<"
Line 94:17 Unterminated string token
Line 111:4 Unterminated string token
Line 126:11 Expected "}" to go with "{"

**/
.product-media-container {
  position: relative;
}

.product-page-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 160px !important;
  height: 160px !important;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 749px) {
  .product-page-badge {
    width: 120px !important;
    height: 120px !important;
    top: 10px;
    right: 10px;
  }
}

.button.add-to-cart-button.button-secondary {
  background: linear-gradient(90deg, #5BC0F8, #1A4D8F, #5BC0F8);
  background-size: 300% 100%;
  background-position: right center; /* start on the right */
  color: white;
  border: none;
  box-shadow: none;
}

.button.add-to-cart-button.button-secondary:hover {
  animation: gradient-move-reverse 1.5s infinite alternate;
}

@keyframes gradient-move-reverse {
  from {
    background-position: right center;
  }
  to {
    background-position: left center;
  }
}

.kaching-bundles .kaching-bundles-sticky-atc .kaching-bundles-sticky-atc__button {
  background: linear-gradient(90deg, #5BC0F8, #1A4D8F) !important;
  background-size: 200% 100%;
  background-position: left center;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  transition: background-position 0.4s ease !important;
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.kaching-bundles-sticky-atc__button:hover {
  background-position: right center;
  border: none !important;
  box-shadow: none !important;
}

.qsc2-btn.qsc2-checkout-button {
  background: linear-gradient(90deg, #5BC0F8, #1A4D8F, #5BC0F8);
  background-size: 300% 100%;
  background-position: right center; /* start on the right */
  color: white;
  border: none;
  box-shadow: none;
}

.qsc2-btn.qsc2-checkout-button:hover {
  animation: gradient-move-reverse-2 1.5s infinite alternate;
}

@keyframes gradient-move-reverse-2 {
  from {
    background-position: right center;
  }
  to {
    background-position: left center;
  }

<contribe-plugin
  styleOverride="
    /* Cap container at 50% and keep your 260px min */
    :host{
      --contribe-container-max-width: 50%;
      --contribe-container-min-width: 260px;
    }

    /* Center the wrapper inside the plugin */
    .contribe-container,
    .badge-container{
      width: 100%;
      max-width: var(--contribe-container-max-width, 50%);
      margin-inline: auto !important; /* center horizontally */
      /* if the parent is flex/grid, this helps too: */
      align-self: center;
      justify-self: center;
    }
  ">
</contribe-plugin>

{% if template.name == 'product' %}
  <style>
    h1 {
      font-size: 30px;
    }

    @media screen and (min-width: 768px) {
      h1 {
        font-size: 34px;
      }
    }
  </style>
{% endif %}