How to increase price font size in *only* product page

I am currently using this custom code on my dawn theme to be flexible with price font size but its ok for my home page and others but on the product page only i want another size for the price is it possible. Thanks in advance : )

.price-item.price-item--regular {
	font-size: 14px;
  font-weight: normal;
  color: #605E5C;
}

.price-item.price-item--sale {
	font-size: 14px;
  font-weight: normal;
  color: #605E5C;
}

Hi @NOT1 , kindly share your store URL.

Thanks!

Thanks

@NOT1 ,
You can change the code like this to increase font size in pdp

.price-item.price-item--regular {
	font-size: 14px;
  font-weight: normal;
  color: #605E5C;
}

.price-item.price-item--sale {
	font-size: 14px;
  font-weight: normal;
  color: #605E5C;
}
.product .price-item.price-item--regular{
  font-size: 16px /* Here is the font size of pdp */
}
.product .price-item.price-item--sale {
  font-size: 16px /* Here is the font size of pdp */
}

Hope it helps