How can I change the price number to bold and adjust the title font size?

In your component-price.css file, find .price–large

Then paste the following code instead the existing one:

.price--large {
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  font-weight: bold;
  letter-spacing: 0.13rem;
}

@media screen and (min-width: 750px) {
  .price--large {
    font-size: 1.8rem;
    font-weight: bold;
  }
}

Also of course you can play with the parameters as you wish

Good luck!

Please mark solved if this helped you :grinning_face: