.price-container {
  display: flex;
  align-items: center;
  margin-top: -8px; /* Adjust this value as needed */ 
  margin-bottom: -5px;
}

.discounted-price {

  font-size: 2.25rem; /* Adjust font size as needed */
  font-weight: bold;
  color: #00FF00; /* Your chosen blue-green color (RGB) */ 
}

.original-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #666666;
  text-decoration: line-through; /* Add '2px' after 'line-through' */
  margin-left: 0.3rem;
}
