/** Shopify CDN: Minification failed

Line 70:3 Unexpected "!"
Line 70:101 Unterminated string token

**/
.product-form__submit {
      padding: 12px 16px;
    border-radius: 7px;
    font-size: 15px;
     font-family: "Montserrat", sans-serif;
     font-weight: 500;
       max-width: 624px;
}

a.link.link-with-icon.rich-text__link.button {
  width: 100%;
  max-width: 690px;
}
.stats {
  display: flex !important;
  justify-content: center !important;
}
.stats-item {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
}

span.price-item.price-item--regular.p {
    font-size: 20px;
    font-weight: 600 !important;
    font-family: "Montserrat", sans-serif;
}


/* For Product */
.variant-label--image {
  padding: 42px !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-bottom: 30px;
  background: #E2B4000D;
  border-radius: 24px !important;
max-width: 155px !important;
    max-height: 155px !important;
}
variant-selects {
  gap: 50px !important;
}
input[type="radio"]:checked + label.variant-label--image {
  background: #E2B4000D !important;
  border-color: #FDCB58 !important;
}

.variant-label--image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
    transform: translateY(10px);
  
}

.rcw-price-new {
  color: #D59500 !important;
}

Yes! That's the simplest approach. Just add this CSS to your theme — no Liquid logic needed at all:
css.product-form__input--pill:last-of-type .product-form__input-wrapper label:last-child {
  position: relative;
  overflow: visible;
}

.product-form__input--pill:last-of-type .product-form__input-wrapper label:last-child::before {
  content: 'BEST DEAL';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.stats-item__text {
  line-height: 16px !important;
  margin: auto !important;
  text-transform: uppercase !important;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
}

.rcw-title {
  font-family: "Montserrat", sans-serif !important;
}

.product__info-container h1.h2.uppercase {
  text-transform: capitalize !important;
}
.icon-with-text__content {
    margin-top: 12px;
}

.product__price-container {
    padding-bottom: 18px;
}

.rcw-price-old {
  color:rgba(18, 18, 18, 0.22) !important;
}

.variant-label__text {
  display: block;
  font-size: 15px;
  margin-top: 4px;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  transform: translateY(50px);
  text-transform: capitalize;
  width: 100px;
}


.trust-badges__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 12px 0;
       max-width: 624px;
    }
    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: #f5f5f5;
      border-radius: 8px;
      padding: 16px 8px;
      gap: 10px;
    }
    .trust-badge__icon img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }
    .trust-badge__label {
      font-size: 13px;
      line-height: 1.3;
      margin: 0;
    }

   .image-and-image__container .accordion .summary__title {
      justify-content: center;
      border-bottom: 0 !important;
    }
    .image-and-image__container.accordion__icon-caret {
      display: none !important;
    }

 .image-and-image__container.stats-item__value {
      margin: auto;
    }

 .image-and-image__container.stats-item__text {
  margin: auto !important;
}
.stats-item__icon img {
  align-items: center;
  display: flex;
  justify-content: center;
}

.gradient.color-background-3.image-border-radius--none.image-and-image__text {
  padding-block: 32px;
}


    .accordion--detailed .accordion__title__heading {
   font-size: 20px !important;
    }

    .image-banner__image {

    }
    .accordion__content.rte p{
text-align: center;
    }
.product__info-wrapper .accordion__content.rte p {
  text-align: left !important;
}
    .collapsible-content__inner .accordion .summary__title {
border-bottom: 0;
    }
   .collapsible-content__inner h4.p.normal.accordion__title p {
    font-weight: 500;
}
.collapsible-content--side-by-side .collapsible-content__inner .accordion:first-child {
  border-top: none;
  padding-block: 10px;
}

 .collagen-sectionv2 {
   background: white !important;

  }

  .product__title.rte h2.uppercase {
    text-transform: capitalize;
}
.product__description.rte {
border-top: solid #00000026;
}
  

  .collagen-title {
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 28px !important;
    color: #111;
  }

  .collagen-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start; /* 👈 key fix */
    gap: 12px; /* cleaner than margin */
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
  }

  .feature-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block; /* 👈 removes weird bottom spacing */
    margin: 0;
  }

  .feature-text {
    line-height: 1.4;
  }

  .rcw-block {
    padding-top: 42px;
  }

    @media (max-width: 1500px) {
  .trust-badges__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .image-banner__image {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 140% !important;
}
    }

    @media (max-width: 780px) {
        .image-banner__image {
    
    width: 100% !important;
}
.variant-label__text {

  transform: translateY(40px);

}

.image-and-image__container .accordion .summary__title {
  justify-content: flex-start;
}
.accordion__content.rte p {
  text-align: left;
}

    }
 

    legend.form__label {
    font-size: 20px;
    font-weight: 600;
       font-family: "Montserrat", sans-serif;
}

.form__label span {
  display: none;
}