.product-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-price .current-price {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 3.6rem;
  letter-spacing: 2px;
  color: var(--green-900);
}

.product-price .old-price {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 2px;
  color: var(--grey-700);
  text-decoration: line-through;
}