/** Shopify CDN: Minification failed

Line 114:0 Unexpected "<"
Line 114:28 Unexpected "{"
Line 114:37 Expected ":"
Line 114:46 Unexpected "<"
Line 116:3 Unexpected "{"
Line 116:12 Expected ":"
Line 117:0 Unexpected "<"

**/
/* Changer la couleur de l’ancien prix barré */
.price--on-sale .price__sale {
  color: red !important;
}
/* Changer la couleur de l’ancien prix barré */
.price--on-sale .price__sale {
  color: red !important;
}

/* Personnalisation des éléments produit */
.product-form__submit {
  background-color: #111;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-form__submit:hover {
  background-color: #ffcc00;
  color: black;
}

.product-form__input--dropdown select {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.quantity__input {
  width: 60px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.quantity__button {
  background-color: #f3f3f3;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.quantity__button:hover {
  background-color: #ddd;
}
.product-form__submit {
  background-color: #111 !important;
  color: white !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  padding: 14px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}
.card__badge,
.product-card__badge,
.badge--sale {
  display: none !important;
}
.product__description,
.product-single__description,
.product-description {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}
h1.product__title,
.product__title,
.product-single__title,
.product__title--large,
.product__title h1,
.product-title,
.product-template h1,
.template-product h1,
.product h1 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}
.product__description,
.product-single__description,
.product-description {
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
}
<h1 class="product__title">{{ product.title }}</h1>
<div class="product__description">
  {{ product.description | strip_html }}
</div>