/** Shopify CDN: Minification failed

Line 41:9 Expected identifier but found whitespace
Line 41:10 Unexpected "0"
Line 46:53 Expected identifier but found "."
Line 46:58 Expected "}" to go with "{"

**/
.product--no-media .rating-wrapper {
  text-align: center;
}

.rating {
  display: inline-block;
  margin: 0
}

.product .rating-star {
  --letter-spacing: 0.8;
  --font-size: 1.7;
}

.card-wrapper .rating-star {
  --letter-spacing: 0.7;
  --font-size: 1.4;
}

.rating-star {
  --color-rating-star: rgb(var(--color-foreground));
  --percent: calc(
    (
        var(--rating) / var(--rating-max) + var(--rating-decimal) * var(--font-size) /
          (var(--rating-max) * (var(--letter-spacing) + var(--font-size)))
      ) * 100%
  );
  letter-spacing: calc(var(--letter-spacing) * 1rem);
  font-size: calc(var(--font-size) * 1rem);
  line-height: 1;
  display: inline-block;
  font-family: Times;
  margin: 0 .rating-star{
  --color-rating-star: #FFA41C !important; /* Amazon gold */
}.rating-wrapper .rating,
.rating-wrapper .rating-star { display:none !important; }

.rating-wrapper::before { content:"★★★★★"; ... }